Skip to content

Commit 08e8f1f

Browse files
authored
Merge pull request #230 from BingAds/v13.0.26
v13.0.26
2 parents 2968e39 + 9074b8e commit 08e8f1f

129 files changed

Lines changed: 4926 additions & 1604 deletions

File tree

Some content is hidden

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

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.2</version>
19+
<version>13.0.26</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.2</version>
4+
<version>13.0.26</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 ArrayOfCampaignBidLandscape complex type.
14+
*
15+
* <p>The following schema fragment specifies the expected content contained within this class.
16+
*
17+
* <pre>{@code
18+
* <complexType name="ArrayOfCampaignBidLandscape">
19+
* <complexContent>
20+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21+
* <sequence>
22+
* <element name="CampaignBidLandscape" type="{https://bingads.microsoft.com/AdInsight/v13}CampaignBidLandscape" maxOccurs="unbounded" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "ArrayOfCampaignBidLandscape", propOrder = {
33+
"campaignBidLandscapes"
34+
})
35+
public class ArrayOfCampaignBidLandscape {
36+
37+
@XmlElement(name = "CampaignBidLandscape", nillable = true)
38+
protected List<CampaignBidLandscape> campaignBidLandscapes;
39+
public ArrayOfCampaignBidLandscape()
40+
{
41+
this.campaignBidLandscapes = new ArrayList<CampaignBidLandscape>();
42+
}
43+
@JsonCreator
44+
public ArrayOfCampaignBidLandscape(List<CampaignBidLandscape> campaignbidlandscapes)
45+
{
46+
this.campaignBidLandscapes = campaignbidlandscapes;
47+
}
48+
49+
/**
50+
* Gets the value of the campaignBidLandscapes 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 campaignBidLandscapes property.
57+
*
58+
* <p>
59+
* For example, to add a new item, do as follows:
60+
* <pre>
61+
* getCampaignBidLandscapes().add(newItem);
62+
* </pre>
63+
*
64+
*
65+
* <p>
66+
* Objects of the following type(s) are allowed in the list
67+
* {@link CampaignBidLandscape }
68+
*
69+
*
70+
* @return
71+
* The value of the campaignBidLandscapes property.
72+
*/
73+
public List<CampaignBidLandscape> getCampaignBidLandscapes() {
74+
if (campaignBidLandscapes == null) {
75+
campaignBidLandscapes = new ArrayList<>();
76+
}
77+
return this.campaignBidLandscapes;
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 ArrayOfCampaignBidLandscapePoint complex type.
14+
*
15+
* <p>The following schema fragment specifies the expected content contained within this class.
16+
*
17+
* <pre>{@code
18+
* <complexType name="ArrayOfCampaignBidLandscapePoint">
19+
* <complexContent>
20+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21+
* <sequence>
22+
* <element name="CampaignBidLandscapePoint" type="{https://bingads.microsoft.com/AdInsight/v13}CampaignBidLandscapePoint" maxOccurs="unbounded" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "ArrayOfCampaignBidLandscapePoint", propOrder = {
33+
"campaignBidLandscapePoints"
34+
})
35+
public class ArrayOfCampaignBidLandscapePoint {
36+
37+
@XmlElement(name = "CampaignBidLandscapePoint", nillable = true)
38+
protected List<CampaignBidLandscapePoint> campaignBidLandscapePoints;
39+
public ArrayOfCampaignBidLandscapePoint()
40+
{
41+
this.campaignBidLandscapePoints = new ArrayList<CampaignBidLandscapePoint>();
42+
}
43+
@JsonCreator
44+
public ArrayOfCampaignBidLandscapePoint(List<CampaignBidLandscapePoint> campaignbidlandscapepoints)
45+
{
46+
this.campaignBidLandscapePoints = campaignbidlandscapepoints;
47+
}
48+
49+
/**
50+
* Gets the value of the campaignBidLandscapePoints 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 campaignBidLandscapePoints property.
57+
*
58+
* <p>
59+
* For example, to add a new item, do as follows:
60+
* <pre>
61+
* getCampaignBidLandscapePoints().add(newItem);
62+
* </pre>
63+
*
64+
*
65+
* <p>
66+
* Objects of the following type(s) are allowed in the list
67+
* {@link CampaignBidLandscapePoint }
68+
*
69+
*
70+
* @return
71+
* The value of the campaignBidLandscapePoints property.
72+
*/
73+
public List<CampaignBidLandscapePoint> getCampaignBidLandscapePoints() {
74+
if (campaignBidLandscapePoints == null) {
75+
campaignBidLandscapePoints = new ArrayList<>();
76+
}
77+
return this.campaignBidLandscapePoints;
78+
}
79+
80+
}
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
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.XmlSchemaType;
10+
import jakarta.xml.bind.annotation.XmlType;import com.fasterxml.jackson.annotation.JsonCreator;
11+
12+
13+
/**
14+
* <p>Java class for ArrayOfDeviceEnum complex type.
15+
*
16+
* <p>The following schema fragment specifies the expected content contained within this class.
17+
*
18+
* <pre>{@code
19+
* <complexType name="ArrayOfDeviceEnum">
20+
* <complexContent>
21+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22+
* <sequence>
23+
* <element name="DeviceEnum" type="{https://bingads.microsoft.com/AdInsight/v13}DeviceEnum" maxOccurs="unbounded" minOccurs="0"/>
24+
* </sequence>
25+
* </restriction>
26+
* </complexContent>
27+
* </complexType>
28+
* }</pre>
29+
*
30+
*
31+
*/
32+
@XmlAccessorType(XmlAccessType.FIELD)
33+
@XmlType(name = "ArrayOfDeviceEnum", propOrder = {
34+
"deviceEna"
35+
})
36+
public class ArrayOfDeviceEnum {
37+
38+
@XmlElement(name = "DeviceEnum")
39+
@XmlSchemaType(name = "string")
40+
protected List<DeviceEnum> deviceEna;
41+
public ArrayOfDeviceEnum()
42+
{
43+
this.deviceEna = new ArrayList<DeviceEnum>();
44+
}
45+
@JsonCreator
46+
public ArrayOfDeviceEnum(List<DeviceEnum> deviceenums)
47+
{
48+
this.deviceEna = deviceenums;
49+
}
50+
51+
/**
52+
* Gets the value of the deviceEna property.
53+
*
54+
* <p>
55+
* This accessor method returns a reference to the live list,
56+
* not a snapshot. Therefore any modification you make to the
57+
* returned list will be present inside the Jakarta XML Binding object.
58+
* This is why there is not a {@code set} method for the deviceEna property.
59+
*
60+
* <p>
61+
* For example, to add a new item, do as follows:
62+
* <pre>
63+
* getDeviceEna().add(newItem);
64+
* </pre>
65+
*
66+
*
67+
* <p>
68+
* Objects of the following type(s) are allowed in the list
69+
* {@link DeviceEnum }
70+
*
71+
*
72+
* @return
73+
* The value of the deviceEna property.
74+
*/
75+
public List<DeviceEnum> getDeviceEna() {
76+
if (deviceEna == null) {
77+
deviceEna = new ArrayList<>();
78+
}
79+
return this.deviceEna;
80+
}
81+
82+
}

0 commit comments

Comments
 (0)