Skip to content

Commit

Permalink
Merge pull request #176 from BingAds/v13.0.19
Browse files Browse the repository at this point in the history
v13.0.19
  • Loading branch information
xinyuwen2 committed Mar 25, 2024
2 parents 7a9739d + 33509f8 commit 3b7fb5a
Show file tree
Hide file tree
Showing 461 changed files with 19,288 additions and 682 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Bing Ads Java SDK includes and depends on the microsoft.bingads Maven artifa
<dependency>
<groupId>com.microsoft.bingads</groupId>
<artifactId>microsoft.bingads</artifactId>
<version>13.0.18</version>
<version>13.0.19</version>
</dependency>
```
If you are not using a Maven project, you must include the correct version of each dependency. You can review the complete list of Bing Ads Java SDK dependencies at the [Maven Repository](http://mvnrepository.com/artifact/com.microsoft.bingads/microsoft.bingads/).
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.bingads</groupId>
<version>13.0.18</version>
<version>13.0.19</version>
<name>Bing Ads Java SDK</name>
<description>The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.</description>
<url>https://github.com/BingAds/BingAds-Java-SDK</url>
Expand Down
68 changes: 68 additions & 0 deletions proxies/com/microsoft/bingads/v13/adinsight/AgeEnum.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@

package com.microsoft.bingads.v13.adinsight;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;


/**
* <p>Java class for AgeEnum.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <simpleType name="AgeEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="Unknown"/>
* <enumeration value="ZeroToTwelve"/>
* <enumeration value="ThirteenToSevenTeen"/>
* <enumeration value="EighteenToTwentyFour"/>
* <enumeration value="TwentyFiveToThirtyFour"/>
* <enumeration value="ThirtyFiveToFourtyNine"/>
* <enumeration value="FiftyToSixtyFour"/>
* <enumeration value="SixtyFiveAndAbove"/>
* </restriction>
* </simpleType>
* }</pre>
*
*/
@XmlType(name = "AgeEnum")
@XmlEnum
public enum AgeEnum {

@XmlEnumValue("Unknown")
UNKNOWN("Unknown"),
@XmlEnumValue("ZeroToTwelve")
ZERO_TO_TWELVE("ZeroToTwelve"),
@XmlEnumValue("ThirteenToSevenTeen")
THIRTEEN_TO_SEVEN_TEEN("ThirteenToSevenTeen"),
@XmlEnumValue("EighteenToTwentyFour")
EIGHTEEN_TO_TWENTY_FOUR("EighteenToTwentyFour"),
@XmlEnumValue("TwentyFiveToThirtyFour")
TWENTY_FIVE_TO_THIRTY_FOUR("TwentyFiveToThirtyFour"),
@XmlEnumValue("ThirtyFiveToFourtyNine")
THIRTY_FIVE_TO_FOURTY_NINE("ThirtyFiveToFourtyNine"),
@XmlEnumValue("FiftyToSixtyFour")
FIFTY_TO_SIXTY_FOUR("FiftyToSixtyFour"),
@XmlEnumValue("SixtyFiveAndAbove")
SIXTY_FIVE_AND_ABOVE("SixtyFiveAndAbove");
private final String value;

AgeEnum(String v) {
value = v;
}

public String value() {
return value;
}

public static AgeEnum fromValue(String v) {
for (AgeEnum c: AgeEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@

package com.microsoft.bingads.v13.adinsight;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
* <p>Java class for ApplyRecommendationEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ApplyRecommendationEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="RecommendationId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="RecommendationType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApplyRecommendationEntity", propOrder = {
"recommendationId",
"recommendationType"
})
public class ApplyRecommendationEntity {

@XmlElement(name = "RecommendationId", nillable = true)
protected String recommendationId;
@XmlElement(name = "RecommendationType", nillable = true)
protected String recommendationType;

/**
* Gets the value of the recommendationId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRecommendationId() {
return recommendationId;
}

/**
* Sets the value of the recommendationId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRecommendationId(String value) {
this.recommendationId = value;
}

/**
* Gets the value of the recommendationType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRecommendationType() {
return recommendationType;
}

/**
* Sets the value of the recommendationType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRecommendationType(String value) {
this.recommendationType = value;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@

package com.microsoft.bingads.v13.adinsight;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Entities" type="{https://bingads.microsoft.com/AdInsight/v13}ArrayOfApplyRecommendationEntity" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"entities"
})
@XmlRootElement(name = "ApplyRecommendationsRequest")
public class ApplyRecommendationsRequest {

@XmlElement(name = "Entities", nillable = true)
protected ArrayOfApplyRecommendationEntity entities;

/**
* Gets the value of the entities property.
*
* @return
* possible object is
* {@link ArrayOfApplyRecommendationEntity }
*
*/
public ArrayOfApplyRecommendationEntity getEntities() {
return entities;
}

/**
* Sets the value of the entities property.
*
* @param value
* allowed object is
* {@link ArrayOfApplyRecommendationEntity }
*
*/
public void setEntities(ArrayOfApplyRecommendationEntity value) {
this.entities = value;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@

package com.microsoft.bingads.v13.adinsight;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PartialErrors" type="{https://bingads.microsoft.com/AdInsight/v13}ArrayOfBatchError" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"partialErrors"
})
@XmlRootElement(name = "ApplyRecommendationsResponse")
public class ApplyRecommendationsResponse {

@XmlElement(name = "PartialErrors", nillable = true)
protected ArrayOfBatchError partialErrors;

/**
* Gets the value of the partialErrors property.
*
* @return
* possible object is
* {@link ArrayOfBatchError }
*
*/
public ArrayOfBatchError getPartialErrors() {
return partialErrors;
}

/**
* Sets the value of the partialErrors property.
*
* @param value
* allowed object is
* {@link ArrayOfBatchError }
*
*/
public void setPartialErrors(ArrayOfBatchError value) {
this.partialErrors = value;
}

}
73 changes: 73 additions & 0 deletions proxies/com/microsoft/bingads/v13/adinsight/ArrayOfAgeEnum.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@

package com.microsoft.bingads.v13.adinsight;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
* <p>Java class for ArrayOfAgeEnum complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOfAgeEnum">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AgeEnum" type="{https://bingads.microsoft.com/AdInsight/v13}AgeEnum" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfAgeEnum", propOrder = {
"ageEna"
})
public class ArrayOfAgeEnum {

@XmlElement(name = "AgeEnum")
@XmlSchemaType(name = "string")
protected List<AgeEnum> ageEna;

/**
* Gets the value of the ageEna property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the ageEna property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAgeEna().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link AgeEnum }
*
*
* @return
* The value of the ageEna property.
*/
public List<AgeEnum> getAgeEna() {
if (ageEna == null) {
ageEna = new ArrayList<>();
}
return this.ageEna;
}

}
Loading

0 comments on commit 3b7fb5a

Please sign in to comment.