Skip to content

Commit 8c40de4

Browse files
authored
Merge pull request #220 from BingAds/v13.0.24.3
v13.0.24.3
2 parents f2e6bd5 + 5723859 commit 8c40de4

File tree

153 files changed

+7779
-280
lines changed

Some content is hidden

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

153 files changed

+7779
-280
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.24.2</version>
19+
<version>13.0.24.3</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.24.2</version>
4+
<version>13.0.24.3</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>

proxies/com/microsoft/bingads/v13/bulk/DownloadEntity.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,9 @@
202202
* <enumeration value="AccountPlacementExclusionList"/>
203203
* <enumeration value="AccountPlacementExclusionListItem"/>
204204
* <enumeration value="CampaignAccountPlacementExclusionListAssociation"/>
205+
* <enumeration value="AccountPlacementInclusionList"/>
206+
* <enumeration value="AccountPlacementInclusionListItem"/>
207+
* <enumeration value="CampaignAccountPlacementInclusionListAssociation"/>
205208
* </restriction>
206209
* </simpleType>
207210
* }</pre>
@@ -588,7 +591,13 @@ public enum DownloadEntity {
588591
@XmlEnumValue("AccountPlacementExclusionListItem")
589592
ACCOUNT_PLACEMENT_EXCLUSION_LIST_ITEM("AccountPlacementExclusionListItem"),
590593
@XmlEnumValue("CampaignAccountPlacementExclusionListAssociation")
591-
CAMPAIGN_ACCOUNT_PLACEMENT_EXCLUSION_LIST_ASSOCIATION("CampaignAccountPlacementExclusionListAssociation");
594+
CAMPAIGN_ACCOUNT_PLACEMENT_EXCLUSION_LIST_ASSOCIATION("CampaignAccountPlacementExclusionListAssociation"),
595+
@XmlEnumValue("AccountPlacementInclusionList")
596+
ACCOUNT_PLACEMENT_INCLUSION_LIST("AccountPlacementInclusionList"),
597+
@XmlEnumValue("AccountPlacementInclusionListItem")
598+
ACCOUNT_PLACEMENT_INCLUSION_LIST_ITEM("AccountPlacementInclusionListItem"),
599+
@XmlEnumValue("CampaignAccountPlacementInclusionListAssociation")
600+
CAMPAIGN_ACCOUNT_PLACEMENT_INCLUSION_LIST_ASSOCIATION("CampaignAccountPlacementInclusionListAssociation");
592601
private final String value;
593602

594603
DownloadEntity(String v) {
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
package com.microsoft.bingads.v13.campaignmanagement;
3+
4+
import jakarta.xml.bind.annotation.XmlEnum;
5+
import jakarta.xml.bind.annotation.XmlEnumValue;
6+
import jakarta.xml.bind.annotation.XmlType;
7+
8+
9+
/**
10+
* <p>Java class for AdRecommendationAdditionalField.
11+
*
12+
* <p>The following schema fragment specifies the expected content contained within this class.
13+
* <pre>{@code
14+
* <simpleType name="AdRecommendationAdditionalField">
15+
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
16+
* <enumeration value="ImageSuggestionMetadata"/>
17+
* <enumeration value="MediaRefineResults"/>
18+
* <enumeration value="PromptBrandWarning"/>
19+
* </restriction>
20+
* </simpleType>
21+
* }</pre>
22+
*
23+
*/
24+
@XmlType(name = "AdRecommendationAdditionalField")
25+
@XmlEnum
26+
public enum AdRecommendationAdditionalField {
27+
28+
@XmlEnumValue("ImageSuggestionMetadata")
29+
IMAGE_SUGGESTION_METADATA("ImageSuggestionMetadata"),
30+
@XmlEnumValue("MediaRefineResults")
31+
MEDIA_REFINE_RESULTS("MediaRefineResults"),
32+
@XmlEnumValue("PromptBrandWarning")
33+
PROMPT_BRAND_WARNING("PromptBrandWarning");
34+
private final String value;
35+
36+
AdRecommendationAdditionalField(String v) {
37+
value = v;
38+
}
39+
40+
public String value() {
41+
return value;
42+
}
43+
44+
public static AdRecommendationAdditionalField fromValue(String v) {
45+
for (AdRecommendationAdditionalField c: AdRecommendationAdditionalField.values()) {
46+
if (c.value.equals(v)) {
47+
return c;
48+
}
49+
}
50+
throw new IllegalArgumentException(v);
51+
}
52+
53+
}
Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
2+
package com.microsoft.bingads.v13.campaignmanagement;
3+
4+
import jakarta.xml.bind.annotation.XmlAccessType;
5+
import jakarta.xml.bind.annotation.XmlAccessorType;
6+
import jakarta.xml.bind.annotation.XmlElement;
7+
import jakarta.xml.bind.annotation.XmlType;
8+
9+
10+
/**
11+
* <p>Java class for AdRecommendationCustomizedProperty complex type.
12+
*
13+
* <p>The following schema fragment specifies the expected content contained within this class.
14+
*
15+
* <pre>{@code
16+
* <complexType name="AdRecommendationCustomizedProperty">
17+
* <complexContent>
18+
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19+
* <sequence>
20+
* <element name="AssetTypeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21+
* <element name="PropertyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22+
* <element name="PropertyValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23+
* </sequence>
24+
* </restriction>
25+
* </complexContent>
26+
* </complexType>
27+
* }</pre>
28+
*
29+
*
30+
*/
31+
@XmlAccessorType(XmlAccessType.FIELD)
32+
@XmlType(name = "AdRecommendationCustomizedProperty", propOrder = {
33+
"assetTypeName",
34+
"propertyName",
35+
"propertyValue"
36+
})
37+
public class AdRecommendationCustomizedProperty {
38+
39+
@XmlElement(name = "AssetTypeName", nillable = true)
40+
protected String assetTypeName;
41+
@XmlElement(name = "PropertyName", nillable = true)
42+
protected String propertyName;
43+
@XmlElement(name = "PropertyValue", nillable = true)
44+
protected String propertyValue;
45+
46+
/**
47+
* Gets the value of the assetTypeName property.
48+
*
49+
* @return
50+
* possible object is
51+
* {@link String }
52+
*
53+
*/
54+
public String getAssetTypeName() {
55+
return assetTypeName;
56+
}
57+
58+
/**
59+
* Sets the value of the assetTypeName property.
60+
*
61+
* @param value
62+
* allowed object is
63+
* {@link String }
64+
*
65+
*/
66+
public void setAssetTypeName(String value) {
67+
this.assetTypeName = value;
68+
}
69+
70+
/**
71+
* Gets the value of the propertyName property.
72+
*
73+
* @return
74+
* possible object is
75+
* {@link String }
76+
*
77+
*/
78+
public String getPropertyName() {
79+
return propertyName;
80+
}
81+
82+
/**
83+
* Sets the value of the propertyName property.
84+
*
85+
* @param value
86+
* allowed object is
87+
* {@link String }
88+
*
89+
*/
90+
public void setPropertyName(String value) {
91+
this.propertyName = value;
92+
}
93+
94+
/**
95+
* Gets the value of the propertyValue property.
96+
*
97+
* @return
98+
* possible object is
99+
* {@link String }
100+
*
101+
*/
102+
public String getPropertyValue() {
103+
return propertyValue;
104+
}
105+
106+
/**
107+
* Sets the value of the propertyValue property.
108+
*
109+
* @param value
110+
* allowed object is
111+
* {@link String }
112+
*
113+
*/
114+
public void setPropertyValue(String value) {
115+
this.propertyValue = value;
116+
}
117+
118+
}

0 commit comments

Comments
 (0)