assetgroupsearchthemes)
+ {
+ this.assetGroupSearchThemes = assetgroupsearchthemes;
+ }
+
+ /**
+ * Gets the value of the assetGroupSearchThemes property.
+ *
+ *
+ * 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 assetGroupSearchThemes property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getAssetGroupSearchThemes().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link AssetGroupSearchTheme }
+ *
+ *
+ * @return
+ * The value of the assetGroupSearchThemes property.
+ */
+ public List getAssetGroupSearchThemes() {
+ if (assetGroupSearchThemes == null) {
+ assetGroupSearchThemes = new ArrayList<>();
+ }
+ return this.assetGroupSearchThemes;
+ }
+
+}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroup.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroup.java
index 299b9f217b..da68b7b0a9 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroup.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroup.java
@@ -18,6 +18,7 @@
*
*
*
+ *
*
*
*
@@ -45,6 +46,7 @@
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AssetGroup", propOrder = {
+ "assetGroupSearchThemes",
"businessName",
"callToAction",
"descriptions",
@@ -65,6 +67,8 @@
})
public class AssetGroup {
+ @XmlElement(name = "AssetGroupSearchThemes", nillable = true)
+ protected ArrayOfAssetGroupSearchTheme assetGroupSearchThemes;
@XmlElement(name = "BusinessName", nillable = true)
protected String businessName;
@XmlElement(name = "CallToAction", nillable = true)
@@ -103,6 +107,30 @@ public class AssetGroup {
@XmlSchemaType(name = "string")
protected AssetGroupStatus status;
+ /**
+ * Gets the value of the assetGroupSearchThemes property.
+ *
+ * @return
+ * possible object is
+ * {@link ArrayOfAssetGroupSearchTheme }
+ *
+ */
+ public ArrayOfAssetGroupSearchTheme getAssetGroupSearchThemes() {
+ return assetGroupSearchThemes;
+ }
+
+ /**
+ * Sets the value of the assetGroupSearchThemes property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ArrayOfAssetGroupSearchTheme }
+ *
+ */
+ public void setAssetGroupSearchThemes(ArrayOfAssetGroupSearchTheme value) {
+ this.assetGroupSearchThemes = value;
+ }
+
/**
* Gets the value of the businessName property.
*
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupAdditionalField.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupAdditionalField.java
new file mode 100644
index 0000000000..cb1dd94c5b
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupAdditionalField.java
@@ -0,0 +1,28 @@
+package com.microsoft.bingads.v13.campaignmanagement;
+
+/**
+ * Enum class for AssetGroupAdditionalField.
+ */
+public enum AssetGroupAdditionalField {
+
+ ASSET_GROUP_SEARCH_THEMES("AssetGroupSearchThemes");
+
+ private final String value;
+
+ AssetGroupAdditionalField(String v) {
+ value = v;
+ }
+
+ public String value() {
+ return value;
+ }
+
+ public static AssetGroupAdditionalField fromValue(String v) {
+ for (AssetGroupAdditionalField c : AssetGroupAdditionalField.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v);
+ }
+}
\ No newline at end of file
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupAdditionalFieldConverter.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupAdditionalFieldConverter.java
new file mode 100644
index 0000000000..312a9c38ae
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupAdditionalFieldConverter.java
@@ -0,0 +1,34 @@
+package com.microsoft.bingads.v13.campaignmanagement;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+/**
+ * Reserved for internal use.
+ */
+public class AssetGroupAdditionalFieldConverter {
+
+ public static Collection convertToList(String enums) {
+ String[] values = enums.split(" ");
+
+ Collection result = new ArrayList();
+
+ for (String value : values) {
+ result.add(AssetGroupAdditionalField.fromValue(value));
+ }
+
+ return result;
+ }
+
+ public static String convertToString(Collection enums) {
+ String result = "";
+
+ for (AssetGroupAdditionalField entity : enums) {
+ result += (entity.value() + " ");
+ }
+
+ result = result.substring(0, result.length() - 1);
+
+ return result;
+ }
+}
\ No newline at end of file
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupSearchTheme.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupSearchTheme.java
new file mode 100644
index 0000000000..912ac6c3e0
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AssetGroupSearchTheme.java
@@ -0,0 +1,90 @@
+
+package com.microsoft.bingads.v13.campaignmanagement;
+
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlType;
+
+
+/**
+ * Java class for AssetGroupSearchTheme complex type.
+ *
+ *
The following schema fragment specifies the expected content contained within this class.
+ *
+ *
{@code
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ * }
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "AssetGroupSearchTheme", propOrder = {
+ "id",
+ "searchTheme"
+})
+public class AssetGroupSearchTheme {
+
+ @XmlElement(name = "Id", nillable = true)
+ protected Long id;
+ @XmlElement(name = "SearchTheme", nillable = true)
+ protected String searchTheme;
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getId() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setId(Long value) {
+ this.id = value;
+ }
+
+ /**
+ * Gets the value of the searchTheme property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSearchTheme() {
+ return searchTheme;
+ }
+
+ /**
+ * Sets the value of the searchTheme property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSearchTheme(String value) {
+ this.searchTheme = value;
+ }
+
+}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/Audience.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/Audience.java
index 69b7ac11db..eb4085d426 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/Audience.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/Audience.java
@@ -63,7 +63,8 @@
ProductAudience.class,
SimilarRemarketingList.class,
CombinedList.class,
- CustomerList.class
+ CustomerList.class,
+ ImpressionBasedRemarketingList.class
})
public class Audience {
@@ -91,7 +92,7 @@ public class Audience {
@XmlElement(name = "SupportedCampaignTypes", nillable = true)
protected ArrayOfstring supportedCampaignTypes;
@XmlElement(name = "Type", type = String.class)
- @XmlJavaTypeAdapter(Adapter12 .class)
+ @XmlJavaTypeAdapter(Adapter14 .class)
protected Collection type;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceAdditionalField.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceAdditionalField.java
index fc1f5999e2..0d92695db4 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceAdditionalField.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceAdditionalField.java
@@ -6,7 +6,8 @@
public enum AudienceAdditionalField {
NORMAL_FORM("NormalForm"),
- NUMBER_RULE_ITEM("NumberRuleItem");
+ NUMBER_RULE_ITEM("NumberRuleItem"),
+ IMPREESION_BASED_REMARKETING_LIST("ImpreesionBasedRemarketingList");
private final String value;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceCriterion.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceCriterion.java
index 3899108fef..0158376708 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceCriterion.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceCriterion.java
@@ -44,7 +44,7 @@ public AudienceCriterion() {
@XmlElement(name = "AudienceId", nillable = true)
protected Long audienceId;
@XmlElement(name = "AudienceType", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter12 .class)
+ @XmlJavaTypeAdapter(Adapter14 .class)
protected Collection audienceType;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceInfo.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceInfo.java
index 90e7829f73..8667675120 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceInfo.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceInfo.java
@@ -39,7 +39,7 @@ public class AudienceInfo {
@XmlElement(name = "Id", nillable = true)
protected Long id;
@XmlElement(name = "Type", type = String.class)
- @XmlJavaTypeAdapter(Adapter12 .class)
+ @XmlJavaTypeAdapter(Adapter14 .class)
protected Collection type;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceType.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceType.java
index 3b5d9583df..32304f118e 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceType.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/AudienceType.java
@@ -11,7 +11,8 @@ public enum AudienceType {
PRODUCT("Product"),
SIMILAR_REMARKETING_LIST("SimilarRemarketingList"),
COMBINED_LIST("CombinedList"),
- CUSTOMER_LIST("CustomerList");
+ CUSTOMER_LIST("CustomerList"),
+ IMPRESSION_BASED_REMARKETING_LIST("ImpressionBasedRemarketingList");
private final String value;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/BidStrategy.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/BidStrategy.java
index 736b085dee..da532b48b5 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/BidStrategy.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/BidStrategy.java
@@ -43,7 +43,7 @@
public class BidStrategy {
@XmlElement(name = "AssociatedCampaignType", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter3 .class)
+ @XmlJavaTypeAdapter(Adapter4 .class)
protected Collection associatedCampaignType;
@XmlElement(name = "AssociationCount", nillable = true)
protected Integer associationCount;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/Campaign.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/Campaign.java
index eed560033a..c026155794 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/Campaign.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/Campaign.java
@@ -116,7 +116,7 @@ public class Campaign {
@XmlElement(name = "UrlCustomParameters", nillable = true)
protected CustomParameters urlCustomParameters;
@XmlElement(name = "CampaignType", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter3 .class)
+ @XmlJavaTypeAdapter(Adapter4 .class)
protected Collection campaignType;
@XmlElement(name = "Settings", nillable = true)
protected ArrayOfSetting settings;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignAdditionalField.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignAdditionalField.java
index fd0213f9aa..06a066be87 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignAdditionalField.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignAdditionalField.java
@@ -25,7 +25,10 @@ public enum CampaignAdditionalField {
CALL_TO_ACTION_SETTING("CallToActionSetting"),
PAGE_FEED_IN_PERFORMANCE_MAX_SETTINGS("PageFeedInPerformanceMaxSettings"),
DEAL_IDS("DealIds"),
- AUTO_GENERATED_TEXT_AND_IMAGE_OPT_OUT_IN_PERFORMANCE_MAX_SETTINGS("AutoGeneratedTextAndImageOptOutInPerformanceMaxSettings");
+ AUTO_GENERATED_TEXT_AND_IMAGE_OPT_OUT_IN_PERFORMANCE_MAX_SETTINGS("AutoGeneratedTextAndImageOptOutInPerformanceMaxSettings"),
+ COST_PER_SALE_OPT_OUT_IN_PERFORMANCE_MAX_SETTINGS("CostPerSaleOptOutInPerformanceMaxSettings"),
+ VANITY_PHARMA_SETTING("VanityPharmaSetting"),
+ MANUAL_CPI("ManualCpi");
private final String value;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignCriterionType.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignCriterionType.java
index fbec5b5a10..41b413d105 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignCriterionType.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignCriterionType.java
@@ -26,7 +26,8 @@ public enum CampaignCriterionType {
SIMILAR_REMARKETING_LIST("SimilarRemarketingList"),
STORE("Store"),
COMBINED_LIST("CombinedList"),
- CUSTOMER_LIST("CustomerList");
+ CUSTOMER_LIST("CustomerList"),
+ IMPRESSION_BASED_REMARKETING_LIST("ImpressionBasedRemarketingList");
private final String value;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignType.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignType.java
index d163338844..f9e06fbeb2 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignType.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/CampaignType.java
@@ -10,7 +10,8 @@ public enum CampaignType {
DYNAMIC_SEARCH_ADS("DynamicSearchAds"),
AUDIENCE("Audience"),
HOTEL("Hotel"),
- PERFORMANCE_MAX("PerformanceMax");
+ PERFORMANCE_MAX("PerformanceMax"),
+ APP("App");
private final String value;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/ConversionGoal.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/ConversionGoal.java
index c0ffa789df..c2c8ffecac 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/ConversionGoal.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/ConversionGoal.java
@@ -106,7 +106,7 @@ public class ConversionGoal {
@XmlSchemaType(name = "string")
protected ConversionGoalTrackingStatus trackingStatus;
@XmlElement(name = "Type", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter18 .class)
+ @XmlJavaTypeAdapter(Adapter21 .class)
protected Collection type;
@XmlElement(name = "ViewThroughConversionWindowInMinutes", nillable = true)
protected Integer viewThroughConversionWindowInMinutes;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/DataExclusion.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/DataExclusion.java
index 44b5badae0..ed6ed74ee6 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/DataExclusion.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/DataExclusion.java
@@ -53,13 +53,13 @@ public class DataExclusion {
@XmlElement(name = "CampaignAssociations", nillable = true)
protected ArrayOfCampaignAssociation campaignAssociations;
@XmlElement(name = "CampaignTypeFilter", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter3 .class)
+ @XmlJavaTypeAdapter(Adapter4 .class)
protected Collection campaignTypeFilter;
@XmlElement(name = "Description", nillable = true)
protected String description;
- @XmlElement(name = "DeviceTypeFilter", nillable = true)
- @XmlSchemaType(name = "string")
- protected DeviceType deviceTypeFilter;
+ @XmlElement(name = "DeviceTypeFilter", type = String.class, nillable = true)
+ @XmlJavaTypeAdapter(Adapter24 .class)
+ protected Collection deviceTypeFilter;
@XmlElement(name = "EndDate", type = String.class, nillable = true)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
@@ -150,10 +150,10 @@ public void setDescription(String value) {
*
* @return
* possible object is
- * {@link DeviceType }
+ * {@link String }
*
*/
- public DeviceType getDeviceTypeFilter() {
+ public Collection getDeviceTypeFilter() {
return deviceTypeFilter;
}
@@ -162,10 +162,10 @@ public DeviceType getDeviceTypeFilter() {
*
* @param value
* allowed object is
- * {@link DeviceType }
+ * {@link String }
*
*/
- public void setDeviceTypeFilter(DeviceType value) {
+ public void setDeviceTypeFilter(Collection value) {
this.deviceTypeFilter = value;
}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteAdGroupCriterionsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteAdGroupCriterionsRequest.java
index 250f488c51..0278406016 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteAdGroupCriterionsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteAdGroupCriterionsRequest.java
@@ -45,7 +45,7 @@ public class DeleteAdGroupCriterionsRequest {
@XmlElement(name = "AdGroupId")
protected Long adGroupId;
@XmlElement(name = "CriterionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter10 .class)
+ @XmlJavaTypeAdapter(Adapter12 .class)
protected Collection criterionType;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteCampaignCriterionsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteCampaignCriterionsRequest.java
index e6da366393..5283af1f4d 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteCampaignCriterionsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeleteCampaignCriterionsRequest.java
@@ -45,7 +45,7 @@ public class DeleteCampaignCriterionsRequest {
@XmlElement(name = "CampaignId")
protected Long campaignId;
@XmlElement(name = "CriterionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter15 .class)
+ @XmlJavaTypeAdapter(Adapter17 .class)
protected Collection criterionType;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceType.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceType.java
index ef53aabbfe..36e4939794 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceType.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceType.java
@@ -1,42 +1,16 @@
-
package com.microsoft.bingads.v13.campaignmanagement;
-import jakarta.xml.bind.annotation.XmlEnum;
-import jakarta.xml.bind.annotation.XmlEnumValue;
-import jakarta.xml.bind.annotation.XmlType;
-
-
/**
- * Java class for DeviceType.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
{@code
- *
- *
- *
- *
- *
- *
- *
- *
- *
- * }
- *
+ * Enum class for DeviceType.
*/
-@XmlType(name = "DeviceType")
-@XmlEnum
public enum DeviceType {
- @XmlEnumValue("None")
NONE("None"),
- @XmlEnumValue("Computers")
COMPUTERS("Computers"),
- @XmlEnumValue("Smartphones")
SMARTPHONES("Smartphones"),
- @XmlEnumValue("Tablets")
TABLETS("Tablets"),
- @XmlEnumValue("All")
ALL("All");
+
private final String value;
DeviceType(String v) {
@@ -48,12 +22,11 @@ public String value() {
}
public static DeviceType fromValue(String v) {
- for (DeviceType c: DeviceType.values()) {
+ for (DeviceType c : DeviceType.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
-
-}
+}
\ No newline at end of file
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceTypeConverter.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceTypeConverter.java
new file mode 100644
index 0000000000..5e13a84530
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/DeviceTypeConverter.java
@@ -0,0 +1,34 @@
+package com.microsoft.bingads.v13.campaignmanagement;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+/**
+ * Reserved for internal use.
+ */
+public class DeviceTypeConverter {
+
+ public static Collection convertToList(String enums) {
+ String[] values = enums.split(" ");
+
+ Collection result = new ArrayList();
+
+ for (String value : values) {
+ result.add(DeviceType.fromValue(value));
+ }
+
+ return result;
+ }
+
+ public static String convertToString(Collection enums) {
+ String result = "";
+
+ for (DeviceType entity : enums) {
+ result += (entity.value() + " ");
+ }
+
+ result = result.substring(0, result.length() - 1);
+
+ return result;
+ }
+}
\ No newline at end of file
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionIdsByAccountIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionIdsByAccountIdRequest.java
index 5a970fdde8..044cf50379 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionIdsByAccountIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionIdsByAccountIdRequest.java
@@ -44,7 +44,7 @@ public class GetAdExtensionIdsByAccountIdRequest {
@XmlElement(name = "AccountId")
protected Long accountId;
@XmlElement(name = "AdExtensionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter7 .class)
+ @XmlJavaTypeAdapter(Adapter8 .class)
protected Collection adExtensionType;
@XmlElement(name = "AssociationType", nillable = true)
@XmlSchemaType(name = "string")
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsAssociationsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsAssociationsRequest.java
index 199d9a94c8..7337aa5262 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsAssociationsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsAssociationsRequest.java
@@ -48,7 +48,7 @@ public class GetAdExtensionsAssociationsRequest {
@XmlElement(name = "AccountId")
protected Long accountId;
@XmlElement(name = "AdExtensionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter7 .class)
+ @XmlJavaTypeAdapter(Adapter8 .class)
protected Collection adExtensionType;
@XmlElement(name = "AssociationType")
@XmlSchemaType(name = "string")
@@ -56,7 +56,7 @@ public class GetAdExtensionsAssociationsRequest {
@XmlElement(name = "EntityIds", nillable = true)
protected ArrayOflong entityIds;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter8 .class)
+ @XmlJavaTypeAdapter(Adapter9 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsByIdsRequest.java
index 5e94e69511..c5383201ba 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdExtensionsByIdsRequest.java
@@ -47,10 +47,10 @@ public class GetAdExtensionsByIdsRequest {
@XmlElement(name = "AdExtensionIds", nillable = true)
protected ArrayOflong adExtensionIds;
@XmlElement(name = "AdExtensionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter7 .class)
+ @XmlJavaTypeAdapter(Adapter8 .class)
protected Collection adExtensionType;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter8 .class)
+ @XmlJavaTypeAdapter(Adapter9 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupCriterionsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupCriterionsByIdsRequest.java
index 45b83415ba..013e764ff9 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupCriterionsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupCriterionsByIdsRequest.java
@@ -47,10 +47,10 @@ public class GetAdGroupCriterionsByIdsRequest {
@XmlElement(name = "AdGroupId")
protected Long adGroupId;
@XmlElement(name = "CriterionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter10 .class)
+ @XmlJavaTypeAdapter(Adapter12 .class)
protected Collection criterionType;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter11 .class)
+ @XmlJavaTypeAdapter(Adapter13 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByCampaignIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByCampaignIdRequest.java
index a31cea04d7..caf527aa2b 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByCampaignIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByCampaignIdRequest.java
@@ -41,7 +41,7 @@ public class GetAdGroupsByCampaignIdRequest {
@XmlElement(name = "CampaignId")
protected Long campaignId;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter5 .class)
+ @XmlJavaTypeAdapter(Adapter6 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByIdsRequest.java
index ff7c0c0c49..da12e5ce73 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdGroupsByIdsRequest.java
@@ -45,7 +45,7 @@ public class GetAdGroupsByIdsRequest {
@XmlElement(name = "AdGroupIds", nillable = true)
protected ArrayOflong adGroupIds;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter5 .class)
+ @XmlJavaTypeAdapter(Adapter6 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByAdGroupIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByAdGroupIdRequest.java
index a86384042e..a9ab2044ce 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByAdGroupIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByAdGroupIdRequest.java
@@ -45,7 +45,7 @@ public class GetAdsByAdGroupIdRequest {
@XmlElement(name = "AdTypes", nillable = true)
protected ArrayOfAdType adTypes;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter6 .class)
+ @XmlJavaTypeAdapter(Adapter7 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByEditorialStatusRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByEditorialStatusRequest.java
index ab620d2d42..974f44d7fe 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByEditorialStatusRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByEditorialStatusRequest.java
@@ -51,7 +51,7 @@ public class GetAdsByEditorialStatusRequest {
@XmlElement(name = "AdTypes", nillable = true)
protected ArrayOfAdType adTypes;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter6 .class)
+ @XmlJavaTypeAdapter(Adapter7 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByIdsRequest.java
index 799ae90c9b..befb2b09e9 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAdsByIdsRequest.java
@@ -49,7 +49,7 @@ public class GetAdsByIdsRequest {
@XmlElement(name = "AdTypes", nillable = true)
protected ArrayOfAdType adTypes;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter6 .class)
+ @XmlJavaTypeAdapter(Adapter7 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByCampaignIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByCampaignIdRequest.java
index f4a8b511d6..24bb8dfcdd 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByCampaignIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByCampaignIdRequest.java
@@ -1,11 +1,13 @@
package com.microsoft.bingads.v13.campaignmanagement;
+import java.util.Collection;
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;
+import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
@@ -19,6 +21,7 @@
*
*
*
+ *
*
*
*
@@ -29,13 +32,17 @@
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
- "campaignId"
+ "campaignId",
+ "returnAdditionalFields"
})
@XmlRootElement(name = "GetAssetGroupsByCampaignIdRequest")
public class GetAssetGroupsByCampaignIdRequest {
@XmlElement(name = "CampaignId")
protected Long campaignId;
+ @XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
+ @XmlJavaTypeAdapter(Adapter18 .class)
+ protected Collection returnAdditionalFields;
/**
* Gets the value of the campaignId property.
@@ -61,4 +68,28 @@ public void setCampaignId(Long value) {
this.campaignId = value;
}
+ /**
+ * Gets the value of the returnAdditionalFields property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public Collection getReturnAdditionalFields() {
+ return returnAdditionalFields;
+ }
+
+ /**
+ * Sets the value of the returnAdditionalFields property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturnAdditionalFields(Collection value) {
+ this.returnAdditionalFields = value;
+ }
+
}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByIdsRequest.java
index 9bd24106a7..898750ab2c 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAssetGroupsByIdsRequest.java
@@ -1,11 +1,13 @@
package com.microsoft.bingads.v13.campaignmanagement;
+import java.util.Collection;
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;
+import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
@@ -20,6 +22,7 @@
*
*
*
+ *
*
*
*
@@ -31,7 +34,8 @@
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"campaignId",
- "assetGroupIds"
+ "assetGroupIds",
+ "returnAdditionalFields"
})
@XmlRootElement(name = "GetAssetGroupsByIdsRequest")
public class GetAssetGroupsByIdsRequest {
@@ -40,6 +44,9 @@ public class GetAssetGroupsByIdsRequest {
protected Long campaignId;
@XmlElement(name = "AssetGroupIds", nillable = true)
protected ArrayOflong assetGroupIds;
+ @XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
+ @XmlJavaTypeAdapter(Adapter18 .class)
+ protected Collection returnAdditionalFields;
/**
* Gets the value of the campaignId property.
@@ -89,4 +96,28 @@ public void setAssetGroupIds(ArrayOflong value) {
this.assetGroupIds = value;
}
+ /**
+ * Gets the value of the returnAdditionalFields property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public Collection getReturnAdditionalFields() {
+ return returnAdditionalFields;
+ }
+
+ /**
+ * Sets the value of the returnAdditionalFields property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturnAdditionalFields(Collection value) {
+ this.returnAdditionalFields = value;
+ }
+
}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAudiencesByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAudiencesByIdsRequest.java
index f037e2f0c8..a2c8141683 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAudiencesByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetAudiencesByIdsRequest.java
@@ -43,10 +43,10 @@ public class GetAudiencesByIdsRequest {
@XmlElement(name = "AudienceIds", nillable = true)
protected ArrayOflong audienceIds;
@XmlElement(name = "Type", type = String.class)
- @XmlJavaTypeAdapter(Adapter12 .class)
+ @XmlJavaTypeAdapter(Adapter14 .class)
protected Collection type;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter17 .class)
+ @XmlJavaTypeAdapter(Adapter20 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetBMCStoresByCustomerIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetBMCStoresByCustomerIdRequest.java
index a7796b1c83..372805cbda 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetBMCStoresByCustomerIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetBMCStoresByCustomerIdRequest.java
@@ -37,7 +37,7 @@
public class GetBMCStoresByCustomerIdRequest {
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter14 .class)
+ @XmlJavaTypeAdapter(Adapter16 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignCriterionsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignCriterionsByIdsRequest.java
index 844c49b706..38c4d2aeed 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignCriterionsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignCriterionsByIdsRequest.java
@@ -47,10 +47,10 @@ public class GetCampaignCriterionsByIdsRequest {
@XmlElement(name = "CampaignId")
protected Long campaignId;
@XmlElement(name = "CriterionType", type = String.class)
- @XmlJavaTypeAdapter(Adapter15 .class)
+ @XmlJavaTypeAdapter(Adapter17 .class)
protected Collection criterionType;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter11 .class)
+ @XmlJavaTypeAdapter(Adapter13 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByAccountIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByAccountIdRequest.java
index 52a4d54e97..3e858fb802 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByAccountIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByAccountIdRequest.java
@@ -43,10 +43,10 @@ public class GetCampaignsByAccountIdRequest {
@XmlElement(name = "AccountId")
protected Long accountId;
@XmlElement(name = "CampaignType", type = String.class)
- @XmlJavaTypeAdapter(Adapter3 .class)
+ @XmlJavaTypeAdapter(Adapter4 .class)
protected Collection campaignType;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter4 .class)
+ @XmlJavaTypeAdapter(Adapter5 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByIdsRequest.java
index 7c9dccf325..68cbf3942b 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetCampaignsByIdsRequest.java
@@ -47,10 +47,10 @@ public class GetCampaignsByIdsRequest {
@XmlElement(name = "CampaignIds", nillable = true)
protected ArrayOflong campaignIds;
@XmlElement(name = "CampaignType", type = String.class)
- @XmlJavaTypeAdapter(Adapter3 .class)
+ @XmlJavaTypeAdapter(Adapter4 .class)
protected Collection campaignType;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter4 .class)
+ @XmlJavaTypeAdapter(Adapter5 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByIdsRequest.java
index c0fe49659f..747cd8fad8 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByIdsRequest.java
@@ -43,10 +43,10 @@ public class GetConversionGoalsByIdsRequest {
@XmlElement(name = "ConversionGoalIds", nillable = true)
protected ArrayOflong conversionGoalIds;
@XmlElement(name = "ConversionGoalTypes", type = String.class)
- @XmlJavaTypeAdapter(Adapter18 .class)
+ @XmlJavaTypeAdapter(Adapter21 .class)
protected Collection conversionGoalTypes;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter19 .class)
+ @XmlJavaTypeAdapter(Adapter22 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByTagIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByTagIdsRequest.java
index 69a180d7c6..fedc054c5f 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByTagIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetConversionGoalsByTagIdsRequest.java
@@ -43,10 +43,10 @@ public class GetConversionGoalsByTagIdsRequest {
@XmlElement(name = "TagIds", nillable = true)
protected ArrayOflong tagIds;
@XmlElement(name = "ConversionGoalTypes", type = String.class)
- @XmlJavaTypeAdapter(Adapter18 .class)
+ @XmlJavaTypeAdapter(Adapter21 .class)
protected Collection conversionGoalTypes;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter19 .class)
+ @XmlJavaTypeAdapter(Adapter22 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportJobsByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportJobsByIdsRequest.java
index 5c1497ecd7..c6497416f7 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportJobsByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportJobsByIdsRequest.java
@@ -45,7 +45,7 @@ public class GetImportJobsByIdsRequest {
@XmlElement(name = "ImportType", nillable = true)
protected String importType;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter20 .class)
+ @XmlJavaTypeAdapter(Adapter23 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportResultsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportResultsRequest.java
index 8a9aa0d2d0..1ef9018b49 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportResultsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetImportResultsRequest.java
@@ -49,7 +49,7 @@ public class GetImportResultsRequest {
@XmlElement(name = "ImportJobIds", nillable = true)
protected ArrayOflong importJobIds;
@XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
- @XmlJavaTypeAdapter(Adapter20 .class)
+ @XmlJavaTypeAdapter(Adapter23 .class)
protected Collection returnAdditionalFields;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaAssociationsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaAssociationsRequest.java
index 1d9f56e7fa..a3e85640e3 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaAssociationsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaAssociationsRequest.java
@@ -39,7 +39,7 @@
public class GetMediaAssociationsRequest {
@XmlElement(name = "MediaEnabledEntities", type = String.class)
- @XmlJavaTypeAdapter(Adapter9 .class)
+ @XmlJavaTypeAdapter(Adapter10 .class)
protected Collection mediaEnabledEntities;
@XmlElement(name = "MediaIds", nillable = true)
protected ArrayOflong mediaIds;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByAccountIdRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByAccountIdRequest.java
index aa25ae2fd6..6a6afd27d4 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByAccountIdRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByAccountIdRequest.java
@@ -22,6 +22,7 @@
*
*
*
+ *
*
*
*
@@ -33,16 +34,20 @@
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"mediaEnabledEntities",
- "pageInfo"
+ "pageInfo",
+ "returnAdditionalFields"
})
@XmlRootElement(name = "GetMediaMetaDataByAccountIdRequest")
public class GetMediaMetaDataByAccountIdRequest {
@XmlElement(name = "MediaEnabledEntities", type = String.class)
- @XmlJavaTypeAdapter(Adapter9 .class)
+ @XmlJavaTypeAdapter(Adapter10 .class)
protected Collection mediaEnabledEntities;
@XmlElement(name = "PageInfo", nillable = true)
protected Paging pageInfo;
+ @XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
+ @XmlJavaTypeAdapter(Adapter11 .class)
+ protected Collection returnAdditionalFields;
/**
* Gets the value of the mediaEnabledEntities property.
@@ -92,4 +97,28 @@ public void setPageInfo(Paging value) {
this.pageInfo = value;
}
+ /**
+ * Gets the value of the returnAdditionalFields property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public Collection getReturnAdditionalFields() {
+ return returnAdditionalFields;
+ }
+
+ /**
+ * Sets the value of the returnAdditionalFields property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturnAdditionalFields(Collection value) {
+ this.returnAdditionalFields = value;
+ }
+
}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByIdsRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByIdsRequest.java
index cafe425c40..af49c026a9 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByIdsRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetMediaMetaDataByIdsRequest.java
@@ -1,11 +1,13 @@
package com.microsoft.bingads.v13.campaignmanagement;
+import java.util.Collection;
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;
+import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
@@ -19,6 +21,7 @@
*
*
*
+ *
*
*
*
@@ -29,13 +32,17 @@
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
- "mediaIds"
+ "mediaIds",
+ "returnAdditionalFields"
})
@XmlRootElement(name = "GetMediaMetaDataByIdsRequest")
public class GetMediaMetaDataByIdsRequest {
@XmlElement(name = "MediaIds", nillable = true)
protected ArrayOflong mediaIds;
+ @XmlElement(name = "ReturnAdditionalFields", type = String.class, nillable = true)
+ @XmlJavaTypeAdapter(Adapter11 .class)
+ protected Collection returnAdditionalFields;
/**
* Gets the value of the mediaIds property.
@@ -61,4 +68,28 @@ public void setMediaIds(ArrayOflong value) {
this.mediaIds = value;
}
+ /**
+ * Gets the value of the returnAdditionalFields property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public Collection getReturnAdditionalFields() {
+ return returnAdditionalFields;
+ }
+
+ /**
+ * Sets the value of the returnAdditionalFields property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturnAdditionalFields(Collection value) {
+ this.returnAdditionalFields = value;
+ }
+
}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetProfileDataFileUrlRequest.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetProfileDataFileUrlRequest.java
index 426791db1d..7d0352bdfb 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/GetProfileDataFileUrlRequest.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/GetProfileDataFileUrlRequest.java
@@ -41,7 +41,7 @@ public class GetProfileDataFileUrlRequest {
@XmlElement(name = "LanguageLocale", nillable = true)
protected String languageLocale;
@XmlElement(name = "ProfileType", type = String.class)
- @XmlJavaTypeAdapter(Adapter13 .class)
+ @XmlJavaTypeAdapter(Adapter15 .class)
protected Collection profileType;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/HotelSetting.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/HotelSetting.java
index 39862c09c4..d10ba04a67 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/HotelSetting.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/HotelSetting.java
@@ -40,7 +40,7 @@ public HotelSetting() {
}
@XmlElement(name = "HotelAdGroupType", type = String.class)
- @XmlJavaTypeAdapter(Adapter2 .class)
+ @XmlJavaTypeAdapter(Adapter3 .class)
protected Collection hotelAdGroupType;
/**
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/ImageAdExtension.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/ImageAdExtension.java
index 96384b8d24..bb98fe81f6 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/ImageAdExtension.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/ImageAdExtension.java
@@ -28,6 +28,7 @@
*
*
*
+ *
*
*
*
@@ -51,6 +52,7 @@
"imageMediaIds",
"images",
"layouts",
+ "sourceType",
"trackingUrlTemplate",
"urlCustomParameters"
})
@@ -83,6 +85,8 @@ public ImageAdExtension() {
protected ArrayOfAssetLink images;
@XmlElement(name = "Layouts", nillable = true)
protected ArrayOfstring layouts;
+ @XmlElement(name = "SourceType", nillable = true)
+ protected String sourceType;
@XmlElement(name = "TrackingUrlTemplate", nillable = true)
protected String trackingUrlTemplate;
@XmlElement(name = "UrlCustomParameters", nillable = true)
@@ -352,6 +356,30 @@ public void setLayouts(ArrayOfstring value) {
this.layouts = value;
}
+ /**
+ * Gets the value of the sourceType property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSourceType() {
+ return sourceType;
+ }
+
+ /**
+ * Sets the value of the sourceType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSourceType(String value) {
+ this.sourceType = value;
+ }
+
/**
* Gets the value of the trackingUrlTemplate property.
*
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/ImpressionBasedEntityType.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/ImpressionBasedEntityType.java
new file mode 100644
index 0000000000..969ddf5d1c
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/ImpressionBasedEntityType.java
@@ -0,0 +1,53 @@
+
+package com.microsoft.bingads.v13.campaignmanagement;
+
+import jakarta.xml.bind.annotation.XmlEnum;
+import jakarta.xml.bind.annotation.XmlEnumValue;
+import jakarta.xml.bind.annotation.XmlType;
+
+
+/**
+ * Java class for ImpressionBasedEntityType.
+ *
+ *
The following schema fragment specifies the expected content contained within this class.
+ *
{@code
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ * }
+ *
+ */
+@XmlType(name = "ImpressionBasedEntityType")
+@XmlEnum
+public enum ImpressionBasedEntityType {
+
+ @XmlEnumValue("None")
+ NONE("None"),
+ @XmlEnumValue("Campaign")
+ CAMPAIGN("Campaign"),
+ @XmlEnumValue("AdGroup")
+ AD_GROUP("AdGroup");
+ private final String value;
+
+ ImpressionBasedEntityType(String v) {
+ value = v;
+ }
+
+ public String value() {
+ return value;
+ }
+
+ public static ImpressionBasedEntityType fromValue(String v) {
+ for (ImpressionBasedEntityType c: ImpressionBasedEntityType.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v);
+ }
+
+}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/ImpressionBasedRemarketingList.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/ImpressionBasedRemarketingList.java
new file mode 100644
index 0000000000..2c6a68e8de
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/ImpressionBasedRemarketingList.java
@@ -0,0 +1,126 @@
+
+package com.microsoft.bingads.v13.campaignmanagement;
+import java.util.Collections;
+
+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;
+
+
+/**
+ * Java class for ImpressionBasedRemarketingList complex type.
+ *
+ *
The following schema fragment specifies the expected content contained within this class.
+ *
+ *
{@code
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ * }
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ImpressionBasedRemarketingList", propOrder = {
+ "adGroupId",
+ "campaignId",
+ "entityType"
+})
+public class ImpressionBasedRemarketingList
+ extends Audience
+{
+ public ImpressionBasedRemarketingList() {
+ this.type = Collections.singletonList(AudienceType.fromValue("ImpressionBasedRemarketingList"));
+ }
+
+ @XmlElement(name = "AdGroupId", nillable = true)
+ protected Long adGroupId;
+ @XmlElement(name = "CampaignId", nillable = true)
+ protected Long campaignId;
+ @XmlElement(name = "EntityType")
+ @XmlSchemaType(name = "string")
+ protected ImpressionBasedEntityType entityType;
+
+ /**
+ * Gets the value of the adGroupId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getAdGroupId() {
+ return adGroupId;
+ }
+
+ /**
+ * Sets the value of the adGroupId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setAdGroupId(Long value) {
+ this.adGroupId = value;
+ }
+
+ /**
+ * Gets the value of the campaignId property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getCampaignId() {
+ return campaignId;
+ }
+
+ /**
+ * Sets the value of the campaignId property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setCampaignId(Long value) {
+ this.campaignId = value;
+ }
+
+ /**
+ * Gets the value of the entityType property.
+ *
+ * @return
+ * possible object is
+ * {@link ImpressionBasedEntityType }
+ *
+ */
+ public ImpressionBasedEntityType getEntityType() {
+ return entityType;
+ }
+
+ /**
+ * Sets the value of the entityType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ImpressionBasedEntityType }
+ *
+ */
+ public void setEntityType(ImpressionBasedEntityType value) {
+ this.entityType = value;
+ }
+
+}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/LogoAdExtension.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/LogoAdExtension.java
new file mode 100644
index 0000000000..e4d8d7df8f
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/LogoAdExtension.java
@@ -0,0 +1,151 @@
+
+package com.microsoft.bingads.v13.campaignmanagement;
+
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlType;
+
+
+/**
+ * Java class for LogoAdExtension complex type.
+ *
+ *
The following schema fragment specifies the expected content contained within this class.
+ *
+ *
{@code
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ * }
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "LogoAdExtension", propOrder = {
+ "businessLogo",
+ "businessLogoUrl",
+ "businessName",
+ "domainName"
+})
+public class LogoAdExtension
+ extends AdExtension
+{
+ public LogoAdExtension() {
+ this.type = "LogoAdExtension";
+ }
+
+ @XmlElement(name = "BusinessLogo", nillable = true)
+ protected Long businessLogo;
+ @XmlElement(name = "BusinessLogoUrl", nillable = true)
+ protected String businessLogoUrl;
+ @XmlElement(name = "BusinessName", nillable = true)
+ protected String businessName;
+ @XmlElement(name = "DomainName", nillable = true)
+ protected String domainName;
+
+ /**
+ * Gets the value of the businessLogo property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ public Long getBusinessLogo() {
+ return businessLogo;
+ }
+
+ /**
+ * Sets the value of the businessLogo property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setBusinessLogo(Long value) {
+ this.businessLogo = value;
+ }
+
+ /**
+ * Gets the value of the businessLogoUrl property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBusinessLogoUrl() {
+ return businessLogoUrl;
+ }
+
+ /**
+ * Sets the value of the businessLogoUrl property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBusinessLogoUrl(String value) {
+ this.businessLogoUrl = value;
+ }
+
+ /**
+ * Gets the value of the businessName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBusinessName() {
+ return businessName;
+ }
+
+ /**
+ * Sets the value of the businessName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBusinessName(String value) {
+ this.businessName = value;
+ }
+
+ /**
+ * Gets the value of the domainName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDomainName() {
+ return domainName;
+ }
+
+ /**
+ * Sets the value of the domainName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDomainName(String value) {
+ this.domainName = value;
+ }
+
+}
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/Media.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/Media.java
index 637884b434..8b44ff13fc 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/Media.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/Media.java
@@ -20,6 +20,7 @@
*
*
*
+ *
*
*
*
@@ -33,6 +34,7 @@
@XmlType(name = "Media", propOrder = {
"id",
"mediaType",
+ "text",
"type"
})
@XmlSeeAlso({
@@ -44,6 +46,8 @@ public class Media {
protected Long id;
@XmlElement(name = "MediaType", nillable = true)
protected String mediaType;
+ @XmlElement(name = "Text", nillable = true)
+ protected String text;
@XmlElement(name = "Type", nillable = true)
protected String type;
@@ -99,6 +103,30 @@ public void setMediaType(String value) {
this.mediaType = value;
}
+ /**
+ * Gets the value of the text property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getText() {
+ return text;
+ }
+
+ /**
+ * Sets the value of the text property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setText(String value) {
+ this.text = value;
+ }
+
/**
* Gets the value of the type property.
*
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAdditionalField.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAdditionalField.java
new file mode 100644
index 0000000000..ff5265366f
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAdditionalField.java
@@ -0,0 +1,28 @@
+package com.microsoft.bingads.v13.campaignmanagement;
+
+/**
+ * Enum class for MediaAdditionalField.
+ */
+public enum MediaAdditionalField {
+
+ TEXT("Text");
+
+ private final String value;
+
+ MediaAdditionalField(String v) {
+ value = v;
+ }
+
+ public String value() {
+ return value;
+ }
+
+ public static MediaAdditionalField fromValue(String v) {
+ for (MediaAdditionalField c : MediaAdditionalField.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v);
+ }
+}
\ No newline at end of file
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAdditionalFieldConverter.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAdditionalFieldConverter.java
new file mode 100644
index 0000000000..09879664e0
--- /dev/null
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAdditionalFieldConverter.java
@@ -0,0 +1,34 @@
+package com.microsoft.bingads.v13.campaignmanagement;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+/**
+ * Reserved for internal use.
+ */
+public class MediaAdditionalFieldConverter {
+
+ public static Collection convertToList(String enums) {
+ String[] values = enums.split(" ");
+
+ Collection result = new ArrayList();
+
+ for (String value : values) {
+ result.add(MediaAdditionalField.fromValue(value));
+ }
+
+ return result;
+ }
+
+ public static String convertToString(Collection enums) {
+ String result = "";
+
+ for (MediaAdditionalField entity : enums) {
+ result += (entity.value() + " ");
+ }
+
+ result = result.substring(0, result.length() - 1);
+
+ return result;
+ }
+}
\ No newline at end of file
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAssociation.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAssociation.java
index 0be5aa093d..22a52598b0 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAssociation.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaAssociation.java
@@ -41,7 +41,7 @@ public class MediaAssociation {
@XmlElement(name = "EntityId")
protected Long entityId;
@XmlElement(name = "MediaEnabledEntity", type = String.class)
- @XmlJavaTypeAdapter(Adapter9 .class)
+ @XmlJavaTypeAdapter(Adapter10 .class)
protected Collection mediaEnabledEntity;
@XmlElement(name = "MediaId")
protected Long mediaId;
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaMetaData.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaMetaData.java
index 82877c81fa..1deca0741b 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaMetaData.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/MediaMetaData.java
@@ -20,6 +20,7 @@
*
*
*
+ *
*
*
*
@@ -34,6 +35,7 @@
"id",
"mediaType",
"representations",
+ "text",
"type"
})
public class MediaMetaData {
@@ -44,6 +46,8 @@ public class MediaMetaData {
protected String mediaType;
@XmlElement(name = "Representations", nillable = true)
protected ArrayOfMediaRepresentation representations;
+ @XmlElement(name = "Text", nillable = true)
+ protected String text;
@XmlElement(name = "Type", nillable = true)
protected String type;
@@ -111,6 +115,30 @@ public void setRepresentations(ArrayOfMediaRepresentation value) {
this.representations = value;
}
+ /**
+ * Gets the value of the text property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getText() {
+ return text;
+ }
+
+ /**
+ * Sets the value of the text property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setText(String value) {
+ this.text = value;
+ }
+
/**
* Gets the value of the type property.
*
diff --git a/proxies/com/microsoft/bingads/v13/campaignmanagement/ObjectFactory.java b/proxies/com/microsoft/bingads/v13/campaignmanagement/ObjectFactory.java
index 58933cb519..ea1ecba105 100644
--- a/proxies/com/microsoft/bingads/v13/campaignmanagement/ObjectFactory.java
+++ b/proxies/com/microsoft/bingads/v13/campaignmanagement/ObjectFactory.java
@@ -44,6 +44,7 @@ public class ObjectFactory {
private static final QName _ExpandedTextAd_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ExpandedTextAd");
private static final QName _DynamicSearchAd_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "DynamicSearchAd");
private static final QName _ResponsiveAd_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ResponsiveAd");
+ private static final QName _AdSubType_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AdSubType");
private static final QName _CallToAction_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "CallToAction");
private static final QName _LanguageName_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "LanguageName");
private static final QName _ArrayOfAssetLink_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfAssetLink");
@@ -71,6 +72,9 @@ public class ObjectFactory {
private static final QName _ResponsiveSearchAdsSetting_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ResponsiveSearchAdsSetting");
private static final QName _PerformanceMaxSetting_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "PerformanceMaxSetting");
private static final QName _CallToActionSetting_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "CallToActionSetting");
+ private static final QName _VanityPharmaSetting_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "VanityPharmaSetting");
+ private static final QName _VanityPharmaDisplayUrlMode_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "VanityPharmaDisplayUrlMode");
+ private static final QName _VanityPharmaWebsiteDescription_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "VanityPharmaWebsiteDescription");
private static final QName _ResponsiveSearchAd_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ResponsiveSearchAd");
private static final QName _ArrayOfCampaign_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfCampaign");
private static final QName _Campaign_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "Campaign");
@@ -195,6 +199,7 @@ public class ObjectFactory {
private static final QName _FlyerAdExtension_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "FlyerAdExtension");
private static final QName _VideoAdExtension_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "VideoAdExtension");
private static final QName _DisclaimerAdExtension_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "DisclaimerAdExtension");
+ private static final QName _LogoAdExtension_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "LogoAdExtension");
private static final QName _ArrayOfAdExtensionIdentity_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfAdExtensionIdentity");
private static final QName _AdExtensionIdentity_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AdExtensionIdentity");
private static final QName _ArrayOfBatchErrorCollection_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfBatchErrorCollection");
@@ -219,6 +224,7 @@ public class ObjectFactory {
private static final QName _Image_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "Image");
private static final QName _MediaEnabledEntityFilter_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "MediaEnabledEntityFilter");
private static final QName _Paging_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "Paging");
+ private static final QName _MediaAdditionalField_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "MediaAdditionalField");
private static final QName _ArrayOfMediaMetaData_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfMediaMetaData");
private static final QName _MediaMetaData_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "MediaMetaData");
private static final QName _ArrayOfMediaRepresentation_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfMediaRepresentation");
@@ -334,8 +340,11 @@ public class ObjectFactory {
private static final QName _AudienceInfo_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AudienceInfo");
private static final QName _ArrayOfAssetGroup_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfAssetGroup");
private static final QName _AssetGroup_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AssetGroup");
+ private static final QName _ArrayOfAssetGroupSearchTheme_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfAssetGroupSearchTheme");
+ private static final QName _AssetGroupSearchTheme_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AssetGroupSearchTheme");
private static final QName _AssetGroupEditorialStatus_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AssetGroupEditorialStatus");
private static final QName _AssetGroupStatus_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AssetGroupStatus");
+ private static final QName _AssetGroupAdditionalField_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AssetGroupAdditionalField");
private static final QName _ArrayOfAssetGroupEditorialReasonCollection_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfAssetGroupEditorialReasonCollection");
private static final QName _AssetGroupEditorialReasonCollection_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AssetGroupEditorialReasonCollection");
private static final QName _ArrayOfAssetGroupEditorialReason_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ArrayOfAssetGroupEditorialReason");
@@ -374,6 +383,8 @@ public class ObjectFactory {
private static final QName _CombinationRule_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "CombinationRule");
private static final QName _LogicalOperator_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "LogicalOperator");
private static final QName _CustomerList_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "CustomerList");
+ private static final QName _ImpressionBasedRemarketingList_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ImpressionBasedRemarketingList");
+ private static final QName _ImpressionBasedEntityType_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "ImpressionBasedEntityType");
private static final QName _AudienceAdditionalField_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "AudienceAdditionalField");
private static final QName _CustomerListUserData_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "CustomerListUserData");
private static final QName _CustomerListActionType_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v13", "CustomerListActionType");
@@ -955,6 +966,16 @@ public CallToActionSetting createCallToActionSetting() {
return new CallToActionSetting();
}
+ /**
+ * Create an instance of {@link VanityPharmaSetting }
+ *
+ * @return
+ * the new instance of {@link VanityPharmaSetting }
+ */
+ public VanityPharmaSetting createVanityPharmaSetting() {
+ return new VanityPharmaSetting();
+ }
+
/**
* Create an instance of {@link ResponsiveSearchAd }
*
@@ -2535,6 +2556,16 @@ public DisclaimerAdExtension createDisclaimerAdExtension() {
return new DisclaimerAdExtension();
}
+ /**
+ * Create an instance of {@link LogoAdExtension }
+ *
+ * @return
+ * the new instance of {@link LogoAdExtension }
+ */
+ public LogoAdExtension createLogoAdExtension() {
+ return new LogoAdExtension();
+ }
+
/**
* Create an instance of {@link AddAdExtensionsResponse }
*
@@ -4785,6 +4816,26 @@ public AssetGroup createAssetGroup() {
return new AssetGroup();
}
+ /**
+ * Create an instance of {@link ArrayOfAssetGroupSearchTheme }
+ *
+ * @return
+ * the new instance of {@link ArrayOfAssetGroupSearchTheme }
+ */
+ public ArrayOfAssetGroupSearchTheme createArrayOfAssetGroupSearchTheme() {
+ return new ArrayOfAssetGroupSearchTheme();
+ }
+
+ /**
+ * Create an instance of {@link AssetGroupSearchTheme }
+ *
+ * @return
+ * the new instance of {@link AssetGroupSearchTheme }
+ */
+ public AssetGroupSearchTheme createAssetGroupSearchTheme() {
+ return new AssetGroupSearchTheme();
+ }
+
/**
* Create an instance of {@link AddAssetGroupsResponse }
*
@@ -5315,6 +5366,16 @@ public CustomerList createCustomerList() {
return new CustomerList();
}
+ /**
+ * Create an instance of {@link ImpressionBasedRemarketingList }
+ *
+ * @return
+ * the new instance of {@link ImpressionBasedRemarketingList }
+ */
+ public ImpressionBasedRemarketingList createImpressionBasedRemarketingList() {
+ return new ImpressionBasedRemarketingList();
+ }
+
/**
* Create an instance of {@link AddAudiencesResponse }
*
@@ -7223,6 +7284,20 @@ public JAXBElement createResponsiveAd(ResponsiveAd value) {
return new JAXBElement<>(_ResponsiveAd_QNAME, ResponsiveAd.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdSubType }{@code >}{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdSubType }{@code >}{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AdSubType")
+ @XmlJavaTypeAdapter(Adapter2 .class)
+ public JAXBElement> createAdSubType(Collection value) {
+ return new JAXBElement<>(_AdSubType_QNAME, ((Class) Collection.class), null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CallToAction }{@code >}
*
@@ -7531,7 +7606,7 @@ public JAXBElement createHotelSetting(HotelSetting value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link HotelAdGroupType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "HotelAdGroupType")
- @XmlJavaTypeAdapter(Adapter2 .class)
+ @XmlJavaTypeAdapter(Adapter3 .class)
public JAXBElement> createHotelAdGroupType(Collection value) {
return new JAXBElement<>(_HotelAdGroupType_QNAME, ((Class) Collection.class), null, value);
}
@@ -7575,6 +7650,45 @@ public JAXBElement createCallToActionSetting(CallToActionSe
return new JAXBElement<>(_CallToActionSetting_QNAME, CallToActionSetting.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link VanityPharmaSetting }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link VanityPharmaSetting }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "VanityPharmaSetting")
+ public JAXBElement createVanityPharmaSetting(VanityPharmaSetting value) {
+ return new JAXBElement<>(_VanityPharmaSetting_QNAME, VanityPharmaSetting.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link VanityPharmaDisplayUrlMode }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link VanityPharmaDisplayUrlMode }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "VanityPharmaDisplayUrlMode")
+ public JAXBElement createVanityPharmaDisplayUrlMode(VanityPharmaDisplayUrlMode value) {
+ return new JAXBElement<>(_VanityPharmaDisplayUrlMode_QNAME, VanityPharmaDisplayUrlMode.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link VanityPharmaWebsiteDescription }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link VanityPharmaWebsiteDescription }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "VanityPharmaWebsiteDescription")
+ public JAXBElement createVanityPharmaWebsiteDescription(VanityPharmaWebsiteDescription value) {
+ return new JAXBElement<>(_VanityPharmaWebsiteDescription_QNAME, VanityPharmaWebsiteDescription.class, null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ResponsiveSearchAd }{@code >}
*
@@ -7883,7 +7997,7 @@ public JAXBElement createCampaignStatus(CampaignStatus value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link CampaignType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "CampaignType")
- @XmlJavaTypeAdapter(Adapter3 .class)
+ @XmlJavaTypeAdapter(Adapter4 .class)
public JAXBElement> createCampaignType(Collection value) {
return new JAXBElement<>(_CampaignType_QNAME, ((Class) Collection.class), null, value);
}
@@ -8092,7 +8206,7 @@ public JAXBElement createOperationError(OperationError value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link CampaignAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "CampaignAdditionalField")
- @XmlJavaTypeAdapter(Adapter4 .class)
+ @XmlJavaTypeAdapter(Adapter5 .class)
public JAXBElement> createCampaignAdditionalField(Collection value) {
return new JAXBElement<>(_CampaignAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -8340,7 +8454,7 @@ public JAXBElement createAdGroupStatus(AdGroupStatus value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdGroupAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AdGroupAdditionalField")
- @XmlJavaTypeAdapter(Adapter5 .class)
+ @XmlJavaTypeAdapter(Adapter6 .class)
public JAXBElement> createAdGroupAdditionalField(Collection value) {
return new JAXBElement<>(_AdGroupAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -8445,7 +8559,7 @@ public JAXBElement createArrayOfAdType(ArrayOfAdType value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AdAdditionalField")
- @XmlJavaTypeAdapter(Adapter6 .class)
+ @XmlJavaTypeAdapter(Adapter7 .class)
public JAXBElement> createAdAdditionalField(Collection value) {
return new JAXBElement<>(_AdAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -9191,6 +9305,19 @@ public JAXBElement createDisclaimerAdExtension(Disclaimer
return new JAXBElement<>(_DisclaimerAdExtension_QNAME, DisclaimerAdExtension.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link LogoAdExtension }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link LogoAdExtension }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "LogoAdExtension")
+ public JAXBElement createLogoAdExtension(LogoAdExtension value) {
+ return new JAXBElement<>(_LogoAdExtension_QNAME, LogoAdExtension.class, null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdExtensionIdentity }{@code >}
*
@@ -9265,7 +9392,7 @@ public JAXBElement createEditorialErrorCollection(Edit
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdExtensionsTypeFilter }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AdExtensionsTypeFilter")
- @XmlJavaTypeAdapter(Adapter7 .class)
+ @XmlJavaTypeAdapter(Adapter8 .class)
public JAXBElement> createAdExtensionsTypeFilter(Collection value) {
return new JAXBElement<>(_AdExtensionsTypeFilter_QNAME, ((Class) Collection.class), null, value);
}
@@ -9279,7 +9406,7 @@ public JAXBElement> createAdExtensionsTypeFil
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdExtensionAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AdExtensionAdditionalField")
- @XmlJavaTypeAdapter(Adapter8 .class)
+ @XmlJavaTypeAdapter(Adapter9 .class)
public JAXBElement> createAdExtensionAdditionalField(Collection value) {
return new JAXBElement<>(_AdExtensionAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -9488,7 +9615,7 @@ public JAXBElement createImage(Image value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link MediaEnabledEntityFilter }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "MediaEnabledEntityFilter")
- @XmlJavaTypeAdapter(Adapter9 .class)
+ @XmlJavaTypeAdapter(Adapter10 .class)
public JAXBElement> createMediaEnabledEntityFilter(Collection value) {
return new JAXBElement<>(_MediaEnabledEntityFilter_QNAME, ((Class) Collection.class), null, value);
}
@@ -9506,6 +9633,20 @@ public JAXBElement createPaging(Paging value) {
return new JAXBElement<>(_Paging_QNAME, Paging.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link MediaAdditionalField }{@code >}{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link MediaAdditionalField }{@code >}{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "MediaAdditionalField")
+ @XmlJavaTypeAdapter(Adapter11 .class)
+ public JAXBElement> createMediaAdditionalField(Collection value) {
+ return new JAXBElement<>(_MediaAdditionalField_QNAME, ((Class) Collection.class), null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfMediaMetaData }{@code >}
*
@@ -9619,7 +9760,7 @@ public JAXBElement createMediaAssociation(MediaAssociation val
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AdGroupCriterionType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AdGroupCriterionType")
- @XmlJavaTypeAdapter(Adapter10 .class)
+ @XmlJavaTypeAdapter(Adapter12 .class)
public JAXBElement> createAdGroupCriterionType(Collection value) {
return new JAXBElement<>(_AdGroupCriterionType_QNAME, ((Class) Collection.class), null, value);
}
@@ -9633,7 +9774,7 @@ public JAXBElement> createAdGroupCriterionType(
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link CriterionAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "CriterionAdditionalField")
- @XmlJavaTypeAdapter(Adapter11 .class)
+ @XmlJavaTypeAdapter(Adapter13 .class)
public JAXBElement> createCriterionAdditionalField(Collection value) {
return new JAXBElement<>(_CriterionAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -10102,7 +10243,7 @@ public JAXBElement createAudienceCriterion(AudienceCriterion
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AudienceType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AudienceType")
- @XmlJavaTypeAdapter(Adapter12 .class)
+ @XmlJavaTypeAdapter(Adapter14 .class)
public JAXBElement> createAudienceType(Collection value) {
return new JAXBElement<>(_AudienceType_QNAME, ((Class) Collection.class), null, value);
}
@@ -10129,7 +10270,7 @@ public JAXBElement createProfileCriterion(ProfileCriterion val
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link ProfileType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ProfileType")
- @XmlJavaTypeAdapter(Adapter13 .class)
+ @XmlJavaTypeAdapter(Adapter15 .class)
public JAXBElement> createProfileType(Collection value) {
return new JAXBElement<>(_ProfileType_QNAME, ((Class) Collection.class), null, value);
}
@@ -10364,7 +10505,7 @@ public JAXBElement createArrayOfAssetGroupListing
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link BMCStoreAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "BMCStoreAdditionalField")
- @XmlJavaTypeAdapter(Adapter14 .class)
+ @XmlJavaTypeAdapter(Adapter16 .class)
public JAXBElement> createBMCStoreAdditionalField(Collection value) {
return new JAXBElement<>(_BMCStoreAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -10768,7 +10909,7 @@ public JAXBElement createBiddableCampaignCriterion(Bi
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link CampaignCriterionType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "CampaignCriterionType")
- @XmlJavaTypeAdapter(Adapter15 .class)
+ @XmlJavaTypeAdapter(Adapter17 .class)
public JAXBElement> createCampaignCriterionType(Collection value) {
return new JAXBElement<>(_CampaignCriterionType_QNAME, ((Class) Collection.class), null, value);
}
@@ -11007,6 +11148,32 @@ public JAXBElement createAssetGroup(AssetGroup value) {
return new JAXBElement<>(_AssetGroup_QNAME, AssetGroup.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAssetGroupSearchTheme }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link ArrayOfAssetGroupSearchTheme }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ArrayOfAssetGroupSearchTheme")
+ public JAXBElement createArrayOfAssetGroupSearchTheme(ArrayOfAssetGroupSearchTheme value) {
+ return new JAXBElement<>(_ArrayOfAssetGroupSearchTheme_QNAME, ArrayOfAssetGroupSearchTheme.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link AssetGroupSearchTheme }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link AssetGroupSearchTheme }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AssetGroupSearchTheme")
+ public JAXBElement createAssetGroupSearchTheme(AssetGroupSearchTheme value) {
+ return new JAXBElement<>(_AssetGroupSearchTheme_QNAME, AssetGroupSearchTheme.class, null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AssetGroupEditorialStatus }{@code >}
*
@@ -11033,6 +11200,20 @@ public JAXBElement createAssetGroupStatus(AssetGroupStatus val
return new JAXBElement<>(_AssetGroupStatus_QNAME, AssetGroupStatus.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AssetGroupAdditionalField }{@code >}{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AssetGroupAdditionalField }{@code >}{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AssetGroupAdditionalField")
+ @XmlJavaTypeAdapter(Adapter18 .class)
+ public JAXBElement> createAssetGroupAdditionalField(Collection value) {
+ return new JAXBElement<>(_AssetGroupAdditionalField_QNAME, ((Class) Collection.class), null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAssetGroupEditorialReasonCollection }{@code >}
*
@@ -11445,7 +11626,7 @@ public JAXBElement createProductAudience(ProductAudience value)
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link ProductAudienceType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ProductAudienceType")
- @XmlJavaTypeAdapter(Adapter16 .class)
+ @XmlJavaTypeAdapter(Adapter19 .class)
public JAXBElement> createProductAudienceType(Collection value) {
return new JAXBElement<>(_ProductAudienceType_QNAME, ((Class) Collection.class), null, value);
}
@@ -11528,6 +11709,32 @@ public JAXBElement createCustomerList(CustomerList value) {
return new JAXBElement<>(_CustomerList_QNAME, CustomerList.class, null, value);
}
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ImpressionBasedRemarketingList }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link ImpressionBasedRemarketingList }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ImpressionBasedRemarketingList")
+ public JAXBElement createImpressionBasedRemarketingList(ImpressionBasedRemarketingList value) {
+ return new JAXBElement<>(_ImpressionBasedRemarketingList_QNAME, ImpressionBasedRemarketingList.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ImpressionBasedEntityType }{@code >}
+ *
+ * @param value
+ * Java instance representing xml element's value.
+ * @return
+ * the new instance of {@link JAXBElement }{@code <}{@link ImpressionBasedEntityType }{@code >}
+ */
+ @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ImpressionBasedEntityType")
+ public JAXBElement createImpressionBasedEntityType(ImpressionBasedEntityType value) {
+ return new JAXBElement<>(_ImpressionBasedEntityType_QNAME, ImpressionBasedEntityType.class, null, value);
+ }
+
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AudienceAdditionalField }{@code >}{@code >}
*
@@ -11537,7 +11744,7 @@ public JAXBElement createCustomerList(CustomerList value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link AudienceAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "AudienceAdditionalField")
- @XmlJavaTypeAdapter(Adapter17 .class)
+ @XmlJavaTypeAdapter(Adapter20 .class)
public JAXBElement> createAudienceAdditionalField(Collection value) {
return new JAXBElement<>(_AudienceAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -11629,7 +11836,7 @@ public JAXBElement createUetTagTrackingStatus(UetTagTracki
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link ConversionGoalType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ConversionGoalType")
- @XmlJavaTypeAdapter(Adapter18 .class)
+ @XmlJavaTypeAdapter(Adapter21 .class)
public JAXBElement> createConversionGoalType(Collection value) {
return new JAXBElement<>(_ConversionGoalType_QNAME, ((Class) Collection.class), null, value);
}
@@ -11643,7 +11850,7 @@ public JAXBElement> createConversionGoalType(Coll
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link ConversionGoalAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ConversionGoalAdditionalField")
- @XmlJavaTypeAdapter(Adapter19 .class)
+ @XmlJavaTypeAdapter(Adapter22 .class)
public JAXBElement> createConversionGoalAdditionalField(Collection value) {
return new JAXBElement<>(_ConversionGoalAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -12216,7 +12423,7 @@ public JAXBElement createFileImportJob(FileImportJob value) {
* the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link ImportAdditionalField }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "ImportAdditionalField")
- @XmlJavaTypeAdapter(Adapter20 .class)
+ @XmlJavaTypeAdapter(Adapter23 .class)
public JAXBElement> createImportAdditionalField(Collection value) {
return new JAXBElement<>(_ImportAdditionalField_QNAME, ((Class) Collection.class), null, value);
}
@@ -12391,16 +12598,17 @@ public JAXBElement createCampaignAssociation(CampaignAssoci
}
/**
- * Create an instance of {@link JAXBElement }{@code <}{@link DeviceType }{@code >}
+ * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link DeviceType }{@code >}{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
- * the new instance of {@link JAXBElement }{@code <}{@link DeviceType }{@code >}
+ * the new instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link DeviceType }{@code >}{@code >}
*/
@XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v13", name = "DeviceType")
- public JAXBElement createDeviceType(DeviceType value) {
- return new JAXBElement<>(_DeviceType_QNAME, DeviceType.class, null, value);
+ @XmlJavaTypeAdapter(Adapter24 .class)
+ public JAXBElement