Skip to content

Commit 2968e39

Browse files
authored
Merge pull request #228 from BingAds/v13.0.25.2
v13.0.25.2
2 parents 285a83e + 2ab599d commit 2968e39

File tree

99 files changed

+7415
-513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+7415
-513
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The Bing Ads Java SDK includes and depends on the microsoft.bingads Maven artifa
1616
<dependency>
1717
<groupId>com.microsoft.bingads</groupId>
1818
<artifactId>microsoft.bingads</artifactId>
19-
<version>13.0.25.1</version>
19+
<version>13.0.25.2</version>
2020
</dependency>
2121
```
2222
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/).

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.microsoft.bingads</groupId>
4-
<version>13.0.25.1</version>
4+
<version>13.0.25.2</version>
55
<name>Bing Ads Java SDK</name>
66
<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>
77
<url>https://github.com/BingAds/BingAds-Java-SDK</url>
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
package com.microsoft.bingads.v13.adinsight;
3+
4+
import java.util.ArrayList;
5+
import java.util.List;
6+
import jakarta.xml.bind.annotation.XmlAccessType;
7+
import jakarta.xml.bind.annotation.XmlAccessorType;
8+
import jakarta.xml.bind.annotation.XmlElement;
9+
import jakarta.xml.bind.annotation.XmlType;
10+
import com.fasterxml.jackson.annotation.JsonCreator;
11+
12+
/**
13+
* <p>Java class for ArrayOfDecimalRoundedByType complex type.
14+
*
15+
* <p>The following schema fragment specifies the expected content contained within this class.
16+
*
17+
* <pre>{@code
18+
* <complexType name="ArrayOfDecimalRoundedByType">
19+
* <complexContent>
20+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21+
* <sequence>
22+
* <element name="DecimalRoundedByType" type="{https://bingads.microsoft.com/AdInsight/v13}DecimalRoundedByType" maxOccurs="unbounded" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "ArrayOfDecimalRoundedByType", propOrder = {
33+
"decimalRoundedByTypes"
34+
})
35+
public class ArrayOfDecimalRoundedByType {
36+
37+
@XmlElement(name = "DecimalRoundedByType", nillable = true)
38+
protected List<DecimalRoundedByType> decimalRoundedByTypes;
39+
public ArrayOfDecimalRoundedByType()
40+
{
41+
this.decimalRoundedByTypes = new ArrayList<DecimalRoundedByType>();
42+
}
43+
@JsonCreator
44+
public ArrayOfDecimalRoundedByType(List<DecimalRoundedByType> decimalroundedbytypes)
45+
{
46+
this.decimalRoundedByTypes = decimalroundedbytypes;
47+
}
48+
49+
/**
50+
* Gets the value of the decimalRoundedByTypes property.
51+
*
52+
* <p>
53+
* This accessor method returns a reference to the live list,
54+
* not a snapshot. Therefore any modification you make to the
55+
* returned list will be present inside the Jakarta XML Binding object.
56+
* This is why there is not a {@code set} method for the decimalRoundedByTypes property.
57+
*
58+
* <p>
59+
* For example, to add a new item, do as follows:
60+
* <pre>
61+
* getDecimalRoundedByTypes().add(newItem);
62+
* </pre>
63+
*
64+
*
65+
* <p>
66+
* Objects of the following type(s) are allowed in the list
67+
* {@link DecimalRoundedByType }
68+
*
69+
*
70+
* @return
71+
* The value of the decimalRoundedByTypes property.
72+
*/
73+
public List<DecimalRoundedByType> getDecimalRoundedByTypes() {
74+
if (decimalRoundedByTypes == null) {
75+
decimalRoundedByTypes = new ArrayList<>();
76+
}
77+
return this.decimalRoundedByTypes;
78+
}
79+
80+
}
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
package com.microsoft.bingads.v13.adinsight;
3+
4+
import java.util.ArrayList;
5+
import java.util.List;
6+
import jakarta.xml.bind.annotation.XmlAccessType;
7+
import jakarta.xml.bind.annotation.XmlAccessorType;
8+
import jakarta.xml.bind.annotation.XmlElement;
9+
import jakarta.xml.bind.annotation.XmlType;
10+
import com.fasterxml.jackson.annotation.JsonCreator;
11+
12+
/**
13+
* <p>Java class for ArrayOfDecimalRoundedRangeResultByType complex type.
14+
*
15+
* <p>The following schema fragment specifies the expected content contained within this class.
16+
*
17+
* <pre>{@code
18+
* <complexType name="ArrayOfDecimalRoundedRangeResultByType">
19+
* <complexContent>
20+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21+
* <sequence>
22+
* <element name="DecimalRoundedRangeResultByType" type="{https://bingads.microsoft.com/AdInsight/v13}DecimalRoundedRangeResultByType" maxOccurs="unbounded" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "ArrayOfDecimalRoundedRangeResultByType", propOrder = {
33+
"decimalRoundedRangeResultByTypes"
34+
})
35+
public class ArrayOfDecimalRoundedRangeResultByType {
36+
37+
@XmlElement(name = "DecimalRoundedRangeResultByType", nillable = true)
38+
protected List<DecimalRoundedRangeResultByType> decimalRoundedRangeResultByTypes;
39+
public ArrayOfDecimalRoundedRangeResultByType()
40+
{
41+
this.decimalRoundedRangeResultByTypes = new ArrayList<DecimalRoundedRangeResultByType>();
42+
}
43+
@JsonCreator
44+
public ArrayOfDecimalRoundedRangeResultByType(List<DecimalRoundedRangeResultByType> decimalroundedrangeresultbytypes)
45+
{
46+
this.decimalRoundedRangeResultByTypes = decimalroundedrangeresultbytypes;
47+
}
48+
49+
/**
50+
* Gets the value of the decimalRoundedRangeResultByTypes property.
51+
*
52+
* <p>
53+
* This accessor method returns a reference to the live list,
54+
* not a snapshot. Therefore any modification you make to the
55+
* returned list will be present inside the Jakarta XML Binding object.
56+
* This is why there is not a {@code set} method for the decimalRoundedRangeResultByTypes property.
57+
*
58+
* <p>
59+
* For example, to add a new item, do as follows:
60+
* <pre>
61+
* getDecimalRoundedRangeResultByTypes().add(newItem);
62+
* </pre>
63+
*
64+
*
65+
* <p>
66+
* Objects of the following type(s) are allowed in the list
67+
* {@link DecimalRoundedRangeResultByType }
68+
*
69+
*
70+
* @return
71+
* The value of the decimalRoundedRangeResultByTypes property.
72+
*/
73+
public List<DecimalRoundedRangeResultByType> getDecimalRoundedRangeResultByTypes() {
74+
if (decimalRoundedRangeResultByTypes == null) {
75+
decimalRoundedRangeResultByTypes = new ArrayList<>();
76+
}
77+
return this.decimalRoundedRangeResultByTypes;
78+
}
79+
80+
}
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
package com.microsoft.bingads.v13.adinsight;
3+
4+
import java.util.ArrayList;
5+
import java.util.List;
6+
import jakarta.xml.bind.annotation.XmlAccessType;
7+
import jakarta.xml.bind.annotation.XmlAccessorType;
8+
import jakarta.xml.bind.annotation.XmlElement;
9+
import jakarta.xml.bind.annotation.XmlType;
10+
import com.fasterxml.jackson.annotation.JsonCreator;
11+
12+
/**
13+
* <p>Java class for ArrayOfLocationInfo complex type.
14+
*
15+
* <p>The following schema fragment specifies the expected content contained within this class.
16+
*
17+
* <pre>{@code
18+
* <complexType name="ArrayOfLocationInfo">
19+
* <complexContent>
20+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21+
* <sequence>
22+
* <element name="LocationInfo" type="{https://bingads.microsoft.com/AdInsight/v13}LocationInfo" maxOccurs="unbounded" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "ArrayOfLocationInfo", propOrder = {
33+
"locationInfos"
34+
})
35+
public class ArrayOfLocationInfo {
36+
37+
@XmlElement(name = "LocationInfo", nillable = true)
38+
protected List<LocationInfo> locationInfos;
39+
public ArrayOfLocationInfo()
40+
{
41+
this.locationInfos = new ArrayList<LocationInfo>();
42+
}
43+
@JsonCreator
44+
public ArrayOfLocationInfo(List<LocationInfo> locationinfos)
45+
{
46+
this.locationInfos = locationinfos;
47+
}
48+
49+
/**
50+
* Gets the value of the locationInfos property.
51+
*
52+
* <p>
53+
* This accessor method returns a reference to the live list,
54+
* not a snapshot. Therefore any modification you make to the
55+
* returned list will be present inside the Jakarta XML Binding object.
56+
* This is why there is not a {@code set} method for the locationInfos property.
57+
*
58+
* <p>
59+
* For example, to add a new item, do as follows:
60+
* <pre>
61+
* getLocationInfos().add(newItem);
62+
* </pre>
63+
*
64+
*
65+
* <p>
66+
* Objects of the following type(s) are allowed in the list
67+
* {@link LocationInfo }
68+
*
69+
*
70+
* @return
71+
* The value of the locationInfos property.
72+
*/
73+
public List<LocationInfo> getLocationInfos() {
74+
if (locationInfos == null) {
75+
locationInfos = new ArrayList<>();
76+
}
77+
return this.locationInfos;
78+
}
79+
80+
}
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
package com.microsoft.bingads.v13.adinsight;
3+
4+
import java.util.ArrayList;
5+
import java.util.List;
6+
import jakarta.xml.bind.annotation.XmlAccessType;
7+
import jakarta.xml.bind.annotation.XmlAccessorType;
8+
import jakarta.xml.bind.annotation.XmlElement;
9+
import jakarta.xml.bind.annotation.XmlType;
10+
import com.fasterxml.jackson.annotation.JsonCreator;
11+
12+
/**
13+
* <p>Java class for ArrayOfRangeResultByTypeOfdouble complex type.
14+
*
15+
* <p>The following schema fragment specifies the expected content contained within this class.
16+
*
17+
* <pre>{@code
18+
* <complexType name="ArrayOfRangeResultByTypeOfdouble">
19+
* <complexContent>
20+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21+
* <sequence>
22+
* <element name="RangeResultByTypeOfdouble" type="{https://bingads.microsoft.com/AdInsight/v13}RangeResultByTypeOfdouble" maxOccurs="unbounded" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "ArrayOfRangeResultByTypeOfdouble", propOrder = {
33+
"rangeResultByTypeOfdoubles"
34+
})
35+
public class ArrayOfRangeResultByTypeOfdouble {
36+
37+
@XmlElement(name = "RangeResultByTypeOfdouble", nillable = true)
38+
protected List<RangeResultByTypeOfdouble> rangeResultByTypeOfdoubles;
39+
public ArrayOfRangeResultByTypeOfdouble()
40+
{
41+
this.rangeResultByTypeOfdoubles = new ArrayList<RangeResultByTypeOfdouble>();
42+
}
43+
@JsonCreator
44+
public ArrayOfRangeResultByTypeOfdouble(List<RangeResultByTypeOfdouble> rangeresultbytypeofdoubles)
45+
{
46+
this.rangeResultByTypeOfdoubles = rangeresultbytypeofdoubles;
47+
}
48+
49+
/**
50+
* Gets the value of the rangeResultByTypeOfdoubles property.
51+
*
52+
* <p>
53+
* This accessor method returns a reference to the live list,
54+
* not a snapshot. Therefore any modification you make to the
55+
* returned list will be present inside the Jakarta XML Binding object.
56+
* This is why there is not a {@code set} method for the rangeResultByTypeOfdoubles property.
57+
*
58+
* <p>
59+
* For example, to add a new item, do as follows:
60+
* <pre>
61+
* getRangeResultByTypeOfdoubles().add(newItem);
62+
* </pre>
63+
*
64+
*
65+
* <p>
66+
* Objects of the following type(s) are allowed in the list
67+
* {@link RangeResultByTypeOfdouble }
68+
*
69+
*
70+
* @return
71+
* The value of the rangeResultByTypeOfdoubles property.
72+
*/
73+
public List<RangeResultByTypeOfdouble> getRangeResultByTypeOfdoubles() {
74+
if (rangeResultByTypeOfdoubles == null) {
75+
rangeResultByTypeOfdoubles = new ArrayList<>();
76+
}
77+
return this.rangeResultByTypeOfdoubles;
78+
}
79+
80+
}

0 commit comments

Comments
 (0)