diff --git a/README.md b/README.md index 884bacfd91..2269a70d0b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The Bing Ads Java SDK includes and depends on the microsoft.bingads Maven artifa com.microsoft.bingads microsoft.bingads - 12.13.6 + 13.0.1 ``` 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/). diff --git a/pom.xml b/pom.xml index 0614fd5b59..d4c8c5adff 100644 --- a/pom.xml +++ b/pom.xml @@ -1,7 +1,7 @@ 4.0.0 com.microsoft.bingads - 12.13.6 + 13.0.1 Bing Ads Java SDK 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. https://github.com/BingAds/BingAds-Java-SDK diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdApiError.java b/proxies/com/microsoft/bingads/v12/adinsight/AdApiError.java deleted file mode 100644 index 9618a1a003..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdApiError.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdApiError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdApiError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Detail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdApiError", namespace = "https://adapi.microsoft.com", propOrder = { - "code", - "detail", - "errorCode", - "message" -}) -public class AdApiError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Detail", nillable = true) - protected String detail; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "Message", nillable = true) - protected String message; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the detail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetail() { - return detail; - } - - /** - * Sets the value of the detail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetail(String value) { - this.detail = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdApiFaultDetail.java b/proxies/com/microsoft/bingads/v12/adinsight/AdApiFaultDetail.java deleted file mode 100644 index 37eace6624..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdApiFaultDetail.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdApiFaultDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdApiFaultDetail">
- *   <complexContent>
- *     <extension base="{https://adapi.microsoft.com}ApplicationFault">
- *       <sequence>
- *         <element name="Errors" type="{https://adapi.microsoft.com}ArrayOfAdApiError" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdApiFaultDetail", namespace = "https://adapi.microsoft.com", propOrder = { - "errors" -}) -public class AdApiFaultDetail - extends ApplicationFault -{ - - @XmlElement(name = "Errors", nillable = true) - protected ArrayOfAdApiError errors; - - /** - * Gets the value of the errors property. - * - * @return - * possible object is - * {@link ArrayOfAdApiError } - * - */ - public ArrayOfAdApiError getErrors() { - return errors; - } - - /** - * Sets the value of the errors property. - * - * @param value - * allowed object is - * {@link ArrayOfAdApiError } - * - */ - public void setErrors(ArrayOfAdApiError value) { - this.errors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdApiFaultDetail_Exception.java b/proxies/com/microsoft/bingads/v12/adinsight/AdApiFaultDetail_Exception.java deleted file mode 100644 index af7f3b9e7e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdApiFaultDetail_Exception.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebFault(name = "AdApiFaultDetail", targetNamespace = "https://adapi.microsoft.com") -public class AdApiFaultDetail_Exception - extends Exception -{ - - /** - * Java type that goes as soapenv:Fault detail element. - * - */ - private AdApiFaultDetail faultInfo; - - /** - * - * @param faultInfo - * @param message - */ - public AdApiFaultDetail_Exception(String message, AdApiFaultDetail faultInfo) { - super(message); - this.faultInfo = faultInfo; - } - - /** - * - * @param faultInfo - * @param cause - * @param message - */ - public AdApiFaultDetail_Exception(String message, AdApiFaultDetail faultInfo, Throwable cause) { - super(message, cause); - this.faultInfo = faultInfo; - } - - /** - * - * @return - * returns fault bean: com.microsoft.bingads.v12.adinsight.AdApiFaultDetail - */ - public AdApiFaultDetail getFaultInfo() { - return faultInfo; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscape.java b/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscape.java deleted file mode 100644 index fb873893b7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscape.java +++ /dev/null @@ -1,176 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupBidLandscape complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupBidLandscape">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdGroupBidLandscapeType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdGroupBidLandscapeType" minOccurs="0"/>
- *         <element name="StartDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="EndDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="BidLandscapePoints" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfBidLandscapePoint" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupBidLandscape", propOrder = { - "adGroupId", - "adGroupBidLandscapeType", - "startDate", - "endDate", - "bidLandscapePoints" -}) -public class AdGroupBidLandscape { - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "AdGroupBidLandscapeType") - @XmlSchemaType(name = "string") - protected AdGroupBidLandscapeType adGroupBidLandscapeType; - @XmlElement(name = "StartDate", nillable = true) - protected DayMonthAndYear startDate; - @XmlElement(name = "EndDate", nillable = true) - protected DayMonthAndYear endDate; - @XmlElement(name = "BidLandscapePoints", nillable = true) - protected ArrayOfBidLandscapePoint bidLandscapePoints; - - /** - * 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 adGroupBidLandscapeType property. - * - * @return - * possible object is - * {@link AdGroupBidLandscapeType } - * - */ - public AdGroupBidLandscapeType getAdGroupBidLandscapeType() { - return adGroupBidLandscapeType; - } - - /** - * Sets the value of the adGroupBidLandscapeType property. - * - * @param value - * allowed object is - * {@link AdGroupBidLandscapeType } - * - */ - public void setAdGroupBidLandscapeType(AdGroupBidLandscapeType value) { - this.adGroupBidLandscapeType = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setStartDate(DayMonthAndYear value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setEndDate(DayMonthAndYear value) { - this.endDate = value; - } - - /** - * Gets the value of the bidLandscapePoints property. - * - * @return - * possible object is - * {@link ArrayOfBidLandscapePoint } - * - */ - public ArrayOfBidLandscapePoint getBidLandscapePoints() { - return bidLandscapePoints; - } - - /** - * Sets the value of the bidLandscapePoints property. - * - * @param value - * allowed object is - * {@link ArrayOfBidLandscapePoint } - * - */ - public void setBidLandscapePoints(ArrayOfBidLandscapePoint value) { - this.bidLandscapePoints = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscapeInput.java b/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscapeInput.java deleted file mode 100644 index 0d45046b09..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscapeInput.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupBidLandscapeInput complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupBidLandscapeInput">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupBidLandscapeType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdGroupBidLandscapeType" minOccurs="0"/>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupBidLandscapeInput", propOrder = { - "adGroupBidLandscapeType", - "adGroupId" -}) -public class AdGroupBidLandscapeInput { - - @XmlElement(name = "AdGroupBidLandscapeType") - @XmlSchemaType(name = "string") - protected AdGroupBidLandscapeType adGroupBidLandscapeType; - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - - /** - * Gets the value of the adGroupBidLandscapeType property. - * - * @return - * possible object is - * {@link AdGroupBidLandscapeType } - * - */ - public AdGroupBidLandscapeType getAdGroupBidLandscapeType() { - return adGroupBidLandscapeType; - } - - /** - * Sets the value of the adGroupBidLandscapeType property. - * - * @param value - * allowed object is - * {@link AdGroupBidLandscapeType } - * - */ - public void setAdGroupBidLandscapeType(AdGroupBidLandscapeType value) { - this.adGroupBidLandscapeType = value; - } - - /** - * 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscapeType.java b/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscapeType.java deleted file mode 100644 index 988a3aef38..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupBidLandscapeType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupBidLandscapeType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdGroupBidLandscapeType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Uniform"/>
- *     <enumeration value="DefaultBidOnly"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdGroupBidLandscapeType") -@XmlEnum -public enum AdGroupBidLandscapeType { - - @XmlEnumValue("Uniform") - UNIFORM("Uniform"), - @XmlEnumValue("DefaultBidOnly") - DEFAULT_BID_ONLY("DefaultBidOnly"); - private final String value; - - AdGroupBidLandscapeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupBidLandscapeType fromValue(String v) { - for (AdGroupBidLandscapeType c: AdGroupBidLandscapeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/AdGroupEstimate.java deleted file mode 100644 index fc48fd0dd1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupEstimate.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="KeywordEstimates" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordEstimate" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupEstimate", propOrder = { - "adGroupId", - "keywordEstimates" -}) -public class AdGroupEstimate { - - @XmlElement(name = "AdGroupId", nillable = true) - protected Long adGroupId; - @XmlElement(name = "KeywordEstimates", nillable = true) - protected ArrayOfKeywordEstimate keywordEstimates; - - /** - * 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 keywordEstimates property. - * - * @return - * possible object is - * {@link ArrayOfKeywordEstimate } - * - */ - public ArrayOfKeywordEstimate getKeywordEstimates() { - return keywordEstimates; - } - - /** - * Sets the value of the keywordEstimates property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordEstimate } - * - */ - public void setKeywordEstimates(ArrayOfKeywordEstimate value) { - this.keywordEstimates = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupEstimator.java b/proxies/com/microsoft/bingads/v12/adinsight/AdGroupEstimator.java deleted file mode 100644 index d64c4d30cd..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdGroupEstimator.java +++ /dev/null @@ -1,118 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupEstimator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupEstimator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="KeywordEstimators" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordEstimator" minOccurs="0"/>
- *         <element name="MaxCpc" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupEstimator", propOrder = { - "adGroupId", - "keywordEstimators", - "maxCpc" -}) -public class AdGroupEstimator { - - @XmlElement(name = "AdGroupId", nillable = true) - protected Long adGroupId; - @XmlElement(name = "KeywordEstimators", nillable = true) - protected ArrayOfKeywordEstimator keywordEstimators; - @XmlElement(name = "MaxCpc") - protected Double maxCpc; - - /** - * 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 keywordEstimators property. - * - * @return - * possible object is - * {@link ArrayOfKeywordEstimator } - * - */ - public ArrayOfKeywordEstimator getKeywordEstimators() { - return keywordEstimators; - } - - /** - * Sets the value of the keywordEstimators property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordEstimator } - * - */ - public void setKeywordEstimators(ArrayOfKeywordEstimator value) { - this.keywordEstimators = value; - } - - /** - * Gets the value of the maxCpc property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxCpc() { - return maxCpc; - } - - /** - * Sets the value of the maxCpc property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxCpc(Double value) { - this.maxCpc = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdInsightService.java b/proxies/com/microsoft/bingads/v12/adinsight/AdInsightService.java deleted file mode 100644 index 63f7dc534b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdInsightService.java +++ /dev/null @@ -1,78 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.Service; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceException; -import javax.xml.ws.WebServiceFeature; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebServiceClient(name = "AdInsightService", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", wsdlLocation = "https://adinsight.api.sandbox.bingads.microsoft.com/Api/Advertiser/AdInsight/v12/AdInsightService.svc?wsdl") -public class AdInsightService - extends Service -{ - - private final static URL ADINSIGHTSERVICE_WSDL_LOCATION; - private final static WebServiceException ADINSIGHTSERVICE_EXCEPTION; - private final static QName ADINSIGHTSERVICE_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "AdInsightService"); - - static { - URL url = null; - WebServiceException e = null; - try { - url = new URL("https://adinsight.api.sandbox.bingads.microsoft.com/Api/Advertiser/AdInsight/v12/AdInsightService.svc?wsdl"); - } catch (MalformedURLException ex) { - e = new WebServiceException(ex); - } - ADINSIGHTSERVICE_WSDL_LOCATION = url; - ADINSIGHTSERVICE_EXCEPTION = e; - } - - public AdInsightService() { - super(__getWsdlLocation(), ADINSIGHTSERVICE_QNAME); - } - - public AdInsightService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - /** - * - * @return - * returns IAdInsightService - */ - @WebEndpoint(name = "BasicHttpBinding_IAdInsightService") - public IAdInsightService getBasicHttpBindingIAdInsightService() { - return super.getPort(new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "BasicHttpBinding_IAdInsightService"), IAdInsightService.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns IAdInsightService - */ - @WebEndpoint(name = "BasicHttpBinding_IAdInsightService") - public IAdInsightService getBasicHttpBindingIAdInsightService(WebServiceFeature... features) { - return super.getPort(new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "BasicHttpBinding_IAdInsightService"), IAdInsightService.class, features); - } - - private static URL __getWsdlLocation() { - if (ADINSIGHTSERVICE_EXCEPTION!= null) { - throw ADINSIGHTSERVICE_EXCEPTION; - } - return ADINSIGHTSERVICE_WSDL_LOCATION; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AdPosition.java b/proxies/com/microsoft/bingads/v12/adinsight/AdPosition.java deleted file mode 100644 index d0491b4998..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AdPosition.java +++ /dev/null @@ -1,93 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdPosition. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdPosition">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="All"/>
- *     <enumeration value="MainLine1"/>
- *     <enumeration value="MainLine2"/>
- *     <enumeration value="MainLine3"/>
- *     <enumeration value="MainLine4"/>
- *     <enumeration value="FirstPage1"/>
- *     <enumeration value="FirstPage2"/>
- *     <enumeration value="FirstPage3"/>
- *     <enumeration value="FirstPage4"/>
- *     <enumeration value="FirstPage5"/>
- *     <enumeration value="FirstPage6"/>
- *     <enumeration value="FirstPage7"/>
- *     <enumeration value="FirstPage8"/>
- *     <enumeration value="FirstPage9"/>
- *     <enumeration value="FirstPage10"/>
- *     <enumeration value="Aggregate"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdPosition") -@XmlEnum -public enum AdPosition { - - @XmlEnumValue("All") - ALL("All"), - @XmlEnumValue("MainLine1") - MAIN_LINE_1("MainLine1"), - @XmlEnumValue("MainLine2") - MAIN_LINE_2("MainLine2"), - @XmlEnumValue("MainLine3") - MAIN_LINE_3("MainLine3"), - @XmlEnumValue("MainLine4") - MAIN_LINE_4("MainLine4"), - @XmlEnumValue("FirstPage1") - FIRST_PAGE_1("FirstPage1"), - @XmlEnumValue("FirstPage2") - FIRST_PAGE_2("FirstPage2"), - @XmlEnumValue("FirstPage3") - FIRST_PAGE_3("FirstPage3"), - @XmlEnumValue("FirstPage4") - FIRST_PAGE_4("FirstPage4"), - @XmlEnumValue("FirstPage5") - FIRST_PAGE_5("FirstPage5"), - @XmlEnumValue("FirstPage6") - FIRST_PAGE_6("FirstPage6"), - @XmlEnumValue("FirstPage7") - FIRST_PAGE_7("FirstPage7"), - @XmlEnumValue("FirstPage8") - FIRST_PAGE_8("FirstPage8"), - @XmlEnumValue("FirstPage9") - FIRST_PAGE_9("FirstPage9"), - @XmlEnumValue("FirstPage10") - FIRST_PAGE_10("FirstPage10"), - @XmlEnumValue("Aggregate") - AGGREGATE("Aggregate"); - private final String value; - - AdPosition(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdPosition fromValue(String v) { - for (AdPosition c: AdPosition.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Adapter1.java b/proxies/com/microsoft/bingads/v12/adinsight/Adapter1.java deleted file mode 100644 index 3f7220b511..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Adapter1.java +++ /dev/null @@ -1,23 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.Calendar; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter1 - extends XmlAdapter -{ - - - public Calendar unmarshal(String value) { - return (javax.xml.bind.DatatypeConverter.parseDateTime(value)); - } - - public String marshal(Calendar value) { - if (value == null) { - return null; - } - return (javax.xml.bind.DatatypeConverter.printDateTime(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Adapter2.java b/proxies/com/microsoft/bingads/v12/adinsight/Adapter2.java deleted file mode 100644 index 2ad9c150b7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Adapter2.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter2 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.adinsight.BidOpportunityTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.adinsight.BidOpportunityTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Adapter3.java b/proxies/com/microsoft/bingads/v12/adinsight/Adapter3.java deleted file mode 100644 index 1e046d0855..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Adapter3.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter3 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.adinsight.KeywordOpportunityTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.adinsight.KeywordOpportunityTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ApiFaultDetail.java b/proxies/com/microsoft/bingads/v12/adinsight/ApiFaultDetail.java deleted file mode 100644 index 847f0486da..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ApiFaultDetail.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ApiFaultDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ApiFaultDetail">
- *   <complexContent>
- *     <extension base="{https://adapi.microsoft.com}ApplicationFault">
- *       <sequence>
- *         <element name="BatchErrors" type="{https://bingads.microsoft.com/AdInsight/v12}ArrayOfBatchError" minOccurs="0"/>
- *         <element name="OperationErrors" type="{https://bingads.microsoft.com/AdInsight/v12}ArrayOfOperationError" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ApiFaultDetail", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", propOrder = { - "batchErrors", - "operationErrors" -}) -public class ApiFaultDetail - extends ApplicationFault -{ - - @XmlElement(name = "BatchErrors", nillable = true) - protected ArrayOfBatchError batchErrors; - @XmlElement(name = "OperationErrors", nillable = true) - protected ArrayOfOperationError operationErrors; - - /** - * Gets the value of the batchErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getBatchErrors() { - return batchErrors; - } - - /** - * Sets the value of the batchErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setBatchErrors(ArrayOfBatchError value) { - this.batchErrors = value; - } - - /** - * Gets the value of the operationErrors property. - * - * @return - * possible object is - * {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError getOperationErrors() { - return operationErrors; - } - - /** - * Sets the value of the operationErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfOperationError } - * - */ - public void setOperationErrors(ArrayOfOperationError value) { - this.operationErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ApiFaultDetail_Exception.java b/proxies/com/microsoft/bingads/v12/adinsight/ApiFaultDetail_Exception.java deleted file mode 100644 index 19857e246a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ApiFaultDetail_Exception.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebFault(name = "ApiFaultDetail", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class ApiFaultDetail_Exception - extends Exception -{ - - /** - * Java type that goes as soapenv:Fault detail element. - * - */ - private ApiFaultDetail faultInfo; - - /** - * - * @param faultInfo - * @param message - */ - public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo) { - super(message); - this.faultInfo = faultInfo; - } - - /** - * - * @param faultInfo - * @param cause - * @param message - */ - public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo, Throwable cause) { - super(message, cause); - this.faultInfo = faultInfo; - } - - /** - * - * @return - * returns fault bean: com.microsoft.bingads.v12.adinsight.ApiFaultDetail - */ - public ApiFaultDetail getFaultInfo() { - return faultInfo; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ApplicationFault.java b/proxies/com/microsoft/bingads/v12/adinsight/ApplicationFault.java deleted file mode 100644 index 4647078fe3..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ApplicationFault.java +++ /dev/null @@ -1,67 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ApplicationFault complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ApplicationFault">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="TrackingId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ApplicationFault", namespace = "https://adapi.microsoft.com", propOrder = { - "trackingId" -}) -@XmlSeeAlso({ - ApiFaultDetail.class, - AdApiFaultDetail.class -}) -public class ApplicationFault { - - @XmlElement(name = "TrackingId", nillable = true) - protected String trackingId; - - /** - * Gets the value of the trackingId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingId() { - return trackingId; - } - - /** - * Sets the value of the trackingId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingId(String value) { - this.trackingId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdApiError.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdApiError.java deleted file mode 100644 index 29c45aa2fa..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdApiError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdApiError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdApiError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdApiError" type="{https://adapi.microsoft.com}AdApiError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdApiError", namespace = "https://adapi.microsoft.com", propOrder = { - "adApiErrors" -}) -public class ArrayOfAdApiError { - - @XmlElement(name = "AdApiError", nillable = true) - protected List adApiErrors; - - /** - * Gets the value of the adApiErrors 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 JAXB object. - * This is why there is not a set method for the adApiErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdApiErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdApiError } - * - * - */ - public List getAdApiErrors() { - if (adApiErrors == null) { - adApiErrors = new ArrayList(); - } - return this.adApiErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupBidLandscape.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupBidLandscape.java deleted file mode 100644 index 85c301abae..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupBidLandscape.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupBidLandscape complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupBidLandscape">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupBidLandscape" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdGroupBidLandscape" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupBidLandscape", propOrder = { - "adGroupBidLandscapes" -}) -public class ArrayOfAdGroupBidLandscape { - - @XmlElement(name = "AdGroupBidLandscape", nillable = true) - protected List adGroupBidLandscapes; - - /** - * Gets the value of the adGroupBidLandscapes 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 JAXB object. - * This is why there is not a set method for the adGroupBidLandscapes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupBidLandscapes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupBidLandscape } - * - * - */ - public List getAdGroupBidLandscapes() { - if (adGroupBidLandscapes == null) { - adGroupBidLandscapes = new ArrayList(); - } - return this.adGroupBidLandscapes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupBidLandscapeInput.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupBidLandscapeInput.java deleted file mode 100644 index 0a9e87f887..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupBidLandscapeInput.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupBidLandscapeInput complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupBidLandscapeInput">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupBidLandscapeInput" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdGroupBidLandscapeInput" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupBidLandscapeInput", propOrder = { - "adGroupBidLandscapeInputs" -}) -public class ArrayOfAdGroupBidLandscapeInput { - - @XmlElement(name = "AdGroupBidLandscapeInput", nillable = true) - protected List adGroupBidLandscapeInputs; - - /** - * Gets the value of the adGroupBidLandscapeInputs 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 JAXB object. - * This is why there is not a set method for the adGroupBidLandscapeInputs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupBidLandscapeInputs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupBidLandscapeInput } - * - * - */ - public List getAdGroupBidLandscapeInputs() { - if (adGroupBidLandscapeInputs == null) { - adGroupBidLandscapeInputs = new ArrayList(); - } - return this.adGroupBidLandscapeInputs; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupEstimate.java deleted file mode 100644 index d7ac08bc20..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupEstimate.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupEstimate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdGroupEstimate" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupEstimate", propOrder = { - "adGroupEstimates" -}) -public class ArrayOfAdGroupEstimate { - - @XmlElement(name = "AdGroupEstimate", nillable = true) - protected List adGroupEstimates; - - /** - * Gets the value of the adGroupEstimates 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 JAXB object. - * This is why there is not a set method for the adGroupEstimates property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupEstimates().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupEstimate } - * - * - */ - public List getAdGroupEstimates() { - if (adGroupEstimates == null) { - adGroupEstimates = new ArrayList(); - } - return this.adGroupEstimates; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupEstimator.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupEstimator.java deleted file mode 100644 index c666f842ff..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAdGroupEstimator.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupEstimator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupEstimator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupEstimator" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdGroupEstimator" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupEstimator", propOrder = { - "adGroupEstimators" -}) -public class ArrayOfAdGroupEstimator { - - @XmlElement(name = "AdGroupEstimator", nillable = true) - protected List adGroupEstimators; - - /** - * Gets the value of the adGroupEstimators 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 JAXB object. - * This is why there is not a set method for the adGroupEstimators property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupEstimators().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupEstimator } - * - * - */ - public List getAdGroupEstimators() { - if (adGroupEstimators == null) { - adGroupEstimators = new ArrayList(); - } - return this.adGroupEstimators; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionInsightEntry.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionInsightEntry.java deleted file mode 100644 index 0677fb4a1a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionInsightEntry.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAuctionInsightEntry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAuctionInsightEntry">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AuctionInsightEntry" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AuctionInsightEntry" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAuctionInsightEntry", propOrder = { - "auctionInsightEntries" -}) -public class ArrayOfAuctionInsightEntry { - - @XmlElement(name = "AuctionInsightEntry", nillable = true) - protected List auctionInsightEntries; - - /** - * Gets the value of the auctionInsightEntries 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 JAXB object. - * This is why there is not a set method for the auctionInsightEntries property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuctionInsightEntries().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AuctionInsightEntry } - * - * - */ - public List getAuctionInsightEntries() { - if (auctionInsightEntries == null) { - auctionInsightEntries = new ArrayList(); - } - return this.auctionInsightEntries; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionInsightKpi.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionInsightKpi.java deleted file mode 100644 index 9972169a9f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionInsightKpi.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAuctionInsightKpi complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAuctionInsightKpi">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AuctionInsightKpi" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AuctionInsightKpi" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAuctionInsightKpi", propOrder = { - "auctionInsightKpis" -}) -public class ArrayOfAuctionInsightKpi { - - @XmlElement(name = "AuctionInsightKpi", nillable = true) - protected List auctionInsightKpis; - - /** - * Gets the value of the auctionInsightKpis 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 JAXB object. - * This is why there is not a set method for the auctionInsightKpis property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuctionInsightKpis().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AuctionInsightKpi } - * - * - */ - public List getAuctionInsightKpis() { - if (auctionInsightKpis == null) { - auctionInsightKpis = new ArrayList(); - } - return this.auctionInsightKpis; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionSegment.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionSegment.java deleted file mode 100644 index 58087faa3e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfAuctionSegment.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAuctionSegment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAuctionSegment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AuctionSegment" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AuctionSegment" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAuctionSegment", propOrder = { - "auctionSegments" -}) -public class ArrayOfAuctionSegment { - - @XmlElement(name = "AuctionSegment") - @XmlSchemaType(name = "string") - protected List auctionSegments; - - /** - * Gets the value of the auctionSegments 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 JAXB object. - * This is why there is not a set method for the auctionSegments property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAuctionSegments().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AuctionSegment } - * - * - */ - public List getAuctionSegments() { - if (auctionSegments == null) { - auctionSegments = new ArrayList(); - } - return this.auctionSegments; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBatchError.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBatchError.java deleted file mode 100644 index 36efb7d0a5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBatchError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBatchError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBatchError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BatchError" type="{https://bingads.microsoft.com/AdInsight/v12}BatchError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBatchError", namespace = "https://bingads.microsoft.com/AdInsight/v12", propOrder = { - "batchErrors" -}) -public class ArrayOfBatchError { - - @XmlElement(name = "BatchError", nillable = true) - protected List batchErrors; - - /** - * Gets the value of the batchErrors 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 JAXB object. - * This is why there is not a set method for the batchErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBatchErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BatchError } - * - * - */ - public List getBatchErrors() { - if (batchErrors == null) { - batchErrors = new ArrayList(); - } - return this.batchErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBidLandscapePoint.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBidLandscapePoint.java deleted file mode 100644 index 7f3f10fdca..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBidLandscapePoint.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBidLandscapePoint complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBidLandscapePoint">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BidLandscapePoint" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BidLandscapePoint" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBidLandscapePoint", propOrder = { - "bidLandscapePoints" -}) -public class ArrayOfBidLandscapePoint { - - @XmlElement(name = "BidLandscapePoint", nillable = true) - protected List bidLandscapePoints; - - /** - * Gets the value of the bidLandscapePoints 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 JAXB object. - * This is why there is not a set method for the bidLandscapePoints property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBidLandscapePoints().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BidLandscapePoint } - * - * - */ - public List getBidLandscapePoints() { - if (bidLandscapePoints == null) { - bidLandscapePoints = new ArrayList(); - } - return this.bidLandscapePoints; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBidOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBidOpportunity.java deleted file mode 100644 index bce4e90db4..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBidOpportunity.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBidOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBidOpportunity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BidOpportunity" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BidOpportunity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBidOpportunity", propOrder = { - "bidOpportunities" -}) -public class ArrayOfBidOpportunity { - - @XmlElement(name = "BidOpportunity", nillable = true) - protected List bidOpportunities; - - /** - * Gets the value of the bidOpportunities 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 JAXB object. - * This is why there is not a set method for the bidOpportunities property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBidOpportunities().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BidOpportunity } - * - * - */ - public List getBidOpportunities() { - if (bidOpportunities == null) { - bidOpportunities = new ArrayList(); - } - return this.bidOpportunities; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBroadMatchSearchQueryKPI.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBroadMatchSearchQueryKPI.java deleted file mode 100644 index 9cec925d1e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBroadMatchSearchQueryKPI.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBroadMatchSearchQueryKPI complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBroadMatchSearchQueryKPI">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BroadMatchSearchQueryKPI" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BroadMatchSearchQueryKPI" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBroadMatchSearchQueryKPI", propOrder = { - "broadMatchSearchQueryKPIs" -}) -public class ArrayOfBroadMatchSearchQueryKPI { - - @XmlElement(name = "BroadMatchSearchQueryKPI", nillable = true) - protected List broadMatchSearchQueryKPIs; - - /** - * Gets the value of the broadMatchSearchQueryKPIs 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 JAXB object. - * This is why there is not a set method for the broadMatchSearchQueryKPIs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBroadMatchSearchQueryKPIs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BroadMatchSearchQueryKPI } - * - * - */ - public List getBroadMatchSearchQueryKPIs() { - if (broadMatchSearchQueryKPIs == null) { - broadMatchSearchQueryKPIs = new ArrayList(); - } - return this.broadMatchSearchQueryKPIs; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBudgetOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBudgetOpportunity.java deleted file mode 100644 index 8dc8592efa..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBudgetOpportunity.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBudgetOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBudgetOpportunity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BudgetOpportunity" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BudgetOpportunity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBudgetOpportunity", propOrder = { - "budgetOpportunities" -}) -public class ArrayOfBudgetOpportunity { - - @XmlElement(name = "BudgetOpportunity", nillable = true) - protected List budgetOpportunities; - - /** - * Gets the value of the budgetOpportunities 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 JAXB object. - * This is why there is not a set method for the budgetOpportunities property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBudgetOpportunities().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BudgetOpportunity } - * - * - */ - public List getBudgetOpportunities() { - if (budgetOpportunities == null) { - budgetOpportunities = new ArrayList(); - } - return this.budgetOpportunities; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBudgetPoint.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBudgetPoint.java deleted file mode 100644 index 1b256c321b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfBudgetPoint.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBudgetPoint complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBudgetPoint">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BudgetPoint" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BudgetPoint" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBudgetPoint", propOrder = { - "budgetPoints" -}) -public class ArrayOfBudgetPoint { - - @XmlElement(name = "BudgetPoint", nillable = true) - protected List budgetPoints; - - /** - * Gets the value of the budgetPoints 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 JAXB object. - * This is why there is not a set method for the budgetPoints property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBudgetPoints().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BudgetPoint } - * - * - */ - public List getBudgetPoints() { - if (budgetPoints == null) { - budgetPoints = new ArrayList(); - } - return this.budgetPoints; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCampaignEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCampaignEstimate.java deleted file mode 100644 index f424353f02..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCampaignEstimate.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaignEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaignEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignEstimate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CampaignEstimate" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaignEstimate", propOrder = { - "campaignEstimates" -}) -public class ArrayOfCampaignEstimate { - - @XmlElement(name = "CampaignEstimate", nillable = true) - protected List campaignEstimates; - - /** - * Gets the value of the campaignEstimates 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 JAXB object. - * This is why there is not a set method for the campaignEstimates property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaignEstimates().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CampaignEstimate } - * - * - */ - public List getCampaignEstimates() { - if (campaignEstimates == null) { - campaignEstimates = new ArrayList(); - } - return this.campaignEstimates; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCampaignEstimator.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCampaignEstimator.java deleted file mode 100644 index c093713650..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCampaignEstimator.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaignEstimator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaignEstimator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignEstimator" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CampaignEstimator" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaignEstimator", propOrder = { - "campaignEstimators" -}) -public class ArrayOfCampaignEstimator { - - @XmlElement(name = "CampaignEstimator", nillable = true) - protected List campaignEstimators; - - /** - * Gets the value of the campaignEstimators 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 JAXB object. - * This is why there is not a set method for the campaignEstimators property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaignEstimators().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CampaignEstimator } - * - * - */ - public List getCampaignEstimators() { - if (campaignEstimators == null) { - campaignEstimators = new ArrayList(); - } - return this.campaignEstimators; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCompetitionLevel.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCompetitionLevel.java deleted file mode 100644 index 5f3a679378..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCompetitionLevel.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCompetitionLevel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCompetitionLevel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CompetitionLevel" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}CompetitionLevel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCompetitionLevel", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", propOrder = { - "competitionLevels" -}) -public class ArrayOfCompetitionLevel { - - @XmlElement(name = "CompetitionLevel") - @XmlSchemaType(name = "string") - protected List competitionLevels; - - /** - * Gets the value of the competitionLevels 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 JAXB object. - * This is why there is not a set method for the competitionLevels property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCompetitionLevels().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CompetitionLevel } - * - * - */ - public List getCompetitionLevels() { - if (competitionLevels == null) { - competitionLevels = new ArrayList(); - } - return this.competitionLevels; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCriterion.java deleted file mode 100644 index 12153b2310..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfCriterion.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCriterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Criterion" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}Criterion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "criterions" -}) -public class ArrayOfCriterion { - - @XmlElement(name = "Criterion", nillable = true) - protected List criterions; - - /** - * Gets the value of the criterions 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 JAXB object. - * This is why there is not a set method for the criterions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCriterions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Criterion } - * - * - */ - public List getCriterions() { - if (criterions == null) { - criterions = new ArrayList(); - } - return this.criterions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfDomainCategory.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfDomainCategory.java deleted file mode 100644 index b2c89c7eda..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfDomainCategory.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfDomainCategory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfDomainCategory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DomainCategory" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DomainCategory" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfDomainCategory", propOrder = { - "domainCategories" -}) -public class ArrayOfDomainCategory { - - @XmlElement(name = "DomainCategory", nillable = true) - protected List domainCategories; - - /** - * Gets the value of the domainCategories 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 JAXB object. - * This is why there is not a set method for the domainCategories property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDomainCategories().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DomainCategory } - * - * - */ - public List getDomainCategories() { - if (domainCategories == null) { - domainCategories = new ArrayList(); - } - return this.domainCategories; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfEstimatedBidAndTraffic.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfEstimatedBidAndTraffic.java deleted file mode 100644 index ca293492b4..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfEstimatedBidAndTraffic.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEstimatedBidAndTraffic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEstimatedBidAndTraffic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EstimatedBidAndTraffic" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}EstimatedBidAndTraffic" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEstimatedBidAndTraffic", propOrder = { - "estimatedBidAndTraffics" -}) -public class ArrayOfEstimatedBidAndTraffic { - - @XmlElement(name = "EstimatedBidAndTraffic", nillable = true) - protected List estimatedBidAndTraffics; - - /** - * Gets the value of the estimatedBidAndTraffics 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 JAXB object. - * This is why there is not a set method for the estimatedBidAndTraffics property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEstimatedBidAndTraffics().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EstimatedBidAndTraffic } - * - * - */ - public List getEstimatedBidAndTraffics() { - if (estimatedBidAndTraffics == null) { - estimatedBidAndTraffics = new ArrayList(); - } - return this.estimatedBidAndTraffics; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfEstimatedPositionAndTraffic.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfEstimatedPositionAndTraffic.java deleted file mode 100644 index cf24d5f205..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfEstimatedPositionAndTraffic.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEstimatedPositionAndTraffic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEstimatedPositionAndTraffic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EstimatedPositionAndTraffic" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}EstimatedPositionAndTraffic" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEstimatedPositionAndTraffic", propOrder = { - "estimatedPositionAndTraffics" -}) -public class ArrayOfEstimatedPositionAndTraffic { - - @XmlElement(name = "EstimatedPositionAndTraffic", nillable = true) - protected List estimatedPositionAndTraffics; - - /** - * Gets the value of the estimatedPositionAndTraffics 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 JAXB object. - * This is why there is not a set method for the estimatedPositionAndTraffics property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEstimatedPositionAndTraffics().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EstimatedPositionAndTraffic } - * - * - */ - public List getEstimatedPositionAndTraffics() { - if (estimatedPositionAndTraffics == null) { - estimatedPositionAndTraffics = new ArrayList(); - } - return this.estimatedPositionAndTraffics; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfHistoricalSearchCountPeriodic.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfHistoricalSearchCountPeriodic.java deleted file mode 100644 index ce81b5fcbb..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfHistoricalSearchCountPeriodic.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfHistoricalSearchCountPeriodic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfHistoricalSearchCountPeriodic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="HistoricalSearchCountPeriodic" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}HistoricalSearchCountPeriodic" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfHistoricalSearchCountPeriodic", propOrder = { - "historicalSearchCountPeriodics" -}) -public class ArrayOfHistoricalSearchCountPeriodic { - - @XmlElement(name = "HistoricalSearchCountPeriodic", nillable = true) - protected List historicalSearchCountPeriodics; - - /** - * Gets the value of the historicalSearchCountPeriodics 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 JAXB object. - * This is why there is not a set method for the historicalSearchCountPeriodics property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHistoricalSearchCountPeriodics().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HistoricalSearchCountPeriodic } - * - * - */ - public List getHistoricalSearchCountPeriodics() { - if (historicalSearchCountPeriodics == null) { - historicalSearchCountPeriodics = new ArrayList(); - } - return this.historicalSearchCountPeriodics; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeyword.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeyword.java deleted file mode 100644 index 7e624adebd..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeyword.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeyword complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeyword">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}Keyword" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeyword", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", propOrder = { - "keywords" -}) -public class ArrayOfKeyword { - - @XmlElement(name = "Keyword", nillable = true) - protected List keywords; - - /** - * Gets the value of the keywords 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 JAXB object. - * This is why there is not a set method for the keywords property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywords().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Keyword } - * - * - */ - public List getKeywords() { - if (keywords == null) { - keywords = new ArrayList(); - } - return this.keywords; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordAndConfidence.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordAndConfidence.java deleted file mode 100644 index a6b531a698..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordAndConfidence.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordAndConfidence complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordAndConfidence">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordAndConfidence" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordAndConfidence" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordAndConfidence", propOrder = { - "keywordAndConfidences" -}) -public class ArrayOfKeywordAndConfidence { - - @XmlElement(name = "KeywordAndConfidence", nillable = true) - protected List keywordAndConfidences; - - /** - * Gets the value of the keywordAndConfidences 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 JAXB object. - * This is why there is not a set method for the keywordAndConfidences property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordAndConfidences().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordAndConfidence } - * - * - */ - public List getKeywordAndConfidences() { - if (keywordAndConfidences == null) { - keywordAndConfidences = new ArrayList(); - } - return this.keywordAndConfidences; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordAndMatchType.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordAndMatchType.java deleted file mode 100644 index 9cf4e59c37..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordAndMatchType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordAndMatchType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordAndMatchType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordAndMatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message}KeywordAndMatchType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordAndMatchType", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message", propOrder = { - "keywordAndMatchTypes" -}) -public class ArrayOfKeywordAndMatchType { - - @XmlElement(name = "KeywordAndMatchType", nillable = true) - protected List keywordAndMatchTypes; - - /** - * Gets the value of the keywordAndMatchTypes 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 JAXB object. - * This is why there is not a set method for the keywordAndMatchTypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordAndMatchTypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordAndMatchType } - * - * - */ - public List getKeywordAndMatchTypes() { - if (keywordAndMatchTypes == null) { - keywordAndMatchTypes = new ArrayList(); - } - return this.keywordAndMatchTypes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordBidLandscape.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordBidLandscape.java deleted file mode 100644 index 15f43e9950..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordBidLandscape.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordBidLandscape complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordBidLandscape">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordBidLandscape" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordBidLandscape" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordBidLandscape", propOrder = { - "keywordBidLandscapes" -}) -public class ArrayOfKeywordBidLandscape { - - @XmlElement(name = "KeywordBidLandscape", nillable = true) - protected List keywordBidLandscapes; - - /** - * Gets the value of the keywordBidLandscapes 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 JAXB object. - * This is why there is not a set method for the keywordBidLandscapes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordBidLandscapes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordBidLandscape } - * - * - */ - public List getKeywordBidLandscapes() { - if (keywordBidLandscapes == null) { - keywordBidLandscapes = new ArrayList(); - } - return this.keywordBidLandscapes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordCategory.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordCategory.java deleted file mode 100644 index 633ab3783e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordCategory.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordCategory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordCategory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordCategory" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordCategory" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordCategory", propOrder = { - "keywordCategories" -}) -public class ArrayOfKeywordCategory { - - @XmlElement(name = "KeywordCategory", nillable = true) - protected List keywordCategories; - - /** - * Gets the value of the keywordCategories 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 JAXB object. - * This is why there is not a set method for the keywordCategories property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordCategories().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordCategory } - * - * - */ - public List getKeywordCategories() { - if (keywordCategories == null) { - keywordCategories = new ArrayList(); - } - return this.keywordCategories; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordCategoryResult.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordCategoryResult.java deleted file mode 100644 index b2eaf52fd4..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordCategoryResult.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordCategoryResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordCategoryResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordCategoryResult" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordCategoryResult" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordCategoryResult", propOrder = { - "keywordCategoryResults" -}) -public class ArrayOfKeywordCategoryResult { - - @XmlElement(name = "KeywordCategoryResult", nillable = true) - protected List keywordCategoryResults; - - /** - * Gets the value of the keywordCategoryResults 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 JAXB object. - * This is why there is not a set method for the keywordCategoryResults property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordCategoryResults().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordCategoryResult } - * - * - */ - public List getKeywordCategoryResults() { - if (keywordCategoryResults == null) { - keywordCategoryResults = new ArrayList(); - } - return this.keywordCategoryResults; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordDemographic.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordDemographic.java deleted file mode 100644 index e79912ad7b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordDemographic.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordDemographic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordDemographic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordDemographic" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordDemographic" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordDemographic", propOrder = { - "keywordDemographics" -}) -public class ArrayOfKeywordDemographic { - - @XmlElement(name = "KeywordDemographic", nillable = true) - protected List keywordDemographics; - - /** - * Gets the value of the keywordDemographics 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 JAXB object. - * This is why there is not a set method for the keywordDemographics property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordDemographics().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordDemographic } - * - * - */ - public List getKeywordDemographics() { - if (keywordDemographics == null) { - keywordDemographics = new ArrayList(); - } - return this.keywordDemographics; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordDemographicResult.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordDemographicResult.java deleted file mode 100644 index 6f80bbb9bb..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordDemographicResult.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordDemographicResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordDemographicResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordDemographicResult" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordDemographicResult" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordDemographicResult", propOrder = { - "keywordDemographicResults" -}) -public class ArrayOfKeywordDemographicResult { - - @XmlElement(name = "KeywordDemographicResult", nillable = true) - protected List keywordDemographicResults; - - /** - * Gets the value of the keywordDemographicResults 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 JAXB object. - * This is why there is not a set method for the keywordDemographicResults property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordDemographicResults().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordDemographicResult } - * - * - */ - public List getKeywordDemographicResults() { - if (keywordDemographicResults == null) { - keywordDemographicResults = new ArrayList(); - } - return this.keywordDemographicResults; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimate.java deleted file mode 100644 index aa90274580..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimate.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordEstimate" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordEstimate", propOrder = { - "keywordEstimates" -}) -public class ArrayOfKeywordEstimate { - - @XmlElement(name = "KeywordEstimate", nillable = true) - protected List keywordEstimates; - - /** - * Gets the value of the keywordEstimates 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 JAXB object. - * This is why there is not a set method for the keywordEstimates property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordEstimates().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordEstimate } - * - * - */ - public List getKeywordEstimates() { - if (keywordEstimates == null) { - keywordEstimates = new ArrayList(); - } - return this.keywordEstimates; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimatedBid.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimatedBid.java deleted file mode 100644 index ee81e9d436..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimatedBid.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordEstimatedBid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordEstimatedBid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimatedBid" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordEstimatedBid" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordEstimatedBid", propOrder = { - "keywordEstimatedBids" -}) -public class ArrayOfKeywordEstimatedBid { - - @XmlElement(name = "KeywordEstimatedBid", nillable = true) - protected List keywordEstimatedBids; - - /** - * Gets the value of the keywordEstimatedBids 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 JAXB object. - * This is why there is not a set method for the keywordEstimatedBids property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordEstimatedBids().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordEstimatedBid } - * - * - */ - public List getKeywordEstimatedBids() { - if (keywordEstimatedBids == null) { - keywordEstimatedBids = new ArrayList(); - } - return this.keywordEstimatedBids; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimatedPosition.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimatedPosition.java deleted file mode 100644 index 6344635672..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimatedPosition.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordEstimatedPosition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordEstimatedPosition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimatedPosition" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordEstimatedPosition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordEstimatedPosition", propOrder = { - "keywordEstimatedPositions" -}) -public class ArrayOfKeywordEstimatedPosition { - - @XmlElement(name = "KeywordEstimatedPosition", nillable = true) - protected List keywordEstimatedPositions; - - /** - * Gets the value of the keywordEstimatedPositions 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 JAXB object. - * This is why there is not a set method for the keywordEstimatedPositions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordEstimatedPositions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordEstimatedPosition } - * - * - */ - public List getKeywordEstimatedPositions() { - if (keywordEstimatedPositions == null) { - keywordEstimatedPositions = new ArrayList(); - } - return this.keywordEstimatedPositions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimator.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimator.java deleted file mode 100644 index 60a71e8423..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordEstimator.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordEstimator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordEstimator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimator" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordEstimator" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordEstimator", propOrder = { - "keywordEstimators" -}) -public class ArrayOfKeywordEstimator { - - @XmlElement(name = "KeywordEstimator", nillable = true) - protected List keywordEstimators; - - /** - * Gets the value of the keywordEstimators 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 JAXB object. - * This is why there is not a set method for the keywordEstimators property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordEstimators().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordEstimator } - * - * - */ - public List getKeywordEstimators() { - if (keywordEstimators == null) { - keywordEstimators = new ArrayList(); - } - return this.keywordEstimators; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordHistoricalPerformance.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordHistoricalPerformance.java deleted file mode 100644 index ba12037186..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordHistoricalPerformance.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordHistoricalPerformance complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordHistoricalPerformance">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordHistoricalPerformance" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordHistoricalPerformance" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordHistoricalPerformance", propOrder = { - "keywordHistoricalPerformances" -}) -public class ArrayOfKeywordHistoricalPerformance { - - @XmlElement(name = "KeywordHistoricalPerformance", nillable = true) - protected List keywordHistoricalPerformances; - - /** - * Gets the value of the keywordHistoricalPerformances 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 JAXB object. - * This is why there is not a set method for the keywordHistoricalPerformances property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordHistoricalPerformances().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordHistoricalPerformance } - * - * - */ - public List getKeywordHistoricalPerformances() { - if (keywordHistoricalPerformances == null) { - keywordHistoricalPerformances = new ArrayList(); - } - return this.keywordHistoricalPerformances; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdEstimatedBid.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdEstimatedBid.java deleted file mode 100644 index e9ad9d6d92..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdEstimatedBid.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordIdEstimatedBid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordIdEstimatedBid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdEstimatedBid" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordIdEstimatedBid" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordIdEstimatedBid", propOrder = { - "keywordIdEstimatedBids" -}) -public class ArrayOfKeywordIdEstimatedBid { - - @XmlElement(name = "KeywordIdEstimatedBid", nillable = true) - protected List keywordIdEstimatedBids; - - /** - * Gets the value of the keywordIdEstimatedBids 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 JAXB object. - * This is why there is not a set method for the keywordIdEstimatedBids property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordIdEstimatedBids().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordIdEstimatedBid } - * - * - */ - public List getKeywordIdEstimatedBids() { - if (keywordIdEstimatedBids == null) { - keywordIdEstimatedBids = new ArrayList(); - } - return this.keywordIdEstimatedBids; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdEstimatedPosition.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdEstimatedPosition.java deleted file mode 100644 index 097c9fcc3c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdEstimatedPosition.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordIdEstimatedPosition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordIdEstimatedPosition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdEstimatedPosition" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordIdEstimatedPosition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordIdEstimatedPosition", propOrder = { - "keywordIdEstimatedPositions" -}) -public class ArrayOfKeywordIdEstimatedPosition { - - @XmlElement(name = "KeywordIdEstimatedPosition", nillable = true) - protected List keywordIdEstimatedPositions; - - /** - * Gets the value of the keywordIdEstimatedPositions 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 JAXB object. - * This is why there is not a set method for the keywordIdEstimatedPositions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordIdEstimatedPositions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordIdEstimatedPosition } - * - * - */ - public List getKeywordIdEstimatedPositions() { - if (keywordIdEstimatedPositions == null) { - keywordIdEstimatedPositions = new ArrayList(); - } - return this.keywordIdEstimatedPositions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdea.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdea.java deleted file mode 100644 index b14abd5ba1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdea.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordIdea complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordIdea">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdea" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordIdea" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordIdea", propOrder = { - "keywordIdeas" -}) -public class ArrayOfKeywordIdea { - - @XmlElement(name = "KeywordIdea", nillable = true) - protected List keywordIdeas; - - /** - * Gets the value of the keywordIdeas 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 JAXB object. - * This is why there is not a set method for the keywordIdeas property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordIdeas().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordIdea } - * - * - */ - public List getKeywordIdeas() { - if (keywordIdeas == null) { - keywordIdeas = new ArrayList(); - } - return this.keywordIdeas; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdeaAttribute.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdeaAttribute.java deleted file mode 100644 index bc34337fd8..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdeaAttribute.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordIdeaAttribute complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordIdeaAttribute">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdeaAttribute" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}KeywordIdeaAttribute" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordIdeaAttribute", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", propOrder = { - "keywordIdeaAttributes" -}) -public class ArrayOfKeywordIdeaAttribute { - - @XmlElement(name = "KeywordIdeaAttribute") - @XmlSchemaType(name = "string") - protected List keywordIdeaAttributes; - - /** - * Gets the value of the keywordIdeaAttributes 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 JAXB object. - * This is why there is not a set method for the keywordIdeaAttributes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordIdeaAttributes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordIdeaAttribute } - * - * - */ - public List getKeywordIdeaAttributes() { - if (keywordIdeaAttributes == null) { - keywordIdeaAttributes = new ArrayList(); - } - return this.keywordIdeaAttributes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdeaCategory.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdeaCategory.java deleted file mode 100644 index 9fe4baf0ea..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordIdeaCategory.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordIdeaCategory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordIdeaCategory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdeaCategory" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordIdeaCategory" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordIdeaCategory", propOrder = { - "keywordIdeaCategories" -}) -public class ArrayOfKeywordIdeaCategory { - - @XmlElement(name = "KeywordIdeaCategory", nillable = true) - protected List keywordIdeaCategories; - - /** - * Gets the value of the keywordIdeaCategories 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 JAXB object. - * This is why there is not a set method for the keywordIdeaCategories property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordIdeaCategories().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordIdeaCategory } - * - * - */ - public List getKeywordIdeaCategories() { - if (keywordIdeaCategories == null) { - keywordIdeaCategories = new ArrayList(); - } - return this.keywordIdeaCategories; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordKPI.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordKPI.java deleted file mode 100644 index 970f1e4986..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordKPI.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordKPI complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordKPI">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordKPI" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordKPI" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordKPI", propOrder = { - "keywordKPIs" -}) -public class ArrayOfKeywordKPI { - - @XmlElement(name = "KeywordKPI", nillable = true) - protected List keywordKPIs; - - /** - * Gets the value of the keywordKPIs 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 JAXB object. - * This is why there is not a set method for the keywordKPIs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordKPIs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordKPI } - * - * - */ - public List getKeywordKPIs() { - if (keywordKPIs == null) { - keywordKPIs = new ArrayList(); - } - return this.keywordKPIs; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordLocation.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordLocation.java deleted file mode 100644 index 6e8d186a5f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordLocation.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordLocation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordLocation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordLocation" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordLocation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordLocation", propOrder = { - "keywordLocations" -}) -public class ArrayOfKeywordLocation { - - @XmlElement(name = "KeywordLocation", nillable = true) - protected List keywordLocations; - - /** - * Gets the value of the keywordLocations 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 JAXB object. - * This is why there is not a set method for the keywordLocations property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordLocations().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordLocation } - * - * - */ - public List getKeywordLocations() { - if (keywordLocations == null) { - keywordLocations = new ArrayList(); - } - return this.keywordLocations; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordLocationResult.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordLocationResult.java deleted file mode 100644 index c9ad9ad4be..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordLocationResult.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordLocationResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordLocationResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordLocationResult" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordLocationResult" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordLocationResult", propOrder = { - "keywordLocationResults" -}) -public class ArrayOfKeywordLocationResult { - - @XmlElement(name = "KeywordLocationResult", nillable = true) - protected List keywordLocationResults; - - /** - * Gets the value of the keywordLocationResults 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 JAXB object. - * This is why there is not a set method for the keywordLocationResults property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordLocationResults().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordLocationResult } - * - * - */ - public List getKeywordLocationResults() { - if (keywordLocationResults == null) { - keywordLocationResults = new ArrayList(); - } - return this.keywordLocationResults; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordOpportunity.java deleted file mode 100644 index e4035fc8d2..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordOpportunity.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordOpportunity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordOpportunity" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordOpportunity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordOpportunity", propOrder = { - "keywordOpportunities" -}) -public class ArrayOfKeywordOpportunity { - - @XmlElement(name = "KeywordOpportunity", nillable = true) - protected List keywordOpportunities; - - /** - * Gets the value of the keywordOpportunities 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 JAXB object. - * This is why there is not a set method for the keywordOpportunities property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordOpportunities().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordOpportunity } - * - * - */ - public List getKeywordOpportunities() { - if (keywordOpportunities == null) { - keywordOpportunities = new ArrayList(); - } - return this.keywordOpportunities; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordSearchCount.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordSearchCount.java deleted file mode 100644 index 46d1cded1a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordSearchCount.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordSearchCount complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordSearchCount">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordSearchCount" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordSearchCount" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordSearchCount", propOrder = { - "keywordSearchCounts" -}) -public class ArrayOfKeywordSearchCount { - - @XmlElement(name = "KeywordSearchCount", nillable = true) - protected List keywordSearchCounts; - - /** - * Gets the value of the keywordSearchCounts 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 JAXB object. - * This is why there is not a set method for the keywordSearchCounts property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordSearchCounts().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordSearchCount } - * - * - */ - public List getKeywordSearchCounts() { - if (keywordSearchCounts == null) { - keywordSearchCounts = new ArrayList(); - } - return this.keywordSearchCounts; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordSuggestion.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordSuggestion.java deleted file mode 100644 index 353be94e0e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfKeywordSuggestion.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeywordSuggestion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeywordSuggestion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordSuggestion" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordSuggestion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeywordSuggestion", propOrder = { - "keywordSuggestions" -}) -public class ArrayOfKeywordSuggestion { - - @XmlElement(name = "KeywordSuggestion", nillable = true) - protected List keywordSuggestions; - - /** - * Gets the value of the keywordSuggestions 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 JAXB object. - * This is why there is not a set method for the keywordSuggestions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywordSuggestions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeywordSuggestion } - * - * - */ - public List getKeywordSuggestions() { - if (keywordSuggestions == null) { - keywordSuggestions = new ArrayList(); - } - return this.keywordSuggestions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfLanguageCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfLanguageCriterion.java deleted file mode 100644 index a5aeced201..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfLanguageCriterion.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfLanguageCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfLanguageCriterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LanguageCriterion" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}LanguageCriterion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfLanguageCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "languageCriterions" -}) -public class ArrayOfLanguageCriterion { - - @XmlElement(name = "LanguageCriterion", nillable = true) - protected List languageCriterions; - - /** - * Gets the value of the languageCriterions 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 JAXB object. - * This is why there is not a set method for the languageCriterions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLanguageCriterions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LanguageCriterion } - * - * - */ - public List getLanguageCriterions() { - if (languageCriterions == null) { - languageCriterions = new ArrayList(); - } - return this.languageCriterions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfLocationCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfLocationCriterion.java deleted file mode 100644 index e5c92eb3a0..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfLocationCriterion.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfLocationCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfLocationCriterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LocationCriterion" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}LocationCriterion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfLocationCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "locationCriterions" -}) -public class ArrayOfLocationCriterion { - - @XmlElement(name = "LocationCriterion", nillable = true) - protected List locationCriterions; - - /** - * Gets the value of the locationCriterions 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 JAXB object. - * This is why there is not a set method for the locationCriterions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLocationCriterions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LocationCriterion } - * - * - */ - public List getLocationCriterions() { - if (locationCriterions == null) { - locationCriterions = new ArrayList(); - } - return this.locationCriterions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfMatchType.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfMatchType.java deleted file mode 100644 index e5e1d52d45..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfMatchType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfMatchType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfMatchType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MatchType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfMatchType", propOrder = { - "matchTypes" -}) -public class ArrayOfMatchType { - - @XmlElement(name = "MatchType") - @XmlSchemaType(name = "string") - protected List matchTypes; - - /** - * Gets the value of the matchTypes 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 JAXB object. - * This is why there is not a set method for the matchTypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMatchTypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MatchType } - * - * - */ - public List getMatchTypes() { - if (matchTypes == null) { - matchTypes = new ArrayList(); - } - return this.matchTypes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfMetricData.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfMetricData.java deleted file mode 100644 index c214b7028c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfMetricData.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfMetricData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfMetricData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MetricData" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MetricData" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfMetricData", propOrder = { - "metricDatas" -}) -public class ArrayOfMetricData { - - @XmlElement(name = "MetricData", nillable = true) - protected List metricDatas; - - /** - * Gets the value of the metricDatas 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 JAXB object. - * This is why there is not a set method for the metricDatas property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMetricDatas().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetricData } - * - * - */ - public List getMetricDatas() { - if (metricDatas == null) { - metricDatas = new ArrayList(); - } - return this.metricDatas; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfNegativeKeyword.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfNegativeKeyword.java deleted file mode 100644 index 9528abd1da..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfNegativeKeyword.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfNegativeKeyword complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfNegativeKeyword">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NegativeKeyword" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}NegativeKeyword" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfNegativeKeyword", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", propOrder = { - "negativeKeywords" -}) -public class ArrayOfNegativeKeyword { - - @XmlElement(name = "NegativeKeyword", nillable = true) - protected List negativeKeywords; - - /** - * Gets the value of the negativeKeywords 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 JAXB object. - * This is why there is not a set method for the negativeKeywords property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNegativeKeywords().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NegativeKeyword } - * - * - */ - public List getNegativeKeywords() { - if (negativeKeywords == null) { - negativeKeywords = new ArrayList(); - } - return this.negativeKeywords; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfOperationError.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfOperationError.java deleted file mode 100644 index f65a137f05..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfOperationError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfOperationError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfOperationError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OperationError" type="{https://bingads.microsoft.com/AdInsight/v12}OperationError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfOperationError", namespace = "https://bingads.microsoft.com/AdInsight/v12", propOrder = { - "operationErrors" -}) -public class ArrayOfOperationError { - - @XmlElement(name = "OperationError", nillable = true) - protected List operationErrors; - - /** - * Gets the value of the operationErrors 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 JAXB object. - * This is why there is not a set method for the operationErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOperationErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OperationError } - * - * - */ - public List getOperationErrors() { - if (operationErrors == null) { - operationErrors = new ArrayList(); - } - return this.operationErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfSearchCountsByAttributes.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfSearchCountsByAttributes.java deleted file mode 100644 index 9f38b29bb1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfSearchCountsByAttributes.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfSearchCountsByAttributes complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfSearchCountsByAttributes">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SearchCountsByAttributes" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}SearchCountsByAttributes" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfSearchCountsByAttributes", propOrder = { - "searchCountsByAttributes" -}) -public class ArrayOfSearchCountsByAttributes { - - @XmlElement(name = "SearchCountsByAttributes", nillable = true) - protected List searchCountsByAttributes; - - /** - * Gets the value of the searchCountsByAttributes 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 JAXB object. - * This is why there is not a set method for the searchCountsByAttributes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSearchCountsByAttributes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SearchCountsByAttributes } - * - * - */ - public List getSearchCountsByAttributes() { - if (searchCountsByAttributes == null) { - searchCountsByAttributes = new ArrayList(); - } - return this.searchCountsByAttributes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfSearchParameter.java deleted file mode 100644 index fb83488fe0..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOfSearchParameter.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfSearchParameter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SearchParameter" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "searchParameters" -}) -public class ArrayOfSearchParameter { - - @XmlElement(name = "SearchParameter", nillable = true) - protected List searchParameters; - - /** - * Gets the value of the searchParameters 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 JAXB object. - * This is why there is not a set method for the searchParameters property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSearchParameters().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SearchParameter } - * - * - */ - public List getSearchParameters() { - if (searchParameters == null) { - searchParameters = new ArrayList(); - } - return this.searchParameters; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOflong.java b/proxies/com/microsoft/bingads/v12/adinsight/ArrayOflong.java deleted file mode 100644 index 5ab2eab526..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ArrayOflong.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOflong complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOflong">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="long" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOflong", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", propOrder = { - "longs" -}) -public class ArrayOflong { - - @XmlElement(name = "long", type = Long.class) - protected List longs; - - /** - * Gets the value of the longs 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 JAXB object. - * This is why there is not a set method for the longs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLongs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Long } - * - * - */ - public List getLongs() { - if (longs == null) { - longs = new ArrayList(); - } - return this.longs; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightEntry.java b/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightEntry.java deleted file mode 100644 index 316f4d24c8..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightEntry.java +++ /dev/null @@ -1,118 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AuctionInsightEntry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AuctionInsightEntry">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DisplayDomain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="AggregatedKpi" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AuctionInsightKpi" minOccurs="0"/>
- *         <element name="SegmentedKpis" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAuctionInsightKpi" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuctionInsightEntry", propOrder = { - "displayDomain", - "aggregatedKpi", - "segmentedKpis" -}) -public class AuctionInsightEntry { - - @XmlElement(name = "DisplayDomain", nillable = true) - protected String displayDomain; - @XmlElement(name = "AggregatedKpi", nillable = true) - protected AuctionInsightKpi aggregatedKpi; - @XmlElement(name = "SegmentedKpis", nillable = true) - protected ArrayOfAuctionInsightKpi segmentedKpis; - - /** - * Gets the value of the displayDomain property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDisplayDomain() { - return displayDomain; - } - - /** - * Sets the value of the displayDomain property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDisplayDomain(String value) { - this.displayDomain = value; - } - - /** - * Gets the value of the aggregatedKpi property. - * - * @return - * possible object is - * {@link AuctionInsightKpi } - * - */ - public AuctionInsightKpi getAggregatedKpi() { - return aggregatedKpi; - } - - /** - * Sets the value of the aggregatedKpi property. - * - * @param value - * allowed object is - * {@link AuctionInsightKpi } - * - */ - public void setAggregatedKpi(AuctionInsightKpi value) { - this.aggregatedKpi = value; - } - - /** - * Gets the value of the segmentedKpis property. - * - * @return - * possible object is - * {@link ArrayOfAuctionInsightKpi } - * - */ - public ArrayOfAuctionInsightKpi getSegmentedKpis() { - return segmentedKpis; - } - - /** - * Sets the value of the segmentedKpis property. - * - * @param value - * allowed object is - * {@link ArrayOfAuctionInsightKpi } - * - */ - public void setSegmentedKpis(ArrayOfAuctionInsightKpi value) { - this.segmentedKpis = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightKpi.java b/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightKpi.java deleted file mode 100644 index 7979518955..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightKpi.java +++ /dev/null @@ -1,230 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AuctionInsightKpi complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AuctionInsightKpi">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Segments" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="ImpressionShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="OverlapRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AveragePosition" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AboveRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="TopOfPageRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="OutrankingShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuctionInsightKpi", propOrder = { - "segments", - "impressionShare", - "overlapRate", - "averagePosition", - "aboveRate", - "topOfPageRate", - "outrankingShare" -}) -public class AuctionInsightKpi { - - @XmlElement(name = "Segments", nillable = true) - protected ArrayOfstring segments; - @XmlElement(name = "ImpressionShare") - protected Double impressionShare; - @XmlElement(name = "OverlapRate") - protected Double overlapRate; - @XmlElement(name = "AveragePosition") - protected Double averagePosition; - @XmlElement(name = "AboveRate") - protected Double aboveRate; - @XmlElement(name = "TopOfPageRate") - protected Double topOfPageRate; - @XmlElement(name = "OutrankingShare") - protected Double outrankingShare; - - /** - * Gets the value of the segments property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getSegments() { - return segments; - } - - /** - * Sets the value of the segments property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setSegments(ArrayOfstring value) { - this.segments = value; - } - - /** - * Gets the value of the impressionShare property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getImpressionShare() { - return impressionShare; - } - - /** - * Sets the value of the impressionShare property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setImpressionShare(Double value) { - this.impressionShare = value; - } - - /** - * Gets the value of the overlapRate property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getOverlapRate() { - return overlapRate; - } - - /** - * Sets the value of the overlapRate property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setOverlapRate(Double value) { - this.overlapRate = value; - } - - /** - * Gets the value of the averagePosition property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAveragePosition() { - return averagePosition; - } - - /** - * Sets the value of the averagePosition property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAveragePosition(Double value) { - this.averagePosition = value; - } - - /** - * Gets the value of the aboveRate property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAboveRate() { - return aboveRate; - } - - /** - * Sets the value of the aboveRate property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAboveRate(Double value) { - this.aboveRate = value; - } - - /** - * Gets the value of the topOfPageRate property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getTopOfPageRate() { - return topOfPageRate; - } - - /** - * Sets the value of the topOfPageRate property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setTopOfPageRate(Double value) { - this.topOfPageRate = value; - } - - /** - * Gets the value of the outrankingShare property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getOutrankingShare() { - return outrankingShare; - } - - /** - * Sets the value of the outrankingShare property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setOutrankingShare(Double value) { - this.outrankingShare = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightResult.java b/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightResult.java deleted file mode 100644 index 0eb82bb342..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AuctionInsightResult.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AuctionInsightResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AuctionInsightResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Segments" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAuctionSegment" minOccurs="0"/>
- *         <element name="Entries" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAuctionInsightEntry" minOccurs="0"/>
- *         <element name="UsedImpressions" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="UsedKeywords" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuctionInsightResult", propOrder = { - "segments", - "entries", - "usedImpressions", - "usedKeywords" -}) -public class AuctionInsightResult { - - @XmlElement(name = "Segments", nillable = true) - protected ArrayOfAuctionSegment segments; - @XmlElement(name = "Entries", nillable = true) - protected ArrayOfAuctionInsightEntry entries; - @XmlElement(name = "UsedImpressions") - protected Double usedImpressions; - @XmlElement(name = "UsedKeywords") - protected Double usedKeywords; - - /** - * Gets the value of the segments property. - * - * @return - * possible object is - * {@link ArrayOfAuctionSegment } - * - */ - public ArrayOfAuctionSegment getSegments() { - return segments; - } - - /** - * Sets the value of the segments property. - * - * @param value - * allowed object is - * {@link ArrayOfAuctionSegment } - * - */ - public void setSegments(ArrayOfAuctionSegment value) { - this.segments = value; - } - - /** - * Gets the value of the entries property. - * - * @return - * possible object is - * {@link ArrayOfAuctionInsightEntry } - * - */ - public ArrayOfAuctionInsightEntry getEntries() { - return entries; - } - - /** - * Sets the value of the entries property. - * - * @param value - * allowed object is - * {@link ArrayOfAuctionInsightEntry } - * - */ - public void setEntries(ArrayOfAuctionInsightEntry value) { - this.entries = value; - } - - /** - * Gets the value of the usedImpressions property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUsedImpressions() { - return usedImpressions; - } - - /** - * Sets the value of the usedImpressions property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUsedImpressions(Double value) { - this.usedImpressions = value; - } - - /** - * Gets the value of the usedKeywords property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getUsedKeywords() { - return usedKeywords; - } - - /** - * Sets the value of the usedKeywords property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setUsedKeywords(Double value) { - this.usedKeywords = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AuctionSegment.java b/proxies/com/microsoft/bingads/v12/adinsight/AuctionSegment.java deleted file mode 100644 index 9a46f13f34..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AuctionSegment.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AuctionSegment. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AuctionSegment">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Day"/>
- *     <enumeration value="Week"/>
- *     <enumeration value="Month"/>
- *     <enumeration value="Quarter"/>
- *     <enumeration value="DayOfWeek"/>
- *     <enumeration value="Device"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AuctionSegment") -@XmlEnum -public enum AuctionSegment { - - @XmlEnumValue("Day") - DAY("Day"), - @XmlEnumValue("Week") - WEEK("Week"), - @XmlEnumValue("Month") - MONTH("Month"), - @XmlEnumValue("Quarter") - QUARTER("Quarter"), - @XmlEnumValue("DayOfWeek") - DAY_OF_WEEK("DayOfWeek"), - @XmlEnumValue("Device") - DEVICE("Device"); - private final String value; - - AuctionSegment(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AuctionSegment fromValue(String v) { - for (AuctionSegment c: AuctionSegment.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/AuctionSegmentSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/AuctionSegmentSearchParameter.java deleted file mode 100644 index 436b11e209..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/AuctionSegmentSearchParameter.java +++ /dev/null @@ -1,66 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AuctionSegmentSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AuctionSegmentSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Segment" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AuctionSegment" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuctionSegmentSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "segment" -}) -public class AuctionSegmentSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Segment") - @XmlSchemaType(name = "string") - protected AuctionSegment segment; - - /** - * Gets the value of the segment property. - * - * @return - * possible object is - * {@link AuctionSegment } - * - */ - public AuctionSegment getSegment() { - return segment; - } - - /** - * Sets the value of the segment property. - * - * @param value - * allowed object is - * {@link AuctionSegment } - * - */ - public void setSegment(AuctionSegment value) { - this.segment = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BatchError.java b/proxies/com/microsoft/bingads/v12/adinsight/BatchError.java deleted file mode 100644 index c39522d291..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BatchError.java +++ /dev/null @@ -1,174 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BatchError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BatchError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Index" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BatchError", namespace = "https://bingads.microsoft.com/AdInsight/v12", propOrder = { - "code", - "details", - "errorCode", - "index", - "message" -}) -public class BatchError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Details", nillable = true) - protected String details; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "Index") - protected Integer index; - @XmlElement(name = "Message", nillable = true) - protected String message; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetails(String value) { - this.details = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the index property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIndex() { - return index; - } - - /** - * Sets the value of the index property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIndex(Integer value) { - this.index = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BidLandscapePoint.java b/proxies/com/microsoft/bingads/v12/adinsight/BidLandscapePoint.java deleted file mode 100644 index 4579808cd2..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BidLandscapePoint.java +++ /dev/null @@ -1,232 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BidLandscapePoint complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BidLandscapePoint">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Bid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Clicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Impressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="TopImpressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CurrencyCode" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CurrencyCode" minOccurs="0"/>
- *         <element name="Cost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MarginalCPC" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BidLandscapePoint", propOrder = { - "bid", - "clicks", - "impressions", - "topImpressions", - "currencyCode", - "cost", - "marginalCPC" -}) -public class BidLandscapePoint { - - @XmlElement(name = "Bid") - protected Double bid; - @XmlElement(name = "Clicks", nillable = true) - protected Double clicks; - @XmlElement(name = "Impressions") - protected Long impressions; - @XmlElement(name = "TopImpressions", nillable = true) - protected Long topImpressions; - @XmlElement(name = "CurrencyCode") - @XmlSchemaType(name = "string") - protected CurrencyCode currencyCode; - @XmlElement(name = "Cost", nillable = true) - protected Double cost; - @XmlElement(name = "MarginalCPC", nillable = true) - protected Double marginalCPC; - - /** - * Gets the value of the bid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBid() { - return bid; - } - - /** - * Sets the value of the bid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBid(Double value) { - this.bid = value; - } - - /** - * Gets the value of the clicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getClicks() { - return clicks; - } - - /** - * Sets the value of the clicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setClicks(Double value) { - this.clicks = value; - } - - /** - * Gets the value of the impressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getImpressions() { - return impressions; - } - - /** - * Sets the value of the impressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setImpressions(Long value) { - this.impressions = value; - } - - /** - * Gets the value of the topImpressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getTopImpressions() { - return topImpressions; - } - - /** - * Sets the value of the topImpressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setTopImpressions(Long value) { - this.topImpressions = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link CurrencyCode } - * - */ - public CurrencyCode getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link CurrencyCode } - * - */ - public void setCurrencyCode(CurrencyCode value) { - this.currencyCode = value; - } - - /** - * Gets the value of the cost property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCost() { - return cost; - } - - /** - * Sets the value of the cost property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCost(Double value) { - this.cost = value; - } - - /** - * Gets the value of the marginalCPC property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMarginalCPC() { - return marginalCPC; - } - - /** - * Sets the value of the marginalCPC property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMarginalCPC(Double value) { - this.marginalCPC = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunity.java deleted file mode 100644 index 95fcd0f891..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunity.java +++ /dev/null @@ -1,288 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BidOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BidOpportunity">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}Opportunity">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CurrentBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedIncreaseInClicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedIncreaseInCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedIncreaseInImpressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="KeywordId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="MatchType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SuggestedBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BidOpportunity", propOrder = { - "adGroupId", - "campaignId", - "currentBid", - "estimatedIncreaseInClicks", - "estimatedIncreaseInCost", - "estimatedIncreaseInImpressions", - "keywordId", - "matchType", - "suggestedBid" -}) -public class BidOpportunity - extends Opportunity -{ - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "CampaignId") - protected Long campaignId; - @XmlElement(name = "CurrentBid") - protected Double currentBid; - @XmlElement(name = "EstimatedIncreaseInClicks") - protected Double estimatedIncreaseInClicks; - @XmlElement(name = "EstimatedIncreaseInCost") - protected Double estimatedIncreaseInCost; - @XmlElement(name = "EstimatedIncreaseInImpressions") - protected Long estimatedIncreaseInImpressions; - @XmlElement(name = "KeywordId") - protected Long keywordId; - @XmlElement(name = "MatchType", nillable = true) - protected String matchType; - @XmlElement(name = "SuggestedBid") - protected Double suggestedBid; - - /** - * 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 currentBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCurrentBid() { - return currentBid; - } - - /** - * Sets the value of the currentBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCurrentBid(Double value) { - this.currentBid = value; - } - - /** - * Gets the value of the estimatedIncreaseInClicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedIncreaseInClicks() { - return estimatedIncreaseInClicks; - } - - /** - * Sets the value of the estimatedIncreaseInClicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedIncreaseInClicks(Double value) { - this.estimatedIncreaseInClicks = value; - } - - /** - * Gets the value of the estimatedIncreaseInCost property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedIncreaseInCost() { - return estimatedIncreaseInCost; - } - - /** - * Sets the value of the estimatedIncreaseInCost property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedIncreaseInCost(Double value) { - this.estimatedIncreaseInCost = value; - } - - /** - * Gets the value of the estimatedIncreaseInImpressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getEstimatedIncreaseInImpressions() { - return estimatedIncreaseInImpressions; - } - - /** - * Sets the value of the estimatedIncreaseInImpressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setEstimatedIncreaseInImpressions(Long value) { - this.estimatedIncreaseInImpressions = value; - } - - /** - * Gets the value of the keywordId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKeywordId() { - return keywordId; - } - - /** - * Sets the value of the keywordId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKeywordId(Long value) { - this.keywordId = value; - } - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMatchType(String value) { - this.matchType = value; - } - - /** - * Gets the value of the suggestedBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getSuggestedBid() { - return suggestedBid; - } - - /** - * Sets the value of the suggestedBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setSuggestedBid(Double value) { - this.suggestedBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunityType.java b/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunityType.java deleted file mode 100644 index 66662cb8ef..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunityType.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.microsoft.bingads.v12.adinsight; - -/** - * Enum class for BidOpportunityType. - */ -public enum BidOpportunityType { - - FIRST_PAGE("FirstPage"), - MAIN_LINE("MainLine"), - MAIN_LINE1("MainLine1"); - - private final String value; - - BidOpportunityType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static BidOpportunityType fromValue(String v) { - for (BidOpportunityType c : BidOpportunityType.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/v12/adinsight/BidOpportunityTypeConverter.java b/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunityTypeConverter.java deleted file mode 100644 index ec7eb1a2d1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BidOpportunityTypeConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class BidOpportunityTypeConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(BidOpportunityType.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (BidOpportunityType 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/v12/adinsight/BroadMatchKeywordOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/BroadMatchKeywordOpportunity.java deleted file mode 100644 index 99c22641b2..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BroadMatchKeywordOpportunity.java +++ /dev/null @@ -1,260 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BroadMatchKeywordOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BroadMatchKeywordOpportunity">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordOpportunity">
- *       <sequence>
- *         <element name="AverageCPC" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AverageCTR" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="ClickShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="ImpressionShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="ReferenceKeywordBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="ReferenceKeywordId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="ReferenceKeywordMatchType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="SearchQueryKPIs" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfBroadMatchSearchQueryKPI" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BroadMatchKeywordOpportunity", propOrder = { - "averageCPC", - "averageCTR", - "clickShare", - "impressionShare", - "referenceKeywordBid", - "referenceKeywordId", - "referenceKeywordMatchType", - "searchQueryKPIs" -}) -public class BroadMatchKeywordOpportunity - extends KeywordOpportunity -{ - - @XmlElement(name = "AverageCPC") - protected Double averageCPC; - @XmlElement(name = "AverageCTR") - protected Double averageCTR; - @XmlElement(name = "ClickShare") - protected Double clickShare; - @XmlElement(name = "ImpressionShare") - protected Double impressionShare; - @XmlElement(name = "ReferenceKeywordBid") - protected Double referenceKeywordBid; - @XmlElement(name = "ReferenceKeywordId") - protected Long referenceKeywordId; - @XmlElement(name = "ReferenceKeywordMatchType") - protected Integer referenceKeywordMatchType; - @XmlElement(name = "SearchQueryKPIs", nillable = true) - protected ArrayOfBroadMatchSearchQueryKPI searchQueryKPIs; - - /** - * Gets the value of the averageCPC property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCPC() { - return averageCPC; - } - - /** - * Sets the value of the averageCPC property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCPC(Double value) { - this.averageCPC = value; - } - - /** - * Gets the value of the averageCTR property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCTR() { - return averageCTR; - } - - /** - * Sets the value of the averageCTR property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCTR(Double value) { - this.averageCTR = value; - } - - /** - * Gets the value of the clickShare property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getClickShare() { - return clickShare; - } - - /** - * Sets the value of the clickShare property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setClickShare(Double value) { - this.clickShare = value; - } - - /** - * Gets the value of the impressionShare property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getImpressionShare() { - return impressionShare; - } - - /** - * Sets the value of the impressionShare property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setImpressionShare(Double value) { - this.impressionShare = value; - } - - /** - * Gets the value of the referenceKeywordBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getReferenceKeywordBid() { - return referenceKeywordBid; - } - - /** - * Sets the value of the referenceKeywordBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setReferenceKeywordBid(Double value) { - this.referenceKeywordBid = value; - } - - /** - * Gets the value of the referenceKeywordId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getReferenceKeywordId() { - return referenceKeywordId; - } - - /** - * Sets the value of the referenceKeywordId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setReferenceKeywordId(Long value) { - this.referenceKeywordId = value; - } - - /** - * Gets the value of the referenceKeywordMatchType property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getReferenceKeywordMatchType() { - return referenceKeywordMatchType; - } - - /** - * Sets the value of the referenceKeywordMatchType property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setReferenceKeywordMatchType(Integer value) { - this.referenceKeywordMatchType = value; - } - - /** - * Gets the value of the searchQueryKPIs property. - * - * @return - * possible object is - * {@link ArrayOfBroadMatchSearchQueryKPI } - * - */ - public ArrayOfBroadMatchSearchQueryKPI getSearchQueryKPIs() { - return searchQueryKPIs; - } - - /** - * Sets the value of the searchQueryKPIs property. - * - * @param value - * allowed object is - * {@link ArrayOfBroadMatchSearchQueryKPI } - * - */ - public void setSearchQueryKPIs(ArrayOfBroadMatchSearchQueryKPI value) { - this.searchQueryKPIs = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BroadMatchSearchQueryKPI.java b/proxies/com/microsoft/bingads/v12/adinsight/BroadMatchSearchQueryKPI.java deleted file mode 100644 index 55f3a313f3..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BroadMatchSearchQueryKPI.java +++ /dev/null @@ -1,174 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BroadMatchSearchQueryKPI complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BroadMatchSearchQueryKPI">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AverageCTR" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Clicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Impressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="SRPV" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="SearchQuery" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BroadMatchSearchQueryKPI", propOrder = { - "averageCTR", - "clicks", - "impressions", - "srpv", - "searchQuery" -}) -public class BroadMatchSearchQueryKPI { - - @XmlElement(name = "AverageCTR") - protected Double averageCTR; - @XmlElement(name = "Clicks") - protected Double clicks; - @XmlElement(name = "Impressions") - protected Long impressions; - @XmlElement(name = "SRPV") - protected Long srpv; - @XmlElement(name = "SearchQuery", nillable = true) - protected String searchQuery; - - /** - * Gets the value of the averageCTR property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCTR() { - return averageCTR; - } - - /** - * Sets the value of the averageCTR property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCTR(Double value) { - this.averageCTR = value; - } - - /** - * Gets the value of the clicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getClicks() { - return clicks; - } - - /** - * Sets the value of the clicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setClicks(Double value) { - this.clicks = value; - } - - /** - * Gets the value of the impressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getImpressions() { - return impressions; - } - - /** - * Sets the value of the impressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setImpressions(Long value) { - this.impressions = value; - } - - /** - * Gets the value of the srpv property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getSRPV() { - return srpv; - } - - /** - * Sets the value of the srpv property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setSRPV(Long value) { - this.srpv = value; - } - - /** - * Gets the value of the searchQuery property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchQuery() { - return searchQuery; - } - - /** - * Sets the value of the searchQuery property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchQuery(String value) { - this.searchQuery = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BudgetLimitType.java b/proxies/com/microsoft/bingads/v12/adinsight/BudgetLimitType.java deleted file mode 100644 index e38c478499..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BudgetLimitType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BudgetLimitType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="BudgetLimitType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="DailyBudgetStandard"/>
- *     <enumeration value="DailyBudgetAccelerated"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "BudgetLimitType") -@XmlEnum -public enum BudgetLimitType { - - @XmlEnumValue("DailyBudgetStandard") - DAILY_BUDGET_STANDARD("DailyBudgetStandard"), - @XmlEnumValue("DailyBudgetAccelerated") - DAILY_BUDGET_ACCELERATED("DailyBudgetAccelerated"); - private final String value; - - BudgetLimitType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static BudgetLimitType fromValue(String v) { - for (BudgetLimitType c: BudgetLimitType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BudgetOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/BudgetOpportunity.java deleted file mode 100644 index ffe688b526..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BudgetOpportunity.java +++ /dev/null @@ -1,290 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BudgetOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BudgetOpportunity">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}Opportunity">
- *       <sequence>
- *         <element name="BudgetPoints" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfBudgetPoint" minOccurs="0"/>
- *         <element name="BudgetType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BudgetLimitType" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CurrentBudget" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="IncreaseInClicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="IncreaseInImpressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="PercentageIncreaseInClicks" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="PercentageIncreaseInImpressions" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="RecommendedBudget" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BudgetOpportunity", propOrder = { - "budgetPoints", - "budgetType", - "campaignId", - "currentBudget", - "increaseInClicks", - "increaseInImpressions", - "percentageIncreaseInClicks", - "percentageIncreaseInImpressions", - "recommendedBudget" -}) -public class BudgetOpportunity - extends Opportunity -{ - - @XmlElement(name = "BudgetPoints", nillable = true) - protected ArrayOfBudgetPoint budgetPoints; - @XmlElement(name = "BudgetType") - @XmlSchemaType(name = "string") - protected BudgetLimitType budgetType; - @XmlElement(name = "CampaignId") - protected Long campaignId; - @XmlElement(name = "CurrentBudget") - protected Double currentBudget; - @XmlElement(name = "IncreaseInClicks") - protected Double increaseInClicks; - @XmlElement(name = "IncreaseInImpressions") - protected Long increaseInImpressions; - @XmlElement(name = "PercentageIncreaseInClicks") - protected Integer percentageIncreaseInClicks; - @XmlElement(name = "PercentageIncreaseInImpressions") - protected Integer percentageIncreaseInImpressions; - @XmlElement(name = "RecommendedBudget") - protected Double recommendedBudget; - - /** - * Gets the value of the budgetPoints property. - * - * @return - * possible object is - * {@link ArrayOfBudgetPoint } - * - */ - public ArrayOfBudgetPoint getBudgetPoints() { - return budgetPoints; - } - - /** - * Sets the value of the budgetPoints property. - * - * @param value - * allowed object is - * {@link ArrayOfBudgetPoint } - * - */ - public void setBudgetPoints(ArrayOfBudgetPoint value) { - this.budgetPoints = value; - } - - /** - * Gets the value of the budgetType property. - * - * @return - * possible object is - * {@link BudgetLimitType } - * - */ - public BudgetLimitType getBudgetType() { - return budgetType; - } - - /** - * Sets the value of the budgetType property. - * - * @param value - * allowed object is - * {@link BudgetLimitType } - * - */ - public void setBudgetType(BudgetLimitType value) { - this.budgetType = 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 currentBudget property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCurrentBudget() { - return currentBudget; - } - - /** - * Sets the value of the currentBudget property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCurrentBudget(Double value) { - this.currentBudget = value; - } - - /** - * Gets the value of the increaseInClicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getIncreaseInClicks() { - return increaseInClicks; - } - - /** - * Sets the value of the increaseInClicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setIncreaseInClicks(Double value) { - this.increaseInClicks = value; - } - - /** - * Gets the value of the increaseInImpressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIncreaseInImpressions() { - return increaseInImpressions; - } - - /** - * Sets the value of the increaseInImpressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIncreaseInImpressions(Long value) { - this.increaseInImpressions = value; - } - - /** - * Gets the value of the percentageIncreaseInClicks property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPercentageIncreaseInClicks() { - return percentageIncreaseInClicks; - } - - /** - * Sets the value of the percentageIncreaseInClicks property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPercentageIncreaseInClicks(Integer value) { - this.percentageIncreaseInClicks = value; - } - - /** - * Gets the value of the percentageIncreaseInImpressions property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPercentageIncreaseInImpressions() { - return percentageIncreaseInImpressions; - } - - /** - * Sets the value of the percentageIncreaseInImpressions property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPercentageIncreaseInImpressions(Integer value) { - this.percentageIncreaseInImpressions = value; - } - - /** - * Gets the value of the recommendedBudget property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getRecommendedBudget() { - return recommendedBudget; - } - - /** - * Sets the value of the recommendedBudget property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setRecommendedBudget(Double value) { - this.recommendedBudget = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BudgetPoint.java b/proxies/com/microsoft/bingads/v12/adinsight/BudgetPoint.java deleted file mode 100644 index cc6d0113b3..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BudgetPoint.java +++ /dev/null @@ -1,176 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BudgetPoint complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BudgetPoint">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BudgetAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="BudgetPointType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BudgetPointType" minOccurs="0"/>
- *         <element name="EstimatedWeeklyClicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedWeeklyCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedWeeklyImpressions" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BudgetPoint", propOrder = { - "budgetAmount", - "budgetPointType", - "estimatedWeeklyClicks", - "estimatedWeeklyCost", - "estimatedWeeklyImpressions" -}) -public class BudgetPoint { - - @XmlElement(name = "BudgetAmount") - protected Double budgetAmount; - @XmlElement(name = "BudgetPointType") - @XmlSchemaType(name = "string") - protected BudgetPointType budgetPointType; - @XmlElement(name = "EstimatedWeeklyClicks") - protected Double estimatedWeeklyClicks; - @XmlElement(name = "EstimatedWeeklyCost") - protected Double estimatedWeeklyCost; - @XmlElement(name = "EstimatedWeeklyImpressions") - protected Double estimatedWeeklyImpressions; - - /** - * Gets the value of the budgetAmount property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBudgetAmount() { - return budgetAmount; - } - - /** - * Sets the value of the budgetAmount property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBudgetAmount(Double value) { - this.budgetAmount = value; - } - - /** - * Gets the value of the budgetPointType property. - * - * @return - * possible object is - * {@link BudgetPointType } - * - */ - public BudgetPointType getBudgetPointType() { - return budgetPointType; - } - - /** - * Sets the value of the budgetPointType property. - * - * @param value - * allowed object is - * {@link BudgetPointType } - * - */ - public void setBudgetPointType(BudgetPointType value) { - this.budgetPointType = value; - } - - /** - * Gets the value of the estimatedWeeklyClicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedWeeklyClicks() { - return estimatedWeeklyClicks; - } - - /** - * Sets the value of the estimatedWeeklyClicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedWeeklyClicks(Double value) { - this.estimatedWeeklyClicks = value; - } - - /** - * Gets the value of the estimatedWeeklyCost property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedWeeklyCost() { - return estimatedWeeklyCost; - } - - /** - * Sets the value of the estimatedWeeklyCost property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedWeeklyCost(Double value) { - this.estimatedWeeklyCost = value; - } - - /** - * Gets the value of the estimatedWeeklyImpressions property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedWeeklyImpressions() { - return estimatedWeeklyImpressions; - } - - /** - * Sets the value of the estimatedWeeklyImpressions property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedWeeklyImpressions(Double value) { - this.estimatedWeeklyImpressions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/BudgetPointType.java b/proxies/com/microsoft/bingads/v12/adinsight/BudgetPointType.java deleted file mode 100644 index cb89a8f12d..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/BudgetPointType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BudgetPointType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="BudgetPointType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Current"/>
- *     <enumeration value="Suggested"/>
- *     <enumeration value="Maximum"/>
- *     <enumeration value="Other"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "BudgetPointType") -@XmlEnum -public enum BudgetPointType { - - @XmlEnumValue("Current") - CURRENT("Current"), - @XmlEnumValue("Suggested") - SUGGESTED("Suggested"), - @XmlEnumValue("Maximum") - MAXIMUM("Maximum"), - @XmlEnumValue("Other") - OTHER("Other"); - private final String value; - - BudgetPointType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static BudgetPointType fromValue(String v) { - for (BudgetPointType c: BudgetPointType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/CampaignEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/CampaignEstimate.java deleted file mode 100644 index 4f01f71a89..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/CampaignEstimate.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CampaignEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CampaignEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupEstimates" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAdGroupEstimate" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CampaignEstimate", propOrder = { - "adGroupEstimates", - "campaignId" -}) -public class CampaignEstimate { - - @XmlElement(name = "AdGroupEstimates", nillable = true) - protected ArrayOfAdGroupEstimate adGroupEstimates; - @XmlElement(name = "CampaignId", nillable = true) - protected Long campaignId; - - /** - * Gets the value of the adGroupEstimates property. - * - * @return - * possible object is - * {@link ArrayOfAdGroupEstimate } - * - */ - public ArrayOfAdGroupEstimate getAdGroupEstimates() { - return adGroupEstimates; - } - - /** - * Sets the value of the adGroupEstimates property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroupEstimate } - * - */ - public void setAdGroupEstimates(ArrayOfAdGroupEstimate value) { - this.adGroupEstimates = 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/CampaignEstimator.java b/proxies/com/microsoft/bingads/v12/adinsight/CampaignEstimator.java deleted file mode 100644 index 34d842d777..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/CampaignEstimator.java +++ /dev/null @@ -1,174 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CampaignEstimator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CampaignEstimator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupEstimators" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAdGroupEstimator" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Criteria" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}ArrayOfCriterion" minOccurs="0"/>
- *         <element name="DailyBudget" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="NegativeKeywords" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}ArrayOfNegativeKeyword" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CampaignEstimator", propOrder = { - "adGroupEstimators", - "campaignId", - "criteria", - "dailyBudget", - "negativeKeywords" -}) -public class CampaignEstimator { - - @XmlElement(name = "AdGroupEstimators", nillable = true) - protected ArrayOfAdGroupEstimator adGroupEstimators; - @XmlElement(name = "CampaignId", nillable = true) - protected Long campaignId; - @XmlElement(name = "Criteria", nillable = true) - protected ArrayOfCriterion criteria; - @XmlElement(name = "DailyBudget", nillable = true) - protected Double dailyBudget; - @XmlElement(name = "NegativeKeywords", nillable = true) - protected ArrayOfNegativeKeyword negativeKeywords; - - /** - * Gets the value of the adGroupEstimators property. - * - * @return - * possible object is - * {@link ArrayOfAdGroupEstimator } - * - */ - public ArrayOfAdGroupEstimator getAdGroupEstimators() { - return adGroupEstimators; - } - - /** - * Sets the value of the adGroupEstimators property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroupEstimator } - * - */ - public void setAdGroupEstimators(ArrayOfAdGroupEstimator value) { - this.adGroupEstimators = 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 criteria property. - * - * @return - * possible object is - * {@link ArrayOfCriterion } - * - */ - public ArrayOfCriterion getCriteria() { - return criteria; - } - - /** - * Sets the value of the criteria property. - * - * @param value - * allowed object is - * {@link ArrayOfCriterion } - * - */ - public void setCriteria(ArrayOfCriterion value) { - this.criteria = value; - } - - /** - * Gets the value of the dailyBudget property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getDailyBudget() { - return dailyBudget; - } - - /** - * Sets the value of the dailyBudget property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setDailyBudget(Double value) { - this.dailyBudget = value; - } - - /** - * Gets the value of the negativeKeywords property. - * - * @return - * possible object is - * {@link ArrayOfNegativeKeyword } - * - */ - public ArrayOfNegativeKeyword getNegativeKeywords() { - return negativeKeywords; - } - - /** - * Sets the value of the negativeKeywords property. - * - * @param value - * allowed object is - * {@link ArrayOfNegativeKeyword } - * - */ - public void setNegativeKeywords(ArrayOfNegativeKeyword value) { - this.negativeKeywords = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/CategorySearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/CategorySearchParameter.java deleted file mode 100644 index 2c9cdcdb1e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/CategorySearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CategorySearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CategorySearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="CategoryId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CategorySearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "categoryId" -}) -public class CategorySearchParameter - extends SearchParameter -{ - - @XmlElement(name = "CategoryId") - protected Long categoryId; - - /** - * Gets the value of the categoryId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getCategoryId() { - return categoryId; - } - - /** - * Sets the value of the categoryId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setCategoryId(Long value) { - this.categoryId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Char.java b/proxies/com/microsoft/bingads/v12/adinsight/Char.java deleted file mode 100644 index e94fb09904..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Char.java +++ /dev/null @@ -1,49 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for char simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="char">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "char", namespace = "http://schemas.microsoft.com/2003/10/Serialization/", propOrder = { - "value" -}) -public class Char { - - @XmlValue - protected int value; - - /** - * Gets the value of the value property. - * - */ - public int getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - */ - public void setValue(int value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/CompetitionLevel.java b/proxies/com/microsoft/bingads/v12/adinsight/CompetitionLevel.java deleted file mode 100644 index 9fc52c9e0d..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/CompetitionLevel.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CompetitionLevel. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="CompetitionLevel">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Low"/>
- *     <enumeration value="Medium"/>
- *     <enumeration value="High"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "CompetitionLevel", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common") -@XmlEnum -public enum CompetitionLevel { - - @XmlEnumValue("Low") - LOW("Low"), - @XmlEnumValue("Medium") - MEDIUM("Medium"), - @XmlEnumValue("High") - HIGH("High"); - private final String value; - - CompetitionLevel(String v) { - value = v; - } - - public String value() { - return value; - } - - public static CompetitionLevel fromValue(String v) { - for (CompetitionLevel c: CompetitionLevel.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/CompetitionSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/CompetitionSearchParameter.java deleted file mode 100644 index 7cbe806732..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/CompetitionSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CompetitionSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompetitionSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="CompetitionLevels" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}ArrayOfCompetitionLevel" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompetitionSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "competitionLevels" -}) -public class CompetitionSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "CompetitionLevels", nillable = true) - protected ArrayOfCompetitionLevel competitionLevels; - - /** - * Gets the value of the competitionLevels property. - * - * @return - * possible object is - * {@link ArrayOfCompetitionLevel } - * - */ - public ArrayOfCompetitionLevel getCompetitionLevels() { - return competitionLevels; - } - - /** - * Sets the value of the competitionLevels property. - * - * @param value - * allowed object is - * {@link ArrayOfCompetitionLevel } - * - */ - public void setCompetitionLevels(ArrayOfCompetitionLevel value) { - this.competitionLevels = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Criterion.java b/proxies/com/microsoft/bingads/v12/adinsight/Criterion.java deleted file mode 100644 index 925f88cc2c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Criterion.java +++ /dev/null @@ -1,39 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Criterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Criterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Criterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions") -@XmlSeeAlso({ - DeviceCriterion.class, - LanguageCriterion.class, - LocationCriterion.class, - NetworkCriterion.class -}) -public class Criterion { - - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/CurrencyCode.java b/proxies/com/microsoft/bingads/v12/adinsight/CurrencyCode.java deleted file mode 100644 index da773af4d5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/CurrencyCode.java +++ /dev/null @@ -1,218 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CurrencyCode. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="CurrencyCode">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AED"/>
- *     <enumeration value="ALL"/>
- *     <enumeration value="AMD"/>
- *     <enumeration value="ARS"/>
- *     <enumeration value="AUD"/>
- *     <enumeration value="AZM"/>
- *     <enumeration value="BGL"/>
- *     <enumeration value="BHD"/>
- *     <enumeration value="BND"/>
- *     <enumeration value="BOB"/>
- *     <enumeration value="BRL"/>
- *     <enumeration value="BYB"/>
- *     <enumeration value="BZD"/>
- *     <enumeration value="CAD"/>
- *     <enumeration value="CHF"/>
- *     <enumeration value="CLP"/>
- *     <enumeration value="CNY"/>
- *     <enumeration value="COP"/>
- *     <enumeration value="CRC"/>
- *     <enumeration value="CZK"/>
- *     <enumeration value="DOP"/>
- *     <enumeration value="DKK"/>
- *     <enumeration value="DZD"/>
- *     <enumeration value="EEK"/>
- *     <enumeration value="EGP"/>
- *     <enumeration value="EUR"/>
- *     <enumeration value="GBP"/>
- *     <enumeration value="GEL"/>
- *     <enumeration value="GTQ"/>
- *     <enumeration value="HKD"/>
- *     <enumeration value="HNL"/>
- *     <enumeration value="HRK"/>
- *     <enumeration value="HUF"/>
- *     <enumeration value="IDR"/>
- *     <enumeration value="ILS"/>
- *     <enumeration value="INR"/>
- *     <enumeration value="IQD"/>
- *     <enumeration value="IRR"/>
- *     <enumeration value="ISK"/>
- *     <enumeration value="JMD"/>
- *     <enumeration value="JOD"/>
- *     <enumeration value="JPY"/>
- *     <enumeration value="KES"/>
- *     <enumeration value="KGS"/>
- *     <enumeration value="KRW"/>
- *     <enumeration value="KWD"/>
- *     <enumeration value="KZT"/>
- *     <enumeration value="LBP"/>
- *     <enumeration value="LTL"/>
- *     <enumeration value="LVL"/>
- *     <enumeration value="LYD"/>
- *     <enumeration value="MAD"/>
- *     <enumeration value="MKD"/>
- *     <enumeration value="MOP"/>
- *     <enumeration value="MNT"/>
- *     <enumeration value="MVR"/>
- *     <enumeration value="MXN"/>
- *     <enumeration value="MYR"/>
- *     <enumeration value="NIO"/>
- *     <enumeration value="NOK"/>
- *     <enumeration value="NZD"/>
- *     <enumeration value="OMR"/>
- *     <enumeration value="PAB"/>
- *     <enumeration value="PEN"/>
- *     <enumeration value="PHP"/>
- *     <enumeration value="PKR"/>
- *     <enumeration value="PLN"/>
- *     <enumeration value="PYG"/>
- *     <enumeration value="QAR"/>
- *     <enumeration value="ROL"/>
- *     <enumeration value="RUR"/>
- *     <enumeration value="SAR"/>
- *     <enumeration value="SEK"/>
- *     <enumeration value="SGD"/>
- *     <enumeration value="SIT"/>
- *     <enumeration value="SKK"/>
- *     <enumeration value="SYP"/>
- *     <enumeration value="THB"/>
- *     <enumeration value="TND"/>
- *     <enumeration value="TRY"/>
- *     <enumeration value="TTD"/>
- *     <enumeration value="TWD"/>
- *     <enumeration value="UAH"/>
- *     <enumeration value="USD"/>
- *     <enumeration value="UYU"/>
- *     <enumeration value="UZS"/>
- *     <enumeration value="VEF"/>
- *     <enumeration value="YER"/>
- *     <enumeration value="VND"/>
- *     <enumeration value="YUN"/>
- *     <enumeration value="ZAR"/>
- *     <enumeration value="ZWD"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "CurrencyCode") -@XmlEnum -public enum CurrencyCode { - - AED, - ALL, - AMD, - ARS, - AUD, - AZM, - BGL, - BHD, - BND, - BOB, - BRL, - BYB, - BZD, - CAD, - CHF, - CLP, - CNY, - COP, - CRC, - CZK, - DOP, - DKK, - DZD, - EEK, - EGP, - EUR, - GBP, - GEL, - GTQ, - HKD, - HNL, - HRK, - HUF, - IDR, - ILS, - INR, - IQD, - IRR, - ISK, - JMD, - JOD, - JPY, - KES, - KGS, - KRW, - KWD, - KZT, - LBP, - LTL, - LVL, - LYD, - MAD, - MKD, - MOP, - MNT, - MVR, - MXN, - MYR, - NIO, - NOK, - NZD, - OMR, - PAB, - PEN, - PHP, - PKR, - PLN, - PYG, - QAR, - ROL, - RUR, - SAR, - SEK, - SGD, - SIT, - SKK, - SYP, - THB, - TND, - TRY, - TTD, - TWD, - UAH, - USD, - UYU, - UZS, - VEF, - YER, - VND, - YUN, - ZAR, - ZWD; - - public String value() { - return name(); - } - - public static CurrencyCode fromValue(String v) { - return valueOf(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/DateRangeSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/DateRangeSearchParameter.java deleted file mode 100644 index d2c1e2b6e8..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/DateRangeSearchParameter.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DateRangeSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DateRangeSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="EndDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="StartDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DateRangeSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "endDate", - "startDate" -}) -public class DateRangeSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "EndDate", nillable = true) - protected DayMonthAndYear endDate; - @XmlElement(name = "StartDate", nillable = true) - protected DayMonthAndYear startDate; - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setEndDate(DayMonthAndYear value) { - this.endDate = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setStartDate(DayMonthAndYear value) { - this.startDate = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/DayMonthAndYear.java b/proxies/com/microsoft/bingads/v12/adinsight/DayMonthAndYear.java deleted file mode 100644 index 88c00e9b58..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/DayMonthAndYear.java +++ /dev/null @@ -1,118 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DayMonthAndYear complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DayMonthAndYear">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DayMonthAndYear", propOrder = { - "day", - "month", - "year" -}) -public class DayMonthAndYear { - - @XmlElement(name = "Day") - protected Integer day; - @XmlElement(name = "Month") - protected Integer month; - @XmlElement(name = "Year") - protected Integer year; - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYear(Integer value) { - this.year = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/DeviceCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/DeviceCriterion.java deleted file mode 100644 index 918e981d0f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/DeviceCriterion.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DeviceCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DeviceCriterion">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}Criterion">
- *       <sequence>
- *         <element name="DeviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeviceCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "deviceName" -}) -public class DeviceCriterion - extends Criterion -{ - - @XmlElement(name = "DeviceName", nillable = true) - protected String deviceName; - - /** - * Gets the value of the deviceName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeviceName() { - return deviceName; - } - - /** - * Sets the value of the deviceName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeviceName(String value) { - this.deviceName = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/DeviceSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/DeviceSearchParameter.java deleted file mode 100644 index e858330fbb..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/DeviceSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DeviceSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DeviceSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Device" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}DeviceCriterion" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeviceSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "device" -}) -public class DeviceSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Device", nillable = true) - protected DeviceCriterion device; - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link DeviceCriterion } - * - */ - public DeviceCriterion getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link DeviceCriterion } - * - */ - public void setDevice(DeviceCriterion value) { - this.device = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/DomainCategory.java b/proxies/com/microsoft/bingads/v12/adinsight/DomainCategory.java deleted file mode 100644 index d43d77020f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/DomainCategory.java +++ /dev/null @@ -1,118 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DomainCategory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DomainCategory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Bid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="CategoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Coverage" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DomainCategory", propOrder = { - "bid", - "categoryName", - "coverage" -}) -public class DomainCategory { - - @XmlElement(name = "Bid") - protected Double bid; - @XmlElement(name = "CategoryName", nillable = true) - protected String categoryName; - @XmlElement(name = "Coverage") - protected Double coverage; - - /** - * Gets the value of the bid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBid() { - return bid; - } - - /** - * Sets the value of the bid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBid(Double value) { - this.bid = value; - } - - /** - * Gets the value of the categoryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategoryName() { - return categoryName; - } - - /** - * Sets the value of the categoryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategoryName(String value) { - this.categoryName = value; - } - - /** - * Gets the value of the coverage property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCoverage() { - return coverage; - } - - /** - * Sets the value of the coverage property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCoverage(Double value) { - this.coverage = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Duration.java b/proxies/com/microsoft/bingads/v12/adinsight/Duration.java deleted file mode 100644 index 16631a305c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Duration.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for duration simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="duration">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}duration">
- *     <pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?"/>
- *     <minInclusive value="-P10675199DT2H48M5.4775808S"/>
- *     <maxInclusive value="P10675199DT2H48M5.4775807S"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "duration", namespace = "http://schemas.microsoft.com/2003/10/Serialization/", propOrder = { - "value" -}) -public class Duration { - - @XmlValue - protected javax.xml.datatype.Duration value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link javax.xml.datatype.Duration } - * - */ - public javax.xml.datatype.Duration getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link javax.xml.datatype.Duration } - * - */ - public void setValue(javax.xml.datatype.Duration value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ENTITIES.java b/proxies/com/microsoft/bingads/v12/adinsight/ENTITIES.java deleted file mode 100644 index ac3451839a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ENTITIES.java +++ /dev/null @@ -1,70 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ENTITIES simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="ENTITIES">
- *   <restriction>
- *     <simpleType>
- *       <list itemType="{http://www.w3.org/2001/XMLSchema}ENTITY" />
- *     </simpleType>
- *     <minLength value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ENTITIES", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "values" -}) -public class ENTITIES { - - @XmlValue - @XmlSchemaType(name = "ENTITIES") - protected List values; - - /** - * Gets the value of the values 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 JAXB object. - * This is why there is not a set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ENTITY } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ENTITY.java b/proxies/com/microsoft/bingads/v12/adinsight/ENTITY.java deleted file mode 100644 index 40eaa33ab0..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ENTITY.java +++ /dev/null @@ -1,59 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ENTITY simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="ENTITY">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ENTITY", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class ENTITY { - - @XmlValue - @XmlSchemaType(name = "ENTITY") - protected NCName value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NCName } - * - */ - public NCName getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NCName } - * - */ - public void setValue(NCName value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/EntityType.java b/proxies/com/microsoft/bingads/v12/adinsight/EntityType.java deleted file mode 100644 index f89abcc36f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/EntityType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EntityType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="EntityType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Account"/>
- *     <enumeration value="Campaign"/>
- *     <enumeration value="AdGroup"/>
- *     <enumeration value="Keyword"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EntityType") -@XmlEnum -public enum EntityType { - - @XmlEnumValue("Account") - ACCOUNT("Account"), - @XmlEnumValue("Campaign") - CAMPAIGN("Campaign"), - @XmlEnumValue("AdGroup") - AD_GROUP("AdGroup"), - @XmlEnumValue("Keyword") - KEYWORD("Keyword"); - private final String value; - - EntityType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static EntityType fromValue(String v) { - for (EntityType c: EntityType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/EstimatedBidAndTraffic.java b/proxies/com/microsoft/bingads/v12/adinsight/EstimatedBidAndTraffic.java deleted file mode 100644 index dad1d5aae6..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/EstimatedBidAndTraffic.java +++ /dev/null @@ -1,345 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EstimatedBidAndTraffic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="EstimatedBidAndTraffic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MinClicksPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MaxClicksPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AverageCPC" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MinImpressionsPerWeek" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="MaxImpressionsPerWeek" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CTR" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MinTotalCostPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MaxTotalCostPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="CurrencyCode" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CurrencyCode" minOccurs="0"/>
- *         <element name="MatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MatchType" minOccurs="0"/>
- *         <element name="EstimatedMinBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EstimatedBidAndTraffic", propOrder = { - "minClicksPerWeek", - "maxClicksPerWeek", - "averageCPC", - "minImpressionsPerWeek", - "maxImpressionsPerWeek", - "ctr", - "minTotalCostPerWeek", - "maxTotalCostPerWeek", - "currencyCode", - "matchType", - "estimatedMinBid" -}) -public class EstimatedBidAndTraffic { - - @XmlElement(name = "MinClicksPerWeek", nillable = true) - protected Double minClicksPerWeek; - @XmlElement(name = "MaxClicksPerWeek", nillable = true) - protected Double maxClicksPerWeek; - @XmlElement(name = "AverageCPC", nillable = true) - protected Double averageCPC; - @XmlElement(name = "MinImpressionsPerWeek", nillable = true) - protected Long minImpressionsPerWeek; - @XmlElement(name = "MaxImpressionsPerWeek", nillable = true) - protected Long maxImpressionsPerWeek; - @XmlElement(name = "CTR", nillable = true) - protected Double ctr; - @XmlElement(name = "MinTotalCostPerWeek", nillable = true) - protected Double minTotalCostPerWeek; - @XmlElement(name = "MaxTotalCostPerWeek", nillable = true) - protected Double maxTotalCostPerWeek; - @XmlElement(name = "CurrencyCode") - @XmlSchemaType(name = "string") - protected CurrencyCode currencyCode; - @XmlElement(name = "MatchType") - @XmlSchemaType(name = "string") - protected MatchType matchType; - @XmlElement(name = "EstimatedMinBid") - protected Double estimatedMinBid; - - /** - * Gets the value of the minClicksPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinClicksPerWeek() { - return minClicksPerWeek; - } - - /** - * Sets the value of the minClicksPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinClicksPerWeek(Double value) { - this.minClicksPerWeek = value; - } - - /** - * Gets the value of the maxClicksPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxClicksPerWeek() { - return maxClicksPerWeek; - } - - /** - * Sets the value of the maxClicksPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxClicksPerWeek(Double value) { - this.maxClicksPerWeek = value; - } - - /** - * Gets the value of the averageCPC property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCPC() { - return averageCPC; - } - - /** - * Sets the value of the averageCPC property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCPC(Double value) { - this.averageCPC = value; - } - - /** - * Gets the value of the minImpressionsPerWeek property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMinImpressionsPerWeek() { - return minImpressionsPerWeek; - } - - /** - * Sets the value of the minImpressionsPerWeek property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMinImpressionsPerWeek(Long value) { - this.minImpressionsPerWeek = value; - } - - /** - * Gets the value of the maxImpressionsPerWeek property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMaxImpressionsPerWeek() { - return maxImpressionsPerWeek; - } - - /** - * Sets the value of the maxImpressionsPerWeek property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMaxImpressionsPerWeek(Long value) { - this.maxImpressionsPerWeek = value; - } - - /** - * Gets the value of the ctr property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCTR() { - return ctr; - } - - /** - * Sets the value of the ctr property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCTR(Double value) { - this.ctr = value; - } - - /** - * Gets the value of the minTotalCostPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinTotalCostPerWeek() { - return minTotalCostPerWeek; - } - - /** - * Sets the value of the minTotalCostPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinTotalCostPerWeek(Double value) { - this.minTotalCostPerWeek = value; - } - - /** - * Gets the value of the maxTotalCostPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxTotalCostPerWeek() { - return maxTotalCostPerWeek; - } - - /** - * Sets the value of the maxTotalCostPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxTotalCostPerWeek(Double value) { - this.maxTotalCostPerWeek = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link CurrencyCode } - * - */ - public CurrencyCode getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link CurrencyCode } - * - */ - public void setCurrencyCode(CurrencyCode value) { - this.currencyCode = value; - } - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link MatchType } - * - */ - public MatchType getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link MatchType } - * - */ - public void setMatchType(MatchType value) { - this.matchType = value; - } - - /** - * Gets the value of the estimatedMinBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedMinBid() { - return estimatedMinBid; - } - - /** - * Sets the value of the estimatedMinBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedMinBid(Double value) { - this.estimatedMinBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/EstimatedPositionAndTraffic.java b/proxies/com/microsoft/bingads/v12/adinsight/EstimatedPositionAndTraffic.java deleted file mode 100644 index ddfc38cd58..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/EstimatedPositionAndTraffic.java +++ /dev/null @@ -1,345 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EstimatedPositionAndTraffic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="EstimatedPositionAndTraffic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MatchType" minOccurs="0"/>
- *         <element name="MinClicksPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MaxClicksPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AverageCPC" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MinImpressionsPerWeek" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="MaxImpressionsPerWeek" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CTR" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MinTotalCostPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="MaxTotalCostPerWeek" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="CurrencyCode" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CurrencyCode" minOccurs="0"/>
- *         <element name="EstimatedAdPosition" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EstimatedPositionAndTraffic", propOrder = { - "matchType", - "minClicksPerWeek", - "maxClicksPerWeek", - "averageCPC", - "minImpressionsPerWeek", - "maxImpressionsPerWeek", - "ctr", - "minTotalCostPerWeek", - "maxTotalCostPerWeek", - "currencyCode", - "estimatedAdPosition" -}) -public class EstimatedPositionAndTraffic { - - @XmlElement(name = "MatchType") - @XmlSchemaType(name = "string") - protected MatchType matchType; - @XmlElement(name = "MinClicksPerWeek") - protected Double minClicksPerWeek; - @XmlElement(name = "MaxClicksPerWeek") - protected Double maxClicksPerWeek; - @XmlElement(name = "AverageCPC") - protected Double averageCPC; - @XmlElement(name = "MinImpressionsPerWeek") - protected Long minImpressionsPerWeek; - @XmlElement(name = "MaxImpressionsPerWeek") - protected Long maxImpressionsPerWeek; - @XmlElement(name = "CTR") - protected Double ctr; - @XmlElement(name = "MinTotalCostPerWeek") - protected Double minTotalCostPerWeek; - @XmlElement(name = "MaxTotalCostPerWeek") - protected Double maxTotalCostPerWeek; - @XmlElement(name = "CurrencyCode") - @XmlSchemaType(name = "string") - protected CurrencyCode currencyCode; - @XmlElement(name = "EstimatedAdPosition") - protected Double estimatedAdPosition; - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link MatchType } - * - */ - public MatchType getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link MatchType } - * - */ - public void setMatchType(MatchType value) { - this.matchType = value; - } - - /** - * Gets the value of the minClicksPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinClicksPerWeek() { - return minClicksPerWeek; - } - - /** - * Sets the value of the minClicksPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinClicksPerWeek(Double value) { - this.minClicksPerWeek = value; - } - - /** - * Gets the value of the maxClicksPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxClicksPerWeek() { - return maxClicksPerWeek; - } - - /** - * Sets the value of the maxClicksPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxClicksPerWeek(Double value) { - this.maxClicksPerWeek = value; - } - - /** - * Gets the value of the averageCPC property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCPC() { - return averageCPC; - } - - /** - * Sets the value of the averageCPC property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCPC(Double value) { - this.averageCPC = value; - } - - /** - * Gets the value of the minImpressionsPerWeek property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMinImpressionsPerWeek() { - return minImpressionsPerWeek; - } - - /** - * Sets the value of the minImpressionsPerWeek property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMinImpressionsPerWeek(Long value) { - this.minImpressionsPerWeek = value; - } - - /** - * Gets the value of the maxImpressionsPerWeek property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMaxImpressionsPerWeek() { - return maxImpressionsPerWeek; - } - - /** - * Sets the value of the maxImpressionsPerWeek property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMaxImpressionsPerWeek(Long value) { - this.maxImpressionsPerWeek = value; - } - - /** - * Gets the value of the ctr property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCTR() { - return ctr; - } - - /** - * Sets the value of the ctr property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCTR(Double value) { - this.ctr = value; - } - - /** - * Gets the value of the minTotalCostPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinTotalCostPerWeek() { - return minTotalCostPerWeek; - } - - /** - * Sets the value of the minTotalCostPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinTotalCostPerWeek(Double value) { - this.minTotalCostPerWeek = value; - } - - /** - * Gets the value of the maxTotalCostPerWeek property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxTotalCostPerWeek() { - return maxTotalCostPerWeek; - } - - /** - * Sets the value of the maxTotalCostPerWeek property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxTotalCostPerWeek(Double value) { - this.maxTotalCostPerWeek = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link CurrencyCode } - * - */ - public CurrencyCode getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link CurrencyCode } - * - */ - public void setCurrencyCode(CurrencyCode value) { - this.currencyCode = value; - } - - /** - * Gets the value of the estimatedAdPosition property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedAdPosition() { - return estimatedAdPosition; - } - - /** - * Sets the value of the estimatedAdPosition property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedAdPosition(Double value) { - this.estimatedAdPosition = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ExcludeAccountKeywordsSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/ExcludeAccountKeywordsSearchParameter.java deleted file mode 100644 index 10bf6d4afb..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ExcludeAccountKeywordsSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ExcludeAccountKeywordsSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ExcludeAccountKeywordsSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="ExcludeAccountKeywords" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ExcludeAccountKeywordsSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "excludeAccountKeywords" -}) -public class ExcludeAccountKeywordsSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "ExcludeAccountKeywords") - protected Boolean excludeAccountKeywords; - - /** - * Gets the value of the excludeAccountKeywords property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getExcludeAccountKeywords() { - return excludeAccountKeywords; - } - - /** - * Sets the value of the excludeAccountKeywords property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExcludeAccountKeywords(Boolean value) { - this.excludeAccountKeywords = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetAuctionInsightDataRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetAuctionInsightDataRequest.java deleted file mode 100644 index 61bb8a12bf..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetAuctionInsightDataRequest.java +++ /dev/null @@ -1,122 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EntityType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}EntityType" minOccurs="0"/>
- *         <element name="EntityIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="SearchParameters" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}ArrayOfSearchParameter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "entityType", - "entityIds", - "searchParameters" -}) -@XmlRootElement(name = "GetAuctionInsightDataRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetAuctionInsightDataRequest { - - @XmlElement(name = "EntityType", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") - @XmlSchemaType(name = "string") - protected EntityType entityType; - @XmlElement(name = "EntityIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOflong entityIds; - @XmlElement(name = "SearchParameters", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfSearchParameter searchParameters; - - /** - * Gets the value of the entityType property. - * - * @return - * possible object is - * {@link EntityType } - * - */ - public EntityType getEntityType() { - return entityType; - } - - /** - * Sets the value of the entityType property. - * - * @param value - * allowed object is - * {@link EntityType } - * - */ - public void setEntityType(EntityType value) { - this.entityType = value; - } - - /** - * Gets the value of the entityIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getEntityIds() { - return entityIds; - } - - /** - * Sets the value of the entityIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setEntityIds(ArrayOflong value) { - this.entityIds = value; - } - - /** - * Gets the value of the searchParameters property. - * - * @return - * possible object is - * {@link ArrayOfSearchParameter } - * - */ - public ArrayOfSearchParameter getSearchParameters() { - return searchParameters; - } - - /** - * Sets the value of the searchParameters property. - * - * @param value - * allowed object is - * {@link ArrayOfSearchParameter } - * - */ - public void setSearchParameters(ArrayOfSearchParameter value) { - this.searchParameters = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetAuctionInsightDataResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetAuctionInsightDataResponse.java deleted file mode 100644 index 6fc7c1ed55..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetAuctionInsightDataResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Result" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AuctionInsightResult" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "result" -}) -@XmlRootElement(name = "GetAuctionInsightDataResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetAuctionInsightDataResponse { - - @XmlElement(name = "Result", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected AuctionInsightResult result; - - /** - * Gets the value of the result property. - * - * @return - * possible object is - * {@link AuctionInsightResult } - * - */ - public AuctionInsightResult getResult() { - return result; - } - - /** - * Sets the value of the result property. - * - * @param value - * allowed object is - * {@link AuctionInsightResult } - * - */ - public void setResult(AuctionInsightResult value) { - this.result = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByAdGroupIdsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByAdGroupIdsRequest.java deleted file mode 100644 index af0099cbf3..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByAdGroupIdsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupBidLandscapeInputs" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAdGroupBidLandscapeInput" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupBidLandscapeInputs" -}) -@XmlRootElement(name = "GetBidLandscapeByAdGroupIdsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBidLandscapeByAdGroupIdsRequest { - - @XmlElement(name = "AdGroupBidLandscapeInputs", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfAdGroupBidLandscapeInput adGroupBidLandscapeInputs; - - /** - * Gets the value of the adGroupBidLandscapeInputs property. - * - * @return - * possible object is - * {@link ArrayOfAdGroupBidLandscapeInput } - * - */ - public ArrayOfAdGroupBidLandscapeInput getAdGroupBidLandscapeInputs() { - return adGroupBidLandscapeInputs; - } - - /** - * Sets the value of the adGroupBidLandscapeInputs property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroupBidLandscapeInput } - * - */ - public void setAdGroupBidLandscapeInputs(ArrayOfAdGroupBidLandscapeInput value) { - this.adGroupBidLandscapeInputs = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByAdGroupIdsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByAdGroupIdsResponse.java deleted file mode 100644 index 411c9546df..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByAdGroupIdsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BidLandscape" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfAdGroupBidLandscape" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "bidLandscape" -}) -@XmlRootElement(name = "GetBidLandscapeByAdGroupIdsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBidLandscapeByAdGroupIdsResponse { - - @XmlElement(name = "BidLandscape", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfAdGroupBidLandscape bidLandscape; - - /** - * Gets the value of the bidLandscape property. - * - * @return - * possible object is - * {@link ArrayOfAdGroupBidLandscape } - * - */ - public ArrayOfAdGroupBidLandscape getBidLandscape() { - return bidLandscape; - } - - /** - * Sets the value of the bidLandscape property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroupBidLandscape } - * - */ - public void setBidLandscape(ArrayOfAdGroupBidLandscape value) { - this.bidLandscape = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByKeywordIdsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByKeywordIdsRequest.java deleted file mode 100644 index 2e280a147b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByKeywordIdsRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="IncludeCurrentBid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordIds", - "includeCurrentBid" -}) -@XmlRootElement(name = "GetBidLandscapeByKeywordIdsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBidLandscapeByKeywordIdsRequest { - - @XmlElement(name = "KeywordIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOflong keywordIds; - @XmlElement(name = "IncludeCurrentBid", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Boolean includeCurrentBid; - - /** - * Gets the value of the keywordIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getKeywordIds() { - return keywordIds; - } - - /** - * Sets the value of the keywordIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setKeywordIds(ArrayOflong value) { - this.keywordIds = value; - } - - /** - * Gets the value of the includeCurrentBid property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getIncludeCurrentBid() { - return includeCurrentBid; - } - - /** - * Sets the value of the includeCurrentBid property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIncludeCurrentBid(Boolean value) { - this.includeCurrentBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByKeywordIdsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByKeywordIdsResponse.java deleted file mode 100644 index 9675e8eba3..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBidLandscapeByKeywordIdsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BidLandscape" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordBidLandscape" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "bidLandscape" -}) -@XmlRootElement(name = "GetBidLandscapeByKeywordIdsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBidLandscapeByKeywordIdsResponse { - - @XmlElement(name = "BidLandscape", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordBidLandscape bidLandscape; - - /** - * Gets the value of the bidLandscape property. - * - * @return - * possible object is - * {@link ArrayOfKeywordBidLandscape } - * - */ - public ArrayOfKeywordBidLandscape getBidLandscape() { - return bidLandscape; - } - - /** - * Sets the value of the bidLandscape property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordBidLandscape } - * - */ - public void setBidLandscape(ArrayOfKeywordBidLandscape value) { - this.bidLandscape = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBidOpportunitiesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBidOpportunitiesRequest.java deleted file mode 100644 index 1eb42fcae7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBidOpportunitiesRequest.java +++ /dev/null @@ -1,123 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="OpportunityType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}BidOpportunityType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupId", - "campaignId", - "opportunityType" -}) -@XmlRootElement(name = "GetBidOpportunitiesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBidOpportunitiesRequest { - - @XmlElement(name = "AdGroupId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long adGroupId; - @XmlElement(name = "CampaignId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long campaignId; - @XmlElement(name = "OpportunityType", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", type = String.class) - @XmlJavaTypeAdapter(Adapter2 .class) - protected Collection opportunityType; - - /** - * 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 opportunityType property. - * - * @return - * possible object is - * {@link String } - * - */ - public Collection getOpportunityType() { - return opportunityType; - } - - /** - * Sets the value of the opportunityType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOpportunityType(Collection value) { - this.opportunityType = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBidOpportunitiesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBidOpportunitiesResponse.java deleted file mode 100644 index 1d10e76c6a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBidOpportunitiesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Opportunities" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfBidOpportunity" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "opportunities" -}) -@XmlRootElement(name = "GetBidOpportunitiesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBidOpportunitiesResponse { - - @XmlElement(name = "Opportunities", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfBidOpportunity opportunities; - - /** - * Gets the value of the opportunities property. - * - * @return - * possible object is - * {@link ArrayOfBidOpportunity } - * - */ - public ArrayOfBidOpportunity getOpportunities() { - return opportunities; - } - - /** - * Sets the value of the opportunities property. - * - * @param value - * allowed object is - * {@link ArrayOfBidOpportunity } - * - */ - public void setOpportunities(ArrayOfBidOpportunity value) { - this.opportunities = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBudgetOpportunitiesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBudgetOpportunitiesRequest.java deleted file mode 100644 index d8bb8fc629..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBudgetOpportunitiesRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignId" -}) -@XmlRootElement(name = "GetBudgetOpportunitiesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBudgetOpportunitiesRequest { - - @XmlElement(name = "CampaignId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long campaignId; - - /** - * 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetBudgetOpportunitiesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetBudgetOpportunitiesResponse.java deleted file mode 100644 index 2dd3188fd6..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetBudgetOpportunitiesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Opportunities" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfBudgetOpportunity" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "opportunities" -}) -@XmlRootElement(name = "GetBudgetOpportunitiesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetBudgetOpportunitiesResponse { - - @XmlElement(name = "Opportunities", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfBudgetOpportunity opportunities; - - /** - * Gets the value of the opportunities property. - * - * @return - * possible object is - * {@link ArrayOfBudgetOpportunity } - * - */ - public ArrayOfBudgetOpportunity getOpportunities() { - return opportunities; - } - - /** - * Sets the value of the opportunities property. - * - * @param value - * allowed object is - * {@link ArrayOfBudgetOpportunity } - * - */ - public void setOpportunities(ArrayOfBudgetOpportunity value) { - this.opportunities = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetDomainCategoriesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetDomainCategoriesRequest.java deleted file mode 100644 index a191b0fac6..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetDomainCategoriesRequest.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CategoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "categoryName", - "domainName", - "language" -}) -@XmlRootElement(name = "GetDomainCategoriesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetDomainCategoriesRequest { - - @XmlElement(name = "CategoryName", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String categoryName; - @XmlElement(name = "DomainName", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String domainName; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - - /** - * Gets the value of the categoryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategoryName() { - return categoryName; - } - - /** - * Sets the value of the categoryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategoryName(String value) { - this.categoryName = 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; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetDomainCategoriesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetDomainCategoriesResponse.java deleted file mode 100644 index 87f53df535..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetDomainCategoriesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Categories" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfDomainCategory" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "categories" -}) -@XmlRootElement(name = "GetDomainCategoriesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetDomainCategoriesResponse { - - @XmlElement(name = "Categories", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfDomainCategory categories; - - /** - * Gets the value of the categories property. - * - * @return - * possible object is - * {@link ArrayOfDomainCategory } - * - */ - public ArrayOfDomainCategory getCategories() { - return categories; - } - - /** - * Sets the value of the categories property. - * - * @param value - * allowed object is - * {@link ArrayOfDomainCategory } - * - */ - public void setCategories(ArrayOfDomainCategory value) { - this.categories = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordIdsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordIdsRequest.java deleted file mode 100644 index 57571132df..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordIdsRequest.java +++ /dev/null @@ -1,94 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="TargetPositionForAds" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}TargetAdPosition" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordIds", - "targetPositionForAds" -}) -@XmlRootElement(name = "GetEstimatedBidByKeywordIdsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedBidByKeywordIdsRequest { - - @XmlElement(name = "KeywordIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOflong keywordIds; - @XmlElement(name = "TargetPositionForAds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") - @XmlSchemaType(name = "string") - protected TargetAdPosition targetPositionForAds; - - /** - * Gets the value of the keywordIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getKeywordIds() { - return keywordIds; - } - - /** - * Sets the value of the keywordIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setKeywordIds(ArrayOflong value) { - this.keywordIds = value; - } - - /** - * Gets the value of the targetPositionForAds property. - * - * @return - * possible object is - * {@link TargetAdPosition } - * - */ - public TargetAdPosition getTargetPositionForAds() { - return targetPositionForAds; - } - - /** - * Sets the value of the targetPositionForAds property. - * - * @param value - * allowed object is - * {@link TargetAdPosition } - * - */ - public void setTargetPositionForAds(TargetAdPosition value) { - this.targetPositionForAds = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordIdsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordIdsResponse.java deleted file mode 100644 index 3971eb9f64..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordIdsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimatedBids" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordIdEstimatedBid" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordEstimatedBids" -}) -@XmlRootElement(name = "GetEstimatedBidByKeywordIdsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedBidByKeywordIdsResponse { - - @XmlElement(name = "KeywordEstimatedBids", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordIdEstimatedBid keywordEstimatedBids; - - /** - * Gets the value of the keywordEstimatedBids property. - * - * @return - * possible object is - * {@link ArrayOfKeywordIdEstimatedBid } - * - */ - public ArrayOfKeywordIdEstimatedBid getKeywordEstimatedBids() { - return keywordEstimatedBids; - } - - /** - * Sets the value of the keywordEstimatedBids property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordIdEstimatedBid } - * - */ - public void setKeywordEstimatedBids(ArrayOfKeywordIdEstimatedBid value) { - this.keywordEstimatedBids = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordsRequest.java deleted file mode 100644 index 413d9a24c5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordsRequest.java +++ /dev/null @@ -1,263 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message}ArrayOfKeywordAndMatchType" minOccurs="0"/>
- *         <element name="TargetPositionForAds" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}TargetAdPosition" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="LocationIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="CurrencyCode" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CurrencyCode" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="EntityLevelBid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "targetPositionForAds", - "language", - "locationIds", - "currencyCode", - "campaignId", - "adGroupId", - "entityLevelBid" -}) -@XmlRootElement(name = "GetEstimatedBidByKeywordsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedBidByKeywordsRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordAndMatchType keywords; - @XmlElement(name = "TargetPositionForAds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") - @XmlSchemaType(name = "string") - protected TargetAdPosition targetPositionForAds; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "LocationIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOflong locationIds; - @XmlElement(name = "CurrencyCode", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - @XmlSchemaType(name = "string") - protected CurrencyCode currencyCode; - @XmlElement(name = "CampaignId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long campaignId; - @XmlElement(name = "AdGroupId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long adGroupId; - @XmlElement(name = "EntityLevelBid", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String entityLevelBid; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfKeywordAndMatchType } - * - */ - public ArrayOfKeywordAndMatchType getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordAndMatchType } - * - */ - public void setKeywords(ArrayOfKeywordAndMatchType value) { - this.keywords = value; - } - - /** - * Gets the value of the targetPositionForAds property. - * - * @return - * possible object is - * {@link TargetAdPosition } - * - */ - public TargetAdPosition getTargetPositionForAds() { - return targetPositionForAds; - } - - /** - * Sets the value of the targetPositionForAds property. - * - * @param value - * allowed object is - * {@link TargetAdPosition } - * - */ - public void setTargetPositionForAds(TargetAdPosition value) { - this.targetPositionForAds = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the locationIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getLocationIds() { - return locationIds; - } - - /** - * Sets the value of the locationIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setLocationIds(ArrayOflong value) { - this.locationIds = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link CurrencyCode } - * - */ - public CurrencyCode getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link CurrencyCode } - * - */ - public void setCurrencyCode(CurrencyCode value) { - this.currencyCode = 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 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 entityLevelBid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEntityLevelBid() { - return entityLevelBid; - } - - /** - * Sets the value of the entityLevelBid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEntityLevelBid(String value) { - this.entityLevelBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordsResponse.java deleted file mode 100644 index b838644bf8..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedBidByKeywordsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimatedBids" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordEstimatedBid" minOccurs="0"/>
- *         <element name="AdGroupEstimatedBid" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}EstimatedBidAndTraffic" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordEstimatedBids", - "adGroupEstimatedBid" -}) -@XmlRootElement(name = "GetEstimatedBidByKeywordsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedBidByKeywordsResponse { - - @XmlElement(name = "KeywordEstimatedBids", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordEstimatedBid keywordEstimatedBids; - @XmlElement(name = "AdGroupEstimatedBid", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected EstimatedBidAndTraffic adGroupEstimatedBid; - - /** - * Gets the value of the keywordEstimatedBids property. - * - * @return - * possible object is - * {@link ArrayOfKeywordEstimatedBid } - * - */ - public ArrayOfKeywordEstimatedBid getKeywordEstimatedBids() { - return keywordEstimatedBids; - } - - /** - * Sets the value of the keywordEstimatedBids property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordEstimatedBid } - * - */ - public void setKeywordEstimatedBids(ArrayOfKeywordEstimatedBid value) { - this.keywordEstimatedBids = value; - } - - /** - * Gets the value of the adGroupEstimatedBid property. - * - * @return - * possible object is - * {@link EstimatedBidAndTraffic } - * - */ - public EstimatedBidAndTraffic getAdGroupEstimatedBid() { - return adGroupEstimatedBid; - } - - /** - * Sets the value of the adGroupEstimatedBid property. - * - * @param value - * allowed object is - * {@link EstimatedBidAndTraffic } - * - */ - public void setAdGroupEstimatedBid(EstimatedBidAndTraffic value) { - this.adGroupEstimatedBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordIdsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordIdsRequest.java deleted file mode 100644 index ba4c57d899..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordIdsRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="MaxBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordIds", - "maxBid" -}) -@XmlRootElement(name = "GetEstimatedPositionByKeywordIdsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedPositionByKeywordIdsRequest { - - @XmlElement(name = "KeywordIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOflong keywordIds; - @XmlElement(name = "MaxBid", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") - protected Double maxBid; - - /** - * Gets the value of the keywordIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getKeywordIds() { - return keywordIds; - } - - /** - * Sets the value of the keywordIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setKeywordIds(ArrayOflong value) { - this.keywordIds = value; - } - - /** - * Gets the value of the maxBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxBid() { - return maxBid; - } - - /** - * Sets the value of the maxBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxBid(Double value) { - this.maxBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordIdsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordIdsResponse.java deleted file mode 100644 index bec320268d..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordIdsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimatedPositions" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordIdEstimatedPosition" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordEstimatedPositions" -}) -@XmlRootElement(name = "GetEstimatedPositionByKeywordIdsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedPositionByKeywordIdsResponse { - - @XmlElement(name = "KeywordEstimatedPositions", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordIdEstimatedPosition keywordEstimatedPositions; - - /** - * Gets the value of the keywordEstimatedPositions property. - * - * @return - * possible object is - * {@link ArrayOfKeywordIdEstimatedPosition } - * - */ - public ArrayOfKeywordIdEstimatedPosition getKeywordEstimatedPositions() { - return keywordEstimatedPositions; - } - - /** - * Sets the value of the keywordEstimatedPositions property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordIdEstimatedPosition } - * - */ - public void setKeywordEstimatedPositions(ArrayOfKeywordIdEstimatedPosition value) { - this.keywordEstimatedPositions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordsRequest.java deleted file mode 100644 index a8bd871be1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordsRequest.java +++ /dev/null @@ -1,262 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="MaxBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="LocationIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="CurrencyCode" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}CurrencyCode" minOccurs="0"/>
- *         <element name="MatchTypes" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfMatchType" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "maxBid", - "language", - "locationIds", - "currencyCode", - "matchTypes", - "campaignId", - "adGroupId" -}) -@XmlRootElement(name = "GetEstimatedPositionByKeywordsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedPositionByKeywordsRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "MaxBid", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") - protected Double maxBid; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "LocationIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOflong locationIds; - @XmlElement(name = "CurrencyCode", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - @XmlSchemaType(name = "string") - protected CurrencyCode currencyCode; - @XmlElement(name = "MatchTypes", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfMatchType matchTypes; - @XmlElement(name = "CampaignId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long campaignId; - @XmlElement(name = "AdGroupId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long adGroupId; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the maxBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxBid() { - return maxBid; - } - - /** - * Sets the value of the maxBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxBid(Double value) { - this.maxBid = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the locationIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getLocationIds() { - return locationIds; - } - - /** - * Sets the value of the locationIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setLocationIds(ArrayOflong value) { - this.locationIds = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link CurrencyCode } - * - */ - public CurrencyCode getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link CurrencyCode } - * - */ - public void setCurrencyCode(CurrencyCode value) { - this.currencyCode = value; - } - - /** - * Gets the value of the matchTypes property. - * - * @return - * possible object is - * {@link ArrayOfMatchType } - * - */ - public ArrayOfMatchType getMatchTypes() { - return matchTypes; - } - - /** - * Sets the value of the matchTypes property. - * - * @param value - * allowed object is - * {@link ArrayOfMatchType } - * - */ - public void setMatchTypes(ArrayOfMatchType value) { - this.matchTypes = 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 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordsResponse.java deleted file mode 100644 index 1eb5f748d0..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetEstimatedPositionByKeywordsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordEstimatedPositions" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordEstimatedPosition" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordEstimatedPositions" -}) -@XmlRootElement(name = "GetEstimatedPositionByKeywordsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetEstimatedPositionByKeywordsResponse { - - @XmlElement(name = "KeywordEstimatedPositions", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordEstimatedPosition keywordEstimatedPositions; - - /** - * Gets the value of the keywordEstimatedPositions property. - * - * @return - * possible object is - * {@link ArrayOfKeywordEstimatedPosition } - * - */ - public ArrayOfKeywordEstimatedPosition getKeywordEstimatedPositions() { - return keywordEstimatedPositions; - } - - /** - * Sets the value of the keywordEstimatedPositions property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordEstimatedPosition } - * - */ - public void setKeywordEstimatedPositions(ArrayOfKeywordEstimatedPosition value) { - this.keywordEstimatedPositions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalKeywordPerformanceRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalKeywordPerformanceRequest.java deleted file mode 100644 index dde3f0c43a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalKeywordPerformanceRequest.java +++ /dev/null @@ -1,235 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="TimeInterval" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}TimeInterval" minOccurs="0"/>
- *         <element name="TargetAdPosition" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdPosition" minOccurs="0"/>
- *         <element name="MatchTypes" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfMatchType" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountries" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Devices" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "timeInterval", - "targetAdPosition", - "matchTypes", - "language", - "publisherCountries", - "devices" -}) -@XmlRootElement(name = "GetHistoricalKeywordPerformanceRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetHistoricalKeywordPerformanceRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "TimeInterval", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - @XmlSchemaType(name = "string") - protected TimeInterval timeInterval; - @XmlElement(name = "TargetAdPosition", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - @XmlSchemaType(name = "string") - protected AdPosition targetAdPosition; - @XmlElement(name = "MatchTypes", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfMatchType matchTypes; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "PublisherCountries", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring publisherCountries; - @XmlElement(name = "Devices", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring devices; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the timeInterval property. - * - * @return - * possible object is - * {@link TimeInterval } - * - */ - public TimeInterval getTimeInterval() { - return timeInterval; - } - - /** - * Sets the value of the timeInterval property. - * - * @param value - * allowed object is - * {@link TimeInterval } - * - */ - public void setTimeInterval(TimeInterval value) { - this.timeInterval = value; - } - - /** - * Gets the value of the targetAdPosition property. - * - * @return - * possible object is - * {@link AdPosition } - * - */ - public AdPosition getTargetAdPosition() { - return targetAdPosition; - } - - /** - * Sets the value of the targetAdPosition property. - * - * @param value - * allowed object is - * {@link AdPosition } - * - */ - public void setTargetAdPosition(AdPosition value) { - this.targetAdPosition = value; - } - - /** - * Gets the value of the matchTypes property. - * - * @return - * possible object is - * {@link ArrayOfMatchType } - * - */ - public ArrayOfMatchType getMatchTypes() { - return matchTypes; - } - - /** - * Sets the value of the matchTypes property. - * - * @param value - * allowed object is - * {@link ArrayOfMatchType } - * - */ - public void setMatchTypes(ArrayOfMatchType value) { - this.matchTypes = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the publisherCountries property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getPublisherCountries() { - return publisherCountries; - } - - /** - * Sets the value of the publisherCountries property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setPublisherCountries(ArrayOfstring value) { - this.publisherCountries = value; - } - - /** - * Gets the value of the devices property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getDevices() { - return devices; - } - - /** - * Sets the value of the devices property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setDevices(ArrayOfstring value) { - this.devices = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalKeywordPerformanceResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalKeywordPerformanceResponse.java deleted file mode 100644 index b824475430..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalKeywordPerformanceResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordHistoricalPerformances" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordHistoricalPerformance" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordHistoricalPerformances" -}) -@XmlRootElement(name = "GetHistoricalKeywordPerformanceResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetHistoricalKeywordPerformanceResponse { - - @XmlElement(name = "KeywordHistoricalPerformances", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordHistoricalPerformance keywordHistoricalPerformances; - - /** - * Gets the value of the keywordHistoricalPerformances property. - * - * @return - * possible object is - * {@link ArrayOfKeywordHistoricalPerformance } - * - */ - public ArrayOfKeywordHistoricalPerformance getKeywordHistoricalPerformances() { - return keywordHistoricalPerformances; - } - - /** - * Sets the value of the keywordHistoricalPerformances property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordHistoricalPerformance } - * - */ - public void setKeywordHistoricalPerformances(ArrayOfKeywordHistoricalPerformance value) { - this.keywordHistoricalPerformances = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalSearchCountRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalSearchCountRequest.java deleted file mode 100644 index ffc3de7137..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalSearchCountRequest.java +++ /dev/null @@ -1,232 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountries" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="StartDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="EndDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="TimePeriodRollup" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Devices" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "language", - "publisherCountries", - "startDate", - "endDate", - "timePeriodRollup", - "devices" -}) -@XmlRootElement(name = "GetHistoricalSearchCountRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetHistoricalSearchCountRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "PublisherCountries", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring publisherCountries; - @XmlElement(name = "StartDate", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected DayMonthAndYear startDate; - @XmlElement(name = "EndDate", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected DayMonthAndYear endDate; - @XmlElement(name = "TimePeriodRollup", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String timePeriodRollup; - @XmlElement(name = "Devices", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring devices; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the publisherCountries property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getPublisherCountries() { - return publisherCountries; - } - - /** - * Sets the value of the publisherCountries property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setPublisherCountries(ArrayOfstring value) { - this.publisherCountries = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setStartDate(DayMonthAndYear value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setEndDate(DayMonthAndYear value) { - this.endDate = value; - } - - /** - * Gets the value of the timePeriodRollup property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTimePeriodRollup() { - return timePeriodRollup; - } - - /** - * Sets the value of the timePeriodRollup property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTimePeriodRollup(String value) { - this.timePeriodRollup = value; - } - - /** - * Gets the value of the devices property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getDevices() { - return devices; - } - - /** - * Sets the value of the devices property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setDevices(ArrayOfstring value) { - this.devices = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalSearchCountResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalSearchCountResponse.java deleted file mode 100644 index b8ef0232de..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetHistoricalSearchCountResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordSearchCounts" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordSearchCount" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordSearchCounts" -}) -@XmlRootElement(name = "GetHistoricalSearchCountResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetHistoricalSearchCountResponse { - - @XmlElement(name = "KeywordSearchCounts", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordSearchCount keywordSearchCounts; - - /** - * Gets the value of the keywordSearchCounts property. - * - * @return - * possible object is - * {@link ArrayOfKeywordSearchCount } - * - */ - public ArrayOfKeywordSearchCount getKeywordSearchCounts() { - return keywordSearchCounts; - } - - /** - * Sets the value of the keywordSearchCounts property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordSearchCount } - * - */ - public void setKeywordSearchCounts(ArrayOfKeywordSearchCount value) { - this.keywordSearchCounts = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordCategoriesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordCategoriesRequest.java deleted file mode 100644 index adee1a5466..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordCategoriesRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MaxCategories" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "language", - "publisherCountry", - "maxCategories" -}) -@XmlRootElement(name = "GetKeywordCategoriesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordCategoriesRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "PublisherCountry", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String publisherCountry; - @XmlElement(name = "MaxCategories", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Integer maxCategories; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the publisherCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublisherCountry() { - return publisherCountry; - } - - /** - * Sets the value of the publisherCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublisherCountry(String value) { - this.publisherCountry = value; - } - - /** - * Gets the value of the maxCategories property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxCategories() { - return maxCategories; - } - - /** - * Sets the value of the maxCategories property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxCategories(Integer value) { - this.maxCategories = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordCategoriesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordCategoriesResponse.java deleted file mode 100644 index 14cfd7e038..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordCategoriesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Result" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordCategoryResult" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "result" -}) -@XmlRootElement(name = "GetKeywordCategoriesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordCategoriesResponse { - - @XmlElement(name = "Result", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordCategoryResult result; - - /** - * Gets the value of the result property. - * - * @return - * possible object is - * {@link ArrayOfKeywordCategoryResult } - * - */ - public ArrayOfKeywordCategoryResult getResult() { - return result; - } - - /** - * Sets the value of the result property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordCategoryResult } - * - */ - public void setResult(ArrayOfKeywordCategoryResult value) { - this.result = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordDemographicsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordDemographicsRequest.java deleted file mode 100644 index c84427d2ba..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordDemographicsRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Device" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "language", - "publisherCountry", - "device" -}) -@XmlRootElement(name = "GetKeywordDemographicsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordDemographicsRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "PublisherCountry", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String publisherCountry; - @XmlElement(name = "Device", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring device; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the publisherCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublisherCountry() { - return publisherCountry; - } - - /** - * Sets the value of the publisherCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublisherCountry(String value) { - this.publisherCountry = value; - } - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setDevice(ArrayOfstring value) { - this.device = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordDemographicsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordDemographicsResponse.java deleted file mode 100644 index e245a366f6..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordDemographicsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordDemographicResult" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordDemographicResult" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordDemographicResult" -}) -@XmlRootElement(name = "GetKeywordDemographicsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordDemographicsResponse { - - @XmlElement(name = "KeywordDemographicResult", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordDemographicResult keywordDemographicResult; - - /** - * Gets the value of the keywordDemographicResult property. - * - * @return - * possible object is - * {@link ArrayOfKeywordDemographicResult } - * - */ - public ArrayOfKeywordDemographicResult getKeywordDemographicResult() { - return keywordDemographicResult; - } - - /** - * Sets the value of the keywordDemographicResult property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordDemographicResult } - * - */ - public void setKeywordDemographicResult(ArrayOfKeywordDemographicResult value) { - this.keywordDemographicResult = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeaCategoriesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeaCategoriesRequest.java deleted file mode 100644 index 9bc388eb6b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeaCategoriesRequest.java +++ /dev/null @@ -1,34 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "GetKeywordIdeaCategoriesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordIdeaCategoriesRequest { - - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeaCategoriesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeaCategoriesResponse.java deleted file mode 100644 index 2de6c987b5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeaCategoriesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdeaCategories" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordIdeaCategory" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordIdeaCategories" -}) -@XmlRootElement(name = "GetKeywordIdeaCategoriesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordIdeaCategoriesResponse { - - @XmlElement(name = "KeywordIdeaCategories", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordIdeaCategory keywordIdeaCategories; - - /** - * Gets the value of the keywordIdeaCategories property. - * - * @return - * possible object is - * {@link ArrayOfKeywordIdeaCategory } - * - */ - public ArrayOfKeywordIdeaCategory getKeywordIdeaCategories() { - return keywordIdeaCategories; - } - - /** - * Sets the value of the keywordIdeaCategories property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordIdeaCategory } - * - */ - public void setKeywordIdeaCategories(ArrayOfKeywordIdeaCategory value) { - this.keywordIdeaCategories = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeasRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeasRequest.java deleted file mode 100644 index a669e28095..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeasRequest.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ExpandIdeas" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="IdeaAttributes" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}ArrayOfKeywordIdeaAttribute" minOccurs="0"/>
- *         <element name="SearchParameters" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}ArrayOfSearchParameter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "expandIdeas", - "ideaAttributes", - "searchParameters" -}) -@XmlRootElement(name = "GetKeywordIdeasRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordIdeasRequest { - - @XmlElement(name = "ExpandIdeas", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Boolean expandIdeas; - @XmlElement(name = "IdeaAttributes", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordIdeaAttribute ideaAttributes; - @XmlElement(name = "SearchParameters", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfSearchParameter searchParameters; - - /** - * Gets the value of the expandIdeas property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getExpandIdeas() { - return expandIdeas; - } - - /** - * Sets the value of the expandIdeas property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExpandIdeas(Boolean value) { - this.expandIdeas = value; - } - - /** - * Gets the value of the ideaAttributes property. - * - * @return - * possible object is - * {@link ArrayOfKeywordIdeaAttribute } - * - */ - public ArrayOfKeywordIdeaAttribute getIdeaAttributes() { - return ideaAttributes; - } - - /** - * Sets the value of the ideaAttributes property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordIdeaAttribute } - * - */ - public void setIdeaAttributes(ArrayOfKeywordIdeaAttribute value) { - this.ideaAttributes = value; - } - - /** - * Gets the value of the searchParameters property. - * - * @return - * possible object is - * {@link ArrayOfSearchParameter } - * - */ - public ArrayOfSearchParameter getSearchParameters() { - return searchParameters; - } - - /** - * Sets the value of the searchParameters property. - * - * @param value - * allowed object is - * {@link ArrayOfSearchParameter } - * - */ - public void setSearchParameters(ArrayOfSearchParameter value) { - this.searchParameters = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeasResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeasResponse.java deleted file mode 100644 index 8f43e1b11f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordIdeasResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordIdeas" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordIdea" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordIdeas" -}) -@XmlRootElement(name = "GetKeywordIdeasResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordIdeasResponse { - - @XmlElement(name = "KeywordIdeas", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordIdea keywordIdeas; - - /** - * Gets the value of the keywordIdeas property. - * - * @return - * possible object is - * {@link ArrayOfKeywordIdea } - * - */ - public ArrayOfKeywordIdea getKeywordIdeas() { - return keywordIdeas; - } - - /** - * Sets the value of the keywordIdeas property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordIdea } - * - */ - public void setKeywordIdeas(ArrayOfKeywordIdea value) { - this.keywordIdeas = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordLocationsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordLocationsRequest.java deleted file mode 100644 index ceae582252..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordLocationsRequest.java +++ /dev/null @@ -1,232 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Device" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Level" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="ParentCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MaxLocations" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "language", - "publisherCountry", - "device", - "level", - "parentCountry", - "maxLocations" -}) -@XmlRootElement(name = "GetKeywordLocationsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordLocationsRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "PublisherCountry", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String publisherCountry; - @XmlElement(name = "Device", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring device; - @XmlElement(name = "Level", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Integer level; - @XmlElement(name = "ParentCountry", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String parentCountry; - @XmlElement(name = "MaxLocations", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Integer maxLocations; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the publisherCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublisherCountry() { - return publisherCountry; - } - - /** - * Sets the value of the publisherCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublisherCountry(String value) { - this.publisherCountry = value; - } - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setDevice(ArrayOfstring value) { - this.device = value; - } - - /** - * Gets the value of the level property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLevel() { - return level; - } - - /** - * Sets the value of the level property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLevel(Integer value) { - this.level = value; - } - - /** - * Gets the value of the parentCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParentCountry() { - return parentCountry; - } - - /** - * Sets the value of the parentCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParentCountry(String value) { - this.parentCountry = value; - } - - /** - * Gets the value of the maxLocations property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxLocations() { - return maxLocations; - } - - /** - * Sets the value of the maxLocations property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxLocations(Integer value) { - this.maxLocations = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordLocationsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordLocationsResponse.java deleted file mode 100644 index e592a2d6a9..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordLocationsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordLocationResult" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordLocationResult" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordLocationResult" -}) -@XmlRootElement(name = "GetKeywordLocationsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordLocationsResponse { - - @XmlElement(name = "KeywordLocationResult", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordLocationResult keywordLocationResult; - - /** - * Gets the value of the keywordLocationResult property. - * - * @return - * possible object is - * {@link ArrayOfKeywordLocationResult } - * - */ - public ArrayOfKeywordLocationResult getKeywordLocationResult() { - return keywordLocationResult; - } - - /** - * Sets the value of the keywordLocationResult property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordLocationResult } - * - */ - public void setKeywordLocationResult(ArrayOfKeywordLocationResult value) { - this.keywordLocationResult = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordOpportunitiesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordOpportunitiesRequest.java deleted file mode 100644 index 320e80a67c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordOpportunitiesRequest.java +++ /dev/null @@ -1,123 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="OpportunityType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordOpportunityType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupId", - "campaignId", - "opportunityType" -}) -@XmlRootElement(name = "GetKeywordOpportunitiesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordOpportunitiesRequest { - - @XmlElement(name = "AdGroupId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long adGroupId; - @XmlElement(name = "CampaignId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long campaignId; - @XmlElement(name = "OpportunityType", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", type = String.class) - @XmlJavaTypeAdapter(Adapter3 .class) - protected Collection opportunityType; - - /** - * 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 opportunityType property. - * - * @return - * possible object is - * {@link String } - * - */ - public Collection getOpportunityType() { - return opportunityType; - } - - /** - * Sets the value of the opportunityType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOpportunityType(Collection value) { - this.opportunityType = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordOpportunitiesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordOpportunitiesResponse.java deleted file mode 100644 index 9e05972345..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordOpportunitiesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Opportunities" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordOpportunity" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "opportunities" -}) -@XmlRootElement(name = "GetKeywordOpportunitiesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordOpportunitiesResponse { - - @XmlElement(name = "Opportunities", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordOpportunity opportunities; - - /** - * Gets the value of the opportunities property. - * - * @return - * possible object is - * {@link ArrayOfKeywordOpportunity } - * - */ - public ArrayOfKeywordOpportunity getOpportunities() { - return opportunities; - } - - /** - * Sets the value of the opportunities property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordOpportunity } - * - */ - public void setOpportunities(ArrayOfKeywordOpportunity value) { - this.opportunities = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordTrafficEstimatesRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordTrafficEstimatesRequest.java deleted file mode 100644 index 000bfd15d5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordTrafficEstimatesRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignEstimators" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfCampaignEstimator" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignEstimators" -}) -@XmlRootElement(name = "GetKeywordTrafficEstimatesRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordTrafficEstimatesRequest { - - @XmlElement(name = "CampaignEstimators", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfCampaignEstimator campaignEstimators; - - /** - * Gets the value of the campaignEstimators property. - * - * @return - * possible object is - * {@link ArrayOfCampaignEstimator } - * - */ - public ArrayOfCampaignEstimator getCampaignEstimators() { - return campaignEstimators; - } - - /** - * Sets the value of the campaignEstimators property. - * - * @param value - * allowed object is - * {@link ArrayOfCampaignEstimator } - * - */ - public void setCampaignEstimators(ArrayOfCampaignEstimator value) { - this.campaignEstimators = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordTrafficEstimatesResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordTrafficEstimatesResponse.java deleted file mode 100644 index 3ae2edc4d0..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/GetKeywordTrafficEstimatesResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignEstimates" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfCampaignEstimate" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignEstimates" -}) -@XmlRootElement(name = "GetKeywordTrafficEstimatesResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class GetKeywordTrafficEstimatesResponse { - - @XmlElement(name = "CampaignEstimates", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfCampaignEstimate campaignEstimates; - - /** - * Gets the value of the campaignEstimates property. - * - * @return - * possible object is - * {@link ArrayOfCampaignEstimate } - * - */ - public ArrayOfCampaignEstimate getCampaignEstimates() { - return campaignEstimates; - } - - /** - * Sets the value of the campaignEstimates property. - * - * @param value - * allowed object is - * {@link ArrayOfCampaignEstimate } - * - */ - public void setCampaignEstimates(ArrayOfCampaignEstimate value) { - this.campaignEstimates = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Guid.java b/proxies/com/microsoft/bingads/v12/adinsight/Guid.java deleted file mode 100644 index d9e7f8a82f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Guid.java +++ /dev/null @@ -1,58 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for guid simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="guid">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "guid", namespace = "http://schemas.microsoft.com/2003/10/Serialization/", propOrder = { - "value" -}) -public class Guid { - - @XmlValue - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/HistoricalSearchCountPeriodic.java b/proxies/com/microsoft/bingads/v12/adinsight/HistoricalSearchCountPeriodic.java deleted file mode 100644 index 4ee227c861..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/HistoricalSearchCountPeriodic.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for HistoricalSearchCountPeriodic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HistoricalSearchCountPeriodic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SearchCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="DayMonthAndYear" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HistoricalSearchCountPeriodic", propOrder = { - "searchCount", - "dayMonthAndYear" -}) -public class HistoricalSearchCountPeriodic { - - @XmlElement(name = "SearchCount") - protected Long searchCount; - @XmlElement(name = "DayMonthAndYear", nillable = true) - protected DayMonthAndYear dayMonthAndYear; - - /** - * Gets the value of the searchCount property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getSearchCount() { - return searchCount; - } - - /** - * Sets the value of the searchCount property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setSearchCount(Long value) { - this.searchCount = value; - } - - /** - * Gets the value of the dayMonthAndYear property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getDayMonthAndYear() { - return dayMonthAndYear; - } - - /** - * Sets the value of the dayMonthAndYear property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setDayMonthAndYear(DayMonthAndYear value) { - this.dayMonthAndYear = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/IAdInsightService.java b/proxies/com/microsoft/bingads/v12/adinsight/IAdInsightService.java deleted file mode 100644 index 805b649c1e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/IAdInsightService.java +++ /dev/null @@ -1,931 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.concurrent.Future; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.AsyncHandler; -import javax.xml.ws.Response; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebService(name = "IAdInsightService", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -@XmlSeeAlso({ - ObjectFactory.class -}) -public interface IAdInsightService { - - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBidOpportunities", action = "GetBidOpportunities") - public Response getBidOpportunitiesAsync( - @WebParam(name = "GetBidOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidOpportunitiesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBidOpportunities", action = "GetBidOpportunities") - public Future getBidOpportunitiesAsync( - @WebParam(name = "GetBidOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidOpportunitiesRequest parameters, - @WebParam(name = "GetBidOpportunitiesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetBidOpportunitiesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBidOpportunities", action = "GetBidOpportunities") - @WebResult(name = "GetBidOpportunitiesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetBidOpportunitiesResponse getBidOpportunities( - @WebParam(name = "GetBidOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidOpportunitiesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBudgetOpportunities", action = "GetBudgetOpportunities") - public Response getBudgetOpportunitiesAsync( - @WebParam(name = "GetBudgetOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBudgetOpportunitiesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBudgetOpportunities", action = "GetBudgetOpportunities") - public Future getBudgetOpportunitiesAsync( - @WebParam(name = "GetBudgetOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBudgetOpportunitiesRequest parameters, - @WebParam(name = "GetBudgetOpportunitiesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetBudgetOpportunitiesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBudgetOpportunities", action = "GetBudgetOpportunities") - @WebResult(name = "GetBudgetOpportunitiesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetBudgetOpportunitiesResponse getBudgetOpportunities( - @WebParam(name = "GetBudgetOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBudgetOpportunitiesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordOpportunities", action = "GetKeywordOpportunities") - public Response getKeywordOpportunitiesAsync( - @WebParam(name = "GetKeywordOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordOpportunitiesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordOpportunities", action = "GetKeywordOpportunities") - public Future getKeywordOpportunitiesAsync( - @WebParam(name = "GetKeywordOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordOpportunitiesRequest parameters, - @WebParam(name = "GetKeywordOpportunitiesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordOpportunitiesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordOpportunities", action = "GetKeywordOpportunities") - @WebResult(name = "GetKeywordOpportunitiesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordOpportunitiesResponse getKeywordOpportunities( - @WebParam(name = "GetKeywordOpportunitiesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordOpportunitiesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetEstimatedBidByKeywordIds", action = "GetEstimatedBidByKeywordIds") - public Response getEstimatedBidByKeywordIdsAsync( - @WebParam(name = "GetEstimatedBidByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedBidByKeywordIdsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetEstimatedBidByKeywordIds", action = "GetEstimatedBidByKeywordIds") - public Future getEstimatedBidByKeywordIdsAsync( - @WebParam(name = "GetEstimatedBidByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedBidByKeywordIdsRequest parameters, - @WebParam(name = "GetEstimatedBidByKeywordIdsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetEstimatedBidByKeywordIdsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetEstimatedBidByKeywordIds", action = "GetEstimatedBidByKeywordIds") - @WebResult(name = "GetEstimatedBidByKeywordIdsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetEstimatedBidByKeywordIdsResponse getEstimatedBidByKeywordIds( - @WebParam(name = "GetEstimatedBidByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedBidByKeywordIdsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetEstimatedPositionByKeywordIds", action = "GetEstimatedPositionByKeywordIds") - public Response getEstimatedPositionByKeywordIdsAsync( - @WebParam(name = "GetEstimatedPositionByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedPositionByKeywordIdsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetEstimatedPositionByKeywordIds", action = "GetEstimatedPositionByKeywordIds") - public Future getEstimatedPositionByKeywordIdsAsync( - @WebParam(name = "GetEstimatedPositionByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedPositionByKeywordIdsRequest parameters, - @WebParam(name = "GetEstimatedPositionByKeywordIdsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetEstimatedPositionByKeywordIdsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetEstimatedPositionByKeywordIds", action = "GetEstimatedPositionByKeywordIds") - @WebResult(name = "GetEstimatedPositionByKeywordIdsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetEstimatedPositionByKeywordIdsResponse getEstimatedPositionByKeywordIds( - @WebParam(name = "GetEstimatedPositionByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedPositionByKeywordIdsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetEstimatedBidByKeywords", action = "GetEstimatedBidByKeywords") - public Response getEstimatedBidByKeywordsAsync( - @WebParam(name = "GetEstimatedBidByKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedBidByKeywordsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetEstimatedBidByKeywords", action = "GetEstimatedBidByKeywords") - public Future getEstimatedBidByKeywordsAsync( - @WebParam(name = "GetEstimatedBidByKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedBidByKeywordsRequest parameters, - @WebParam(name = "GetEstimatedBidByKeywordsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetEstimatedBidByKeywordsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetEstimatedBidByKeywords", action = "GetEstimatedBidByKeywords") - @WebResult(name = "GetEstimatedBidByKeywordsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetEstimatedBidByKeywordsResponse getEstimatedBidByKeywords( - @WebParam(name = "GetEstimatedBidByKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedBidByKeywordsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetEstimatedPositionByKeywords", action = "GetEstimatedPositionByKeywords") - public Response getEstimatedPositionByKeywordsAsync( - @WebParam(name = "GetEstimatedPositionByKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedPositionByKeywordsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetEstimatedPositionByKeywords", action = "GetEstimatedPositionByKeywords") - public Future getEstimatedPositionByKeywordsAsync( - @WebParam(name = "GetEstimatedPositionByKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedPositionByKeywordsRequest parameters, - @WebParam(name = "GetEstimatedPositionByKeywordsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetEstimatedPositionByKeywordsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetEstimatedPositionByKeywords", action = "GetEstimatedPositionByKeywords") - @WebResult(name = "GetEstimatedPositionByKeywordsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetEstimatedPositionByKeywordsResponse getEstimatedPositionByKeywords( - @WebParam(name = "GetEstimatedPositionByKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetEstimatedPositionByKeywordsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBidLandscapeByAdGroupIds", action = "GetBidLandscapeByAdGroupIds") - public Response getBidLandscapeByAdGroupIdsAsync( - @WebParam(name = "GetBidLandscapeByAdGroupIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidLandscapeByAdGroupIdsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBidLandscapeByAdGroupIds", action = "GetBidLandscapeByAdGroupIds") - public Future getBidLandscapeByAdGroupIdsAsync( - @WebParam(name = "GetBidLandscapeByAdGroupIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidLandscapeByAdGroupIdsRequest parameters, - @WebParam(name = "GetBidLandscapeByAdGroupIdsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetBidLandscapeByAdGroupIdsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBidLandscapeByAdGroupIds", action = "GetBidLandscapeByAdGroupIds") - @WebResult(name = "GetBidLandscapeByAdGroupIdsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetBidLandscapeByAdGroupIdsResponse getBidLandscapeByAdGroupIds( - @WebParam(name = "GetBidLandscapeByAdGroupIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidLandscapeByAdGroupIdsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBidLandscapeByKeywordIds", action = "GetBidLandscapeByKeywordIds") - public Response getBidLandscapeByKeywordIdsAsync( - @WebParam(name = "GetBidLandscapeByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidLandscapeByKeywordIdsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBidLandscapeByKeywordIds", action = "GetBidLandscapeByKeywordIds") - public Future getBidLandscapeByKeywordIdsAsync( - @WebParam(name = "GetBidLandscapeByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidLandscapeByKeywordIdsRequest parameters, - @WebParam(name = "GetBidLandscapeByKeywordIdsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetBidLandscapeByKeywordIdsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBidLandscapeByKeywordIds", action = "GetBidLandscapeByKeywordIds") - @WebResult(name = "GetBidLandscapeByKeywordIdsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetBidLandscapeByKeywordIdsResponse getBidLandscapeByKeywordIds( - @WebParam(name = "GetBidLandscapeByKeywordIdsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetBidLandscapeByKeywordIdsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetHistoricalKeywordPerformance", action = "GetHistoricalKeywordPerformance") - public Response getHistoricalKeywordPerformanceAsync( - @WebParam(name = "GetHistoricalKeywordPerformanceRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetHistoricalKeywordPerformanceRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetHistoricalKeywordPerformance", action = "GetHistoricalKeywordPerformance") - public Future getHistoricalKeywordPerformanceAsync( - @WebParam(name = "GetHistoricalKeywordPerformanceRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetHistoricalKeywordPerformanceRequest parameters, - @WebParam(name = "GetHistoricalKeywordPerformanceResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetHistoricalKeywordPerformanceResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetHistoricalKeywordPerformance", action = "GetHistoricalKeywordPerformance") - @WebResult(name = "GetHistoricalKeywordPerformanceResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetHistoricalKeywordPerformanceResponse getHistoricalKeywordPerformance( - @WebParam(name = "GetHistoricalKeywordPerformanceRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetHistoricalKeywordPerformanceRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetHistoricalSearchCount", action = "GetHistoricalSearchCount") - public Response getHistoricalSearchCountAsync( - @WebParam(name = "GetHistoricalSearchCountRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetHistoricalSearchCountRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetHistoricalSearchCount", action = "GetHistoricalSearchCount") - public Future getHistoricalSearchCountAsync( - @WebParam(name = "GetHistoricalSearchCountRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetHistoricalSearchCountRequest parameters, - @WebParam(name = "GetHistoricalSearchCountResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetHistoricalSearchCountResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetHistoricalSearchCount", action = "GetHistoricalSearchCount") - @WebResult(name = "GetHistoricalSearchCountResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetHistoricalSearchCountResponse getHistoricalSearchCount( - @WebParam(name = "GetHistoricalSearchCountRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetHistoricalSearchCountRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordCategories", action = "GetKeywordCategories") - public Response getKeywordCategoriesAsync( - @WebParam(name = "GetKeywordCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordCategoriesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordCategories", action = "GetKeywordCategories") - public Future getKeywordCategoriesAsync( - @WebParam(name = "GetKeywordCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordCategoriesRequest parameters, - @WebParam(name = "GetKeywordCategoriesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordCategoriesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordCategories", action = "GetKeywordCategories") - @WebResult(name = "GetKeywordCategoriesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordCategoriesResponse getKeywordCategories( - @WebParam(name = "GetKeywordCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordCategoriesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordDemographics", action = "GetKeywordDemographics") - public Response getKeywordDemographicsAsync( - @WebParam(name = "GetKeywordDemographicsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordDemographicsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordDemographics", action = "GetKeywordDemographics") - public Future getKeywordDemographicsAsync( - @WebParam(name = "GetKeywordDemographicsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordDemographicsRequest parameters, - @WebParam(name = "GetKeywordDemographicsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordDemographicsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordDemographics", action = "GetKeywordDemographics") - @WebResult(name = "GetKeywordDemographicsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordDemographicsResponse getKeywordDemographics( - @WebParam(name = "GetKeywordDemographicsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordDemographicsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordLocations", action = "GetKeywordLocations") - public Response getKeywordLocationsAsync( - @WebParam(name = "GetKeywordLocationsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordLocationsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordLocations", action = "GetKeywordLocations") - public Future getKeywordLocationsAsync( - @WebParam(name = "GetKeywordLocationsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordLocationsRequest parameters, - @WebParam(name = "GetKeywordLocationsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordLocationsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordLocations", action = "GetKeywordLocations") - @WebResult(name = "GetKeywordLocationsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordLocationsResponse getKeywordLocations( - @WebParam(name = "GetKeywordLocationsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordLocationsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "SuggestKeywordsForUrl", action = "SuggestKeywordsForUrl") - public Response suggestKeywordsForUrlAsync( - @WebParam(name = "SuggestKeywordsForUrlRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - SuggestKeywordsForUrlRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "SuggestKeywordsForUrl", action = "SuggestKeywordsForUrl") - public Future suggestKeywordsForUrlAsync( - @WebParam(name = "SuggestKeywordsForUrlRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - SuggestKeywordsForUrlRequest parameters, - @WebParam(name = "SuggestKeywordsForUrlResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.SuggestKeywordsForUrlResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "SuggestKeywordsForUrl", action = "SuggestKeywordsForUrl") - @WebResult(name = "SuggestKeywordsForUrlResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public SuggestKeywordsForUrlResponse suggestKeywordsForUrl( - @WebParam(name = "SuggestKeywordsForUrlRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - SuggestKeywordsForUrlRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "SuggestKeywordsFromExistingKeywords", action = "SuggestKeywordsFromExistingKeywords") - public Response suggestKeywordsFromExistingKeywordsAsync( - @WebParam(name = "SuggestKeywordsFromExistingKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - SuggestKeywordsFromExistingKeywordsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "SuggestKeywordsFromExistingKeywords", action = "SuggestKeywordsFromExistingKeywords") - public Future suggestKeywordsFromExistingKeywordsAsync( - @WebParam(name = "SuggestKeywordsFromExistingKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - SuggestKeywordsFromExistingKeywordsRequest parameters, - @WebParam(name = "SuggestKeywordsFromExistingKeywordsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.SuggestKeywordsFromExistingKeywordsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "SuggestKeywordsFromExistingKeywords", action = "SuggestKeywordsFromExistingKeywords") - @WebResult(name = "SuggestKeywordsFromExistingKeywordsResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public SuggestKeywordsFromExistingKeywordsResponse suggestKeywordsFromExistingKeywords( - @WebParam(name = "SuggestKeywordsFromExistingKeywordsRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - SuggestKeywordsFromExistingKeywordsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetAuctionInsightData", action = "GetAuctionInsightData") - public Response getAuctionInsightDataAsync( - @WebParam(name = "GetAuctionInsightDataRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetAuctionInsightDataRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetAuctionInsightData", action = "GetAuctionInsightData") - public Future getAuctionInsightDataAsync( - @WebParam(name = "GetAuctionInsightDataRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetAuctionInsightDataRequest parameters, - @WebParam(name = "GetAuctionInsightDataResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetAuctionInsightDataResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetAuctionInsightData", action = "GetAuctionInsightData") - @WebResult(name = "GetAuctionInsightDataResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetAuctionInsightDataResponse getAuctionInsightData( - @WebParam(name = "GetAuctionInsightDataRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetAuctionInsightDataRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetDomainCategories", action = "GetDomainCategories") - public Response getDomainCategoriesAsync( - @WebParam(name = "GetDomainCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetDomainCategoriesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetDomainCategories", action = "GetDomainCategories") - public Future getDomainCategoriesAsync( - @WebParam(name = "GetDomainCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetDomainCategoriesRequest parameters, - @WebParam(name = "GetDomainCategoriesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetDomainCategoriesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetDomainCategories", action = "GetDomainCategories") - @WebResult(name = "GetDomainCategoriesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetDomainCategoriesResponse getDomainCategories( - @WebParam(name = "GetDomainCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetDomainCategoriesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "PutMetricData", action = "PutMetricData") - public Response putMetricDataAsync( - @WebParam(name = "PutMetricDataRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - PutMetricDataRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "PutMetricData", action = "PutMetricData") - public Future putMetricDataAsync( - @WebParam(name = "PutMetricDataRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - PutMetricDataRequest parameters, - @WebParam(name = "PutMetricDataResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.PutMetricDataResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "PutMetricData", action = "PutMetricData") - @WebResult(name = "PutMetricDataResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public PutMetricDataResponse putMetricData( - @WebParam(name = "PutMetricDataRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - PutMetricDataRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordIdeaCategories", action = "GetKeywordIdeaCategories") - public Response getKeywordIdeaCategoriesAsync( - @WebParam(name = "GetKeywordIdeaCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordIdeaCategoriesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordIdeaCategories", action = "GetKeywordIdeaCategories") - public Future getKeywordIdeaCategoriesAsync( - @WebParam(name = "GetKeywordIdeaCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordIdeaCategoriesRequest parameters, - @WebParam(name = "GetKeywordIdeaCategoriesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordIdeaCategoriesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordIdeaCategories", action = "GetKeywordIdeaCategories") - @WebResult(name = "GetKeywordIdeaCategoriesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordIdeaCategoriesResponse getKeywordIdeaCategories( - @WebParam(name = "GetKeywordIdeaCategoriesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordIdeaCategoriesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordIdeas", action = "GetKeywordIdeas") - public Response getKeywordIdeasAsync( - @WebParam(name = "GetKeywordIdeasRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordIdeasRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordIdeas", action = "GetKeywordIdeas") - public Future getKeywordIdeasAsync( - @WebParam(name = "GetKeywordIdeasRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordIdeasRequest parameters, - @WebParam(name = "GetKeywordIdeasResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordIdeasResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordIdeas", action = "GetKeywordIdeas") - @WebResult(name = "GetKeywordIdeasResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordIdeasResponse getKeywordIdeas( - @WebParam(name = "GetKeywordIdeasRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordIdeasRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetKeywordTrafficEstimates", action = "GetKeywordTrafficEstimates") - public Response getKeywordTrafficEstimatesAsync( - @WebParam(name = "GetKeywordTrafficEstimatesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordTrafficEstimatesRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetKeywordTrafficEstimates", action = "GetKeywordTrafficEstimates") - public Future getKeywordTrafficEstimatesAsync( - @WebParam(name = "GetKeywordTrafficEstimatesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordTrafficEstimatesRequest parameters, - @WebParam(name = "GetKeywordTrafficEstimatesResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.adinsight.GetKeywordTrafficEstimatesResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetKeywordTrafficEstimates", action = "GetKeywordTrafficEstimates") - @WebResult(name = "GetKeywordTrafficEstimatesResponse", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - public GetKeywordTrafficEstimatesResponse getKeywordTrafficEstimates( - @WebParam(name = "GetKeywordTrafficEstimatesRequest", targetNamespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", partName = "parameters") - GetKeywordTrafficEstimatesRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/IDREFS.java b/proxies/com/microsoft/bingads/v12/adinsight/IDREFS.java deleted file mode 100644 index 31778c56b1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/IDREFS.java +++ /dev/null @@ -1,72 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for IDREFS simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="IDREFS">
- *   <restriction>
- *     <simpleType>
- *       <list itemType="{http://www.w3.org/2001/XMLSchema}IDREF" />
- *     </simpleType>
- *     <minLength value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "IDREFS", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "values" -}) -public class IDREFS { - - @XmlValue - @XmlIDREF - @XmlSchemaType(name = "IDREFS") - protected List values; - - /** - * Gets the value of the values 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 JAXB object. - * This is why there is not a set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/IdeaTextSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/IdeaTextSearchParameter.java deleted file mode 100644 index 9e5a204692..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/IdeaTextSearchParameter.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for IdeaTextSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="IdeaTextSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Excluded" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}ArrayOfKeyword" minOccurs="0"/>
- *         <element name="Included" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}ArrayOfKeyword" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "IdeaTextSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "excluded", - "included" -}) -public class IdeaTextSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Excluded", nillable = true) - protected ArrayOfKeyword excluded; - @XmlElement(name = "Included", nillable = true) - protected ArrayOfKeyword included; - - /** - * Gets the value of the excluded property. - * - * @return - * possible object is - * {@link ArrayOfKeyword } - * - */ - public ArrayOfKeyword getExcluded() { - return excluded; - } - - /** - * Sets the value of the excluded property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyword } - * - */ - public void setExcluded(ArrayOfKeyword value) { - this.excluded = value; - } - - /** - * Gets the value of the included property. - * - * @return - * possible object is - * {@link ArrayOfKeyword } - * - */ - public ArrayOfKeyword getIncluded() { - return included; - } - - /** - * Sets the value of the included property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyword } - * - */ - public void setIncluded(ArrayOfKeyword value) { - this.included = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ImpressionShareSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/ImpressionShareSearchParameter.java deleted file mode 100644 index a27c969a50..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ImpressionShareSearchParameter.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ImpressionShareSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ImpressionShareSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Maximum" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Minimum" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ImpressionShareSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "maximum", - "minimum" -}) -public class ImpressionShareSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Maximum", nillable = true) - protected Double maximum; - @XmlElement(name = "Minimum", nillable = true) - protected Double minimum; - - /** - * Gets the value of the maximum property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaximum() { - return maximum; - } - - /** - * Sets the value of the maximum property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaximum(Double value) { - this.maximum = value; - } - - /** - * Gets the value of the minimum property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinimum() { - return minimum; - } - - /** - * Sets the value of the minimum property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinimum(Double value) { - this.minimum = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Keyword.java b/proxies/com/microsoft/bingads/v12/adinsight/Keyword.java deleted file mode 100644 index 9d11262fea..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Keyword.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Keyword complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Keyword">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="MatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MatchType" minOccurs="0"/>
- *         <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Keyword", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", propOrder = { - "id", - "matchType", - "text" -}) -public class Keyword { - - @XmlElement(name = "Id", nillable = true) - protected Long id; - @XmlElement(name = "MatchType") - @XmlSchemaType(name = "string") - protected MatchType matchType; - @XmlElement(name = "Text", nillable = true) - protected String text; - - /** - * 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 matchType property. - * - * @return - * possible object is - * {@link MatchType } - * - */ - public MatchType getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link MatchType } - * - */ - public void setMatchType(MatchType value) { - this.matchType = 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordAndConfidence.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordAndConfidence.java deleted file mode 100644 index c184803ae6..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordAndConfidence.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordAndConfidence complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordAndConfidence">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SuggestedKeyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ConfidenceScore" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordAndConfidence", propOrder = { - "suggestedKeyword", - "confidenceScore" -}) -public class KeywordAndConfidence { - - @XmlElement(name = "SuggestedKeyword", nillable = true) - protected String suggestedKeyword; - @XmlElement(name = "ConfidenceScore") - protected Double confidenceScore; - - /** - * Gets the value of the suggestedKeyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSuggestedKeyword() { - return suggestedKeyword; - } - - /** - * Sets the value of the suggestedKeyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSuggestedKeyword(String value) { - this.suggestedKeyword = value; - } - - /** - * Gets the value of the confidenceScore property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getConfidenceScore() { - return confidenceScore; - } - - /** - * Sets the value of the confidenceScore property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setConfidenceScore(Double value) { - this.confidenceScore = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordAndMatchType.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordAndMatchType.java deleted file mode 100644 index d5d69d1dee..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordAndMatchType.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordAndMatchType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordAndMatchType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MatchTypes" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfMatchType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordAndMatchType", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message", propOrder = { - "keywordText", - "matchTypes" -}) -public class KeywordAndMatchType { - - @XmlElement(name = "KeywordText", nillable = true) - protected String keywordText; - @XmlElement(name = "MatchTypes", nillable = true) - protected ArrayOfMatchType matchTypes; - - /** - * Gets the value of the keywordText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeywordText() { - return keywordText; - } - - /** - * Sets the value of the keywordText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeywordText(String value) { - this.keywordText = value; - } - - /** - * Gets the value of the matchTypes property. - * - * @return - * possible object is - * {@link ArrayOfMatchType } - * - */ - public ArrayOfMatchType getMatchTypes() { - return matchTypes; - } - - /** - * Sets the value of the matchTypes property. - * - * @param value - * allowed object is - * {@link ArrayOfMatchType } - * - */ - public void setMatchTypes(ArrayOfMatchType value) { - this.matchTypes = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordBidLandscape.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordBidLandscape.java deleted file mode 100644 index f227061fd7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordBidLandscape.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordBidLandscape complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordBidLandscape">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="StartDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="EndDate" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}DayMonthAndYear" minOccurs="0"/>
- *         <element name="BidLandscapePoints" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfBidLandscapePoint" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordBidLandscape", propOrder = { - "keywordId", - "startDate", - "endDate", - "bidLandscapePoints" -}) -public class KeywordBidLandscape { - - @XmlElement(name = "KeywordId") - protected Long keywordId; - @XmlElement(name = "StartDate", nillable = true) - protected DayMonthAndYear startDate; - @XmlElement(name = "EndDate", nillable = true) - protected DayMonthAndYear endDate; - @XmlElement(name = "BidLandscapePoints", nillable = true) - protected ArrayOfBidLandscapePoint bidLandscapePoints; - - /** - * Gets the value of the keywordId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKeywordId() { - return keywordId; - } - - /** - * Sets the value of the keywordId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKeywordId(Long value) { - this.keywordId = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setStartDate(DayMonthAndYear value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link DayMonthAndYear } - * - */ - public DayMonthAndYear getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link DayMonthAndYear } - * - */ - public void setEndDate(DayMonthAndYear value) { - this.endDate = value; - } - - /** - * Gets the value of the bidLandscapePoints property. - * - * @return - * possible object is - * {@link ArrayOfBidLandscapePoint } - * - */ - public ArrayOfBidLandscapePoint getBidLandscapePoints() { - return bidLandscapePoints; - } - - /** - * Sets the value of the bidLandscapePoints property. - * - * @param value - * allowed object is - * {@link ArrayOfBidLandscapePoint } - * - */ - public void setBidLandscapePoints(ArrayOfBidLandscapePoint value) { - this.bidLandscapePoints = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordCategory.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordCategory.java deleted file mode 100644 index 6eaba0494a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordCategory.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordCategory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordCategory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ConfidenceScore" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordCategory", propOrder = { - "category", - "confidenceScore" -}) -public class KeywordCategory { - - @XmlElement(name = "Category", nillable = true) - protected String category; - @XmlElement(name = "ConfidenceScore") - protected Double confidenceScore; - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the confidenceScore property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getConfidenceScore() { - return confidenceScore; - } - - /** - * Sets the value of the confidenceScore property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setConfidenceScore(Double value) { - this.confidenceScore = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordCategoryResult.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordCategoryResult.java deleted file mode 100644 index 645f9448f9..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordCategoryResult.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordCategoryResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordCategoryResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KeywordCategories" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordCategory" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordCategoryResult", propOrder = { - "keyword", - "keywordCategories" -}) -public class KeywordCategoryResult { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "KeywordCategories", nillable = true) - protected ArrayOfKeywordCategory keywordCategories; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the keywordCategories property. - * - * @return - * possible object is - * {@link ArrayOfKeywordCategory } - * - */ - public ArrayOfKeywordCategory getKeywordCategories() { - return keywordCategories; - } - - /** - * Sets the value of the keywordCategories property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordCategory } - * - */ - public void setKeywordCategories(ArrayOfKeywordCategory value) { - this.keywordCategories = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordDemographic.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordDemographic.java deleted file mode 100644 index f156e3e808..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordDemographic.java +++ /dev/null @@ -1,314 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordDemographic complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordDemographic">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="EighteenToTwentyFour" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="TwentyFiveToThirtyFour" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="ThirtyFiveToFourtyNine" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="FiftyToSixtyFour" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="SixtyFiveAndAbove" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AgeUnknown" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Female" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Male" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="GenderUnknown" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordDemographic", propOrder = { - "device", - "eighteenToTwentyFour", - "twentyFiveToThirtyFour", - "thirtyFiveToFourtyNine", - "fiftyToSixtyFour", - "sixtyFiveAndAbove", - "ageUnknown", - "female", - "male", - "genderUnknown" -}) -public class KeywordDemographic { - - @XmlElement(name = "Device", nillable = true) - protected String device; - @XmlElement(name = "EighteenToTwentyFour") - protected Double eighteenToTwentyFour; - @XmlElement(name = "TwentyFiveToThirtyFour") - protected Double twentyFiveToThirtyFour; - @XmlElement(name = "ThirtyFiveToFourtyNine") - protected Double thirtyFiveToFourtyNine; - @XmlElement(name = "FiftyToSixtyFour") - protected Double fiftyToSixtyFour; - @XmlElement(name = "SixtyFiveAndAbove") - protected Double sixtyFiveAndAbove; - @XmlElement(name = "AgeUnknown") - protected Double ageUnknown; - @XmlElement(name = "Female") - protected Double female; - @XmlElement(name = "Male") - protected Double male; - @XmlElement(name = "GenderUnknown") - protected Double genderUnknown; - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDevice(String value) { - this.device = value; - } - - /** - * Gets the value of the eighteenToTwentyFour property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEighteenToTwentyFour() { - return eighteenToTwentyFour; - } - - /** - * Sets the value of the eighteenToTwentyFour property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEighteenToTwentyFour(Double value) { - this.eighteenToTwentyFour = value; - } - - /** - * Gets the value of the twentyFiveToThirtyFour property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getTwentyFiveToThirtyFour() { - return twentyFiveToThirtyFour; - } - - /** - * Sets the value of the twentyFiveToThirtyFour property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setTwentyFiveToThirtyFour(Double value) { - this.twentyFiveToThirtyFour = value; - } - - /** - * Gets the value of the thirtyFiveToFourtyNine property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getThirtyFiveToFourtyNine() { - return thirtyFiveToFourtyNine; - } - - /** - * Sets the value of the thirtyFiveToFourtyNine property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setThirtyFiveToFourtyNine(Double value) { - this.thirtyFiveToFourtyNine = value; - } - - /** - * Gets the value of the fiftyToSixtyFour property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getFiftyToSixtyFour() { - return fiftyToSixtyFour; - } - - /** - * Sets the value of the fiftyToSixtyFour property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setFiftyToSixtyFour(Double value) { - this.fiftyToSixtyFour = value; - } - - /** - * Gets the value of the sixtyFiveAndAbove property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getSixtyFiveAndAbove() { - return sixtyFiveAndAbove; - } - - /** - * Sets the value of the sixtyFiveAndAbove property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setSixtyFiveAndAbove(Double value) { - this.sixtyFiveAndAbove = value; - } - - /** - * Gets the value of the ageUnknown property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAgeUnknown() { - return ageUnknown; - } - - /** - * Sets the value of the ageUnknown property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAgeUnknown(Double value) { - this.ageUnknown = value; - } - - /** - * Gets the value of the female property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getFemale() { - return female; - } - - /** - * Sets the value of the female property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setFemale(Double value) { - this.female = value; - } - - /** - * Gets the value of the male property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMale() { - return male; - } - - /** - * Sets the value of the male property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMale(Double value) { - this.male = value; - } - - /** - * Gets the value of the genderUnknown property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getGenderUnknown() { - return genderUnknown; - } - - /** - * Sets the value of the genderUnknown property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setGenderUnknown(Double value) { - this.genderUnknown = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordDemographicResult.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordDemographicResult.java deleted file mode 100644 index 06bafdc604..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordDemographicResult.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordDemographicResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordDemographicResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KeywordDemographics" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordDemographic" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordDemographicResult", propOrder = { - "keyword", - "keywordDemographics" -}) -public class KeywordDemographicResult { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "KeywordDemographics", nillable = true) - protected ArrayOfKeywordDemographic keywordDemographics; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the keywordDemographics property. - * - * @return - * possible object is - * {@link ArrayOfKeywordDemographic } - * - */ - public ArrayOfKeywordDemographic getKeywordDemographics() { - return keywordDemographics; - } - - /** - * Sets the value of the keywordDemographics property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordDemographic } - * - */ - public void setKeywordDemographics(ArrayOfKeywordDemographic value) { - this.keywordDemographics = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimate.java deleted file mode 100644 index c9507f2143..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimate.java +++ /dev/null @@ -1,118 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}Keyword" minOccurs="0"/>
- *         <element name="Maximum" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}TrafficEstimate" minOccurs="0"/>
- *         <element name="Minimum" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}TrafficEstimate" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordEstimate", propOrder = { - "keyword", - "maximum", - "minimum" -}) -public class KeywordEstimate { - - @XmlElement(name = "Keyword", nillable = true) - protected Keyword keyword; - @XmlElement(name = "Maximum", nillable = true) - protected TrafficEstimate maximum; - @XmlElement(name = "Minimum", nillable = true) - protected TrafficEstimate minimum; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link Keyword } - * - */ - public Keyword getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link Keyword } - * - */ - public void setKeyword(Keyword value) { - this.keyword = value; - } - - /** - * Gets the value of the maximum property. - * - * @return - * possible object is - * {@link TrafficEstimate } - * - */ - public TrafficEstimate getMaximum() { - return maximum; - } - - /** - * Sets the value of the maximum property. - * - * @param value - * allowed object is - * {@link TrafficEstimate } - * - */ - public void setMaximum(TrafficEstimate value) { - this.maximum = value; - } - - /** - * Gets the value of the minimum property. - * - * @return - * possible object is - * {@link TrafficEstimate } - * - */ - public TrafficEstimate getMinimum() { - return minimum; - } - - /** - * Sets the value of the minimum property. - * - * @param value - * allowed object is - * {@link TrafficEstimate } - * - */ - public void setMinimum(TrafficEstimate value) { - this.minimum = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimatedBid.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimatedBid.java deleted file mode 100644 index 3d6e40c4de..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimatedBid.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordEstimatedBid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordEstimatedBid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="EstimatedBids" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfEstimatedBidAndTraffic" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordEstimatedBid", propOrder = { - "keyword", - "estimatedBids" -}) -public class KeywordEstimatedBid { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "EstimatedBids", nillable = true) - protected ArrayOfEstimatedBidAndTraffic estimatedBids; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the estimatedBids property. - * - * @return - * possible object is - * {@link ArrayOfEstimatedBidAndTraffic } - * - */ - public ArrayOfEstimatedBidAndTraffic getEstimatedBids() { - return estimatedBids; - } - - /** - * Sets the value of the estimatedBids property. - * - * @param value - * allowed object is - * {@link ArrayOfEstimatedBidAndTraffic } - * - */ - public void setEstimatedBids(ArrayOfEstimatedBidAndTraffic value) { - this.estimatedBids = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimatedPosition.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimatedPosition.java deleted file mode 100644 index c5b7b50c44..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimatedPosition.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordEstimatedPosition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordEstimatedPosition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="EstimatedPositions" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfEstimatedPositionAndTraffic" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordEstimatedPosition", propOrder = { - "keyword", - "estimatedPositions" -}) -public class KeywordEstimatedPosition { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "EstimatedPositions", nillable = true) - protected ArrayOfEstimatedPositionAndTraffic estimatedPositions; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the estimatedPositions property. - * - * @return - * possible object is - * {@link ArrayOfEstimatedPositionAndTraffic } - * - */ - public ArrayOfEstimatedPositionAndTraffic getEstimatedPositions() { - return estimatedPositions; - } - - /** - * Sets the value of the estimatedPositions property. - * - * @param value - * allowed object is - * {@link ArrayOfEstimatedPositionAndTraffic } - * - */ - public void setEstimatedPositions(ArrayOfEstimatedPositionAndTraffic value) { - this.estimatedPositions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimator.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimator.java deleted file mode 100644 index 1795b0927b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordEstimator.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordEstimator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordEstimator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}Keyword" minOccurs="0"/>
- *         <element name="MaxCpc" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordEstimator", propOrder = { - "keyword", - "maxCpc" -}) -public class KeywordEstimator { - - @XmlElement(name = "Keyword", nillable = true) - protected Keyword keyword; - @XmlElement(name = "MaxCpc", nillable = true) - protected Double maxCpc; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link Keyword } - * - */ - public Keyword getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link Keyword } - * - */ - public void setKeyword(Keyword value) { - this.keyword = value; - } - - /** - * Gets the value of the maxCpc property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaxCpc() { - return maxCpc; - } - - /** - * Sets the value of the maxCpc property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaxCpc(Double value) { - this.maxCpc = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordHistoricalPerformance.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordHistoricalPerformance.java deleted file mode 100644 index 67fb5b4c80..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordHistoricalPerformance.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordHistoricalPerformance complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordHistoricalPerformance">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KeywordKPIs" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordKPI" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordHistoricalPerformance", propOrder = { - "keyword", - "keywordKPIs" -}) -public class KeywordHistoricalPerformance { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "KeywordKPIs", nillable = true) - protected ArrayOfKeywordKPI keywordKPIs; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the keywordKPIs property. - * - * @return - * possible object is - * {@link ArrayOfKeywordKPI } - * - */ - public ArrayOfKeywordKPI getKeywordKPIs() { - return keywordKPIs; - } - - /** - * Sets the value of the keywordKPIs property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordKPI } - * - */ - public void setKeywordKPIs(ArrayOfKeywordKPI value) { - this.keywordKPIs = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdEstimatedBid.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdEstimatedBid.java deleted file mode 100644 index e217ca4947..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdEstimatedBid.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordIdEstimatedBid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordIdEstimatedBid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="KeywordEstimatedBid" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordEstimatedBid" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordIdEstimatedBid", propOrder = { - "keywordId", - "keywordEstimatedBid" -}) -public class KeywordIdEstimatedBid { - - @XmlElement(name = "KeywordId") - protected Long keywordId; - @XmlElement(name = "KeywordEstimatedBid", nillable = true) - protected KeywordEstimatedBid keywordEstimatedBid; - - /** - * Gets the value of the keywordId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKeywordId() { - return keywordId; - } - - /** - * Sets the value of the keywordId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKeywordId(Long value) { - this.keywordId = value; - } - - /** - * Gets the value of the keywordEstimatedBid property. - * - * @return - * possible object is - * {@link KeywordEstimatedBid } - * - */ - public KeywordEstimatedBid getKeywordEstimatedBid() { - return keywordEstimatedBid; - } - - /** - * Sets the value of the keywordEstimatedBid property. - * - * @param value - * allowed object is - * {@link KeywordEstimatedBid } - * - */ - public void setKeywordEstimatedBid(KeywordEstimatedBid value) { - this.keywordEstimatedBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdEstimatedPosition.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdEstimatedPosition.java deleted file mode 100644 index a426e5fb50..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdEstimatedPosition.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordIdEstimatedPosition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordIdEstimatedPosition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="KeywordEstimatedPosition" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}KeywordEstimatedPosition" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordIdEstimatedPosition", propOrder = { - "keywordId", - "keywordEstimatedPosition" -}) -public class KeywordIdEstimatedPosition { - - @XmlElement(name = "KeywordId") - protected Long keywordId; - @XmlElement(name = "KeywordEstimatedPosition", nillable = true) - protected KeywordEstimatedPosition keywordEstimatedPosition; - - /** - * Gets the value of the keywordId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKeywordId() { - return keywordId; - } - - /** - * Sets the value of the keywordId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKeywordId(Long value) { - this.keywordId = value; - } - - /** - * Gets the value of the keywordEstimatedPosition property. - * - * @return - * possible object is - * {@link KeywordEstimatedPosition } - * - */ - public KeywordEstimatedPosition getKeywordEstimatedPosition() { - return keywordEstimatedPosition; - } - - /** - * Sets the value of the keywordEstimatedPosition property. - * - * @param value - * allowed object is - * {@link KeywordEstimatedPosition } - * - */ - public void setKeywordEstimatedPosition(KeywordEstimatedPosition value) { - this.keywordEstimatedPosition = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdea.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdea.java deleted file mode 100644 index d6e084740b..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdea.java +++ /dev/null @@ -1,289 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordIdea complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordIdea">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdGroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="AdImpressionShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Competition" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}CompetitionLevel" minOccurs="0"/>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MonthlySearchCounts" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="Relevance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Source" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}SourceType" minOccurs="0"/>
- *         <element name="SuggestedBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordIdea", propOrder = { - "adGroupId", - "adGroupName", - "adImpressionShare", - "competition", - "keyword", - "monthlySearchCounts", - "relevance", - "source", - "suggestedBid" -}) -public class KeywordIdea { - - @XmlElement(name = "AdGroupId", nillable = true) - protected Long adGroupId; - @XmlElement(name = "AdGroupName", nillable = true) - protected String adGroupName; - @XmlElement(name = "AdImpressionShare", nillable = true) - protected Double adImpressionShare; - @XmlElement(name = "Competition", nillable = true) - @XmlSchemaType(name = "string") - protected CompetitionLevel competition; - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "MonthlySearchCounts", nillable = true) - protected ArrayOflong monthlySearchCounts; - @XmlElement(name = "Relevance", nillable = true) - protected Double relevance; - @XmlElement(name = "Source", nillable = true) - @XmlSchemaType(name = "string") - protected SourceType source; - @XmlElement(name = "SuggestedBid", nillable = true) - protected Double suggestedBid; - - /** - * 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 adGroupName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdGroupName() { - return adGroupName; - } - - /** - * Sets the value of the adGroupName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdGroupName(String value) { - this.adGroupName = value; - } - - /** - * Gets the value of the adImpressionShare property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAdImpressionShare() { - return adImpressionShare; - } - - /** - * Sets the value of the adImpressionShare property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAdImpressionShare(Double value) { - this.adImpressionShare = value; - } - - /** - * Gets the value of the competition property. - * - * @return - * possible object is - * {@link CompetitionLevel } - * - */ - public CompetitionLevel getCompetition() { - return competition; - } - - /** - * Sets the value of the competition property. - * - * @param value - * allowed object is - * {@link CompetitionLevel } - * - */ - public void setCompetition(CompetitionLevel value) { - this.competition = value; - } - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the monthlySearchCounts property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getMonthlySearchCounts() { - return monthlySearchCounts; - } - - /** - * Sets the value of the monthlySearchCounts property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setMonthlySearchCounts(ArrayOflong value) { - this.monthlySearchCounts = value; - } - - /** - * Gets the value of the relevance property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getRelevance() { - return relevance; - } - - /** - * Sets the value of the relevance property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setRelevance(Double value) { - this.relevance = value; - } - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * {@link SourceType } - * - */ - public SourceType getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * {@link SourceType } - * - */ - public void setSource(SourceType value) { - this.source = value; - } - - /** - * Gets the value of the suggestedBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getSuggestedBid() { - return suggestedBid; - } - - /** - * Sets the value of the suggestedBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setSuggestedBid(Double value) { - this.suggestedBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdeaAttribute.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdeaAttribute.java deleted file mode 100644 index 70fb0f04af..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdeaAttribute.java +++ /dev/null @@ -1,72 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordIdeaAttribute. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="KeywordIdeaAttribute">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AdGroupId"/>
- *     <enumeration value="AdGroupName"/>
- *     <enumeration value="Keyword"/>
- *     <enumeration value="Source"/>
- *     <enumeration value="MonthlySearchCounts"/>
- *     <enumeration value="SuggestedBid"/>
- *     <enumeration value="Competition"/>
- *     <enumeration value="Relevance"/>
- *     <enumeration value="AdImpressionShare"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "KeywordIdeaAttribute", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common") -@XmlEnum -public enum KeywordIdeaAttribute { - - @XmlEnumValue("AdGroupId") - AD_GROUP_ID("AdGroupId"), - @XmlEnumValue("AdGroupName") - AD_GROUP_NAME("AdGroupName"), - @XmlEnumValue("Keyword") - KEYWORD("Keyword"), - @XmlEnumValue("Source") - SOURCE("Source"), - @XmlEnumValue("MonthlySearchCounts") - MONTHLY_SEARCH_COUNTS("MonthlySearchCounts"), - @XmlEnumValue("SuggestedBid") - SUGGESTED_BID("SuggestedBid"), - @XmlEnumValue("Competition") - COMPETITION("Competition"), - @XmlEnumValue("Relevance") - RELEVANCE("Relevance"), - @XmlEnumValue("AdImpressionShare") - AD_IMPRESSION_SHARE("AdImpressionShare"); - private final String value; - - KeywordIdeaAttribute(String v) { - value = v; - } - - public String value() { - return value; - } - - public static KeywordIdeaAttribute fromValue(String v) { - for (KeywordIdeaAttribute c: KeywordIdeaAttribute.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdeaCategory.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdeaCategory.java deleted file mode 100644 index 950c0b2652..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordIdeaCategory.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordIdeaCategory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordIdeaCategory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CategoryId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CategoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordIdeaCategory", propOrder = { - "categoryId", - "categoryName" -}) -public class KeywordIdeaCategory { - - @XmlElement(name = "CategoryId") - protected Long categoryId; - @XmlElement(name = "CategoryName", nillable = true) - protected String categoryName; - - /** - * Gets the value of the categoryId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getCategoryId() { - return categoryId; - } - - /** - * Sets the value of the categoryId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setCategoryId(Long value) { - this.categoryId = value; - } - - /** - * Gets the value of the categoryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategoryName() { - return categoryName; - } - - /** - * Sets the value of the categoryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategoryName(String value) { - this.categoryName = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordKPI.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordKPI.java deleted file mode 100644 index b7c482a009..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordKPI.java +++ /dev/null @@ -1,289 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordKPI complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordKPI">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MatchType" minOccurs="0"/>
- *         <element name="AdPosition" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}AdPosition" minOccurs="0"/>
- *         <element name="Clicks" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Impressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AverageCPC" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="CTR" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="TotalCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AverageBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordKPI", propOrder = { - "device", - "matchType", - "adPosition", - "clicks", - "impressions", - "averageCPC", - "ctr", - "totalCost", - "averageBid" -}) -public class KeywordKPI { - - @XmlElement(name = "Device", nillable = true) - protected String device; - @XmlElement(name = "MatchType") - @XmlSchemaType(name = "string") - protected MatchType matchType; - @XmlElement(name = "AdPosition") - @XmlSchemaType(name = "string") - protected AdPosition adPosition; - @XmlElement(name = "Clicks") - protected Integer clicks; - @XmlElement(name = "Impressions") - protected Long impressions; - @XmlElement(name = "AverageCPC") - protected Double averageCPC; - @XmlElement(name = "CTR") - protected Double ctr; - @XmlElement(name = "TotalCost") - protected Double totalCost; - @XmlElement(name = "AverageBid") - protected Double averageBid; - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDevice(String value) { - this.device = value; - } - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link MatchType } - * - */ - public MatchType getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link MatchType } - * - */ - public void setMatchType(MatchType value) { - this.matchType = value; - } - - /** - * Gets the value of the adPosition property. - * - * @return - * possible object is - * {@link AdPosition } - * - */ - public AdPosition getAdPosition() { - return adPosition; - } - - /** - * Sets the value of the adPosition property. - * - * @param value - * allowed object is - * {@link AdPosition } - * - */ - public void setAdPosition(AdPosition value) { - this.adPosition = value; - } - - /** - * Gets the value of the clicks property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getClicks() { - return clicks; - } - - /** - * Sets the value of the clicks property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setClicks(Integer value) { - this.clicks = value; - } - - /** - * Gets the value of the impressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getImpressions() { - return impressions; - } - - /** - * Sets the value of the impressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setImpressions(Long value) { - this.impressions = value; - } - - /** - * Gets the value of the averageCPC property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCPC() { - return averageCPC; - } - - /** - * Sets the value of the averageCPC property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCPC(Double value) { - this.averageCPC = value; - } - - /** - * Gets the value of the ctr property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCTR() { - return ctr; - } - - /** - * Sets the value of the ctr property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCTR(Double value) { - this.ctr = value; - } - - /** - * Gets the value of the totalCost property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getTotalCost() { - return totalCost; - } - - /** - * Sets the value of the totalCost property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setTotalCost(Double value) { - this.totalCost = value; - } - - /** - * Gets the value of the averageBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageBid() { - return averageBid; - } - - /** - * Sets the value of the averageBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageBid(Double value) { - this.averageBid = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordLocation.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordLocation.java deleted file mode 100644 index 7a2eb365c4..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordLocation.java +++ /dev/null @@ -1,118 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordLocation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordLocation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Percentage" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordLocation", propOrder = { - "device", - "location", - "percentage" -}) -public class KeywordLocation { - - @XmlElement(name = "Device", nillable = true) - protected String device; - @XmlElement(name = "Location", nillable = true) - protected String location; - @XmlElement(name = "Percentage") - protected Double percentage; - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDevice(String value) { - this.device = value; - } - - /** - * Gets the value of the location property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocation() { - return location; - } - - /** - * Sets the value of the location property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocation(String value) { - this.location = value; - } - - /** - * Gets the value of the percentage property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getPercentage() { - return percentage; - } - - /** - * Sets the value of the percentage property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setPercentage(Double value) { - this.percentage = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordLocationResult.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordLocationResult.java deleted file mode 100644 index 43cdad525c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordLocationResult.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordLocationResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordLocationResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KeywordLocations" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordLocation" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordLocationResult", propOrder = { - "keyword", - "keywordLocations" -}) -public class KeywordLocationResult { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "KeywordLocations", nillable = true) - protected ArrayOfKeywordLocation keywordLocations; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the keywordLocations property. - * - * @return - * possible object is - * {@link ArrayOfKeywordLocation } - * - */ - public ArrayOfKeywordLocation getKeywordLocations() { - return keywordLocations; - } - - /** - * Sets the value of the keywordLocations property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordLocation } - * - */ - public void setKeywordLocations(ArrayOfKeywordLocation value) { - this.keywordLocations = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunity.java deleted file mode 100644 index 59c1d8211c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunity.java +++ /dev/null @@ -1,376 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordOpportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordOpportunity">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}Opportunity">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdGroupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CampaignName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Competition" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedIncreaseInClicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedIncreaseInCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="EstimatedIncreaseInImpressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="MatchType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="MonthlySearches" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="SuggestedBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="SuggestedKeyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordOpportunity", propOrder = { - "adGroupId", - "adGroupName", - "campaignId", - "campaignName", - "competition", - "estimatedIncreaseInClicks", - "estimatedIncreaseInCost", - "estimatedIncreaseInImpressions", - "matchType", - "monthlySearches", - "suggestedBid", - "suggestedKeyword" -}) -@XmlSeeAlso({ - BroadMatchKeywordOpportunity.class -}) -public class KeywordOpportunity - extends Opportunity -{ - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "AdGroupName", nillable = true) - protected String adGroupName; - @XmlElement(name = "CampaignId") - protected Long campaignId; - @XmlElement(name = "CampaignName", nillable = true) - protected String campaignName; - @XmlElement(name = "Competition") - protected Double competition; - @XmlElement(name = "EstimatedIncreaseInClicks") - protected Double estimatedIncreaseInClicks; - @XmlElement(name = "EstimatedIncreaseInCost") - protected Double estimatedIncreaseInCost; - @XmlElement(name = "EstimatedIncreaseInImpressions") - protected Long estimatedIncreaseInImpressions; - @XmlElement(name = "MatchType") - protected Integer matchType; - @XmlElement(name = "MonthlySearches") - protected Long monthlySearches; - @XmlElement(name = "SuggestedBid") - protected Double suggestedBid; - @XmlElement(name = "SuggestedKeyword", nillable = true) - protected String suggestedKeyword; - - /** - * 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 adGroupName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdGroupName() { - return adGroupName; - } - - /** - * Sets the value of the adGroupName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdGroupName(String value) { - this.adGroupName = 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 campaignName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCampaignName() { - return campaignName; - } - - /** - * Sets the value of the campaignName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCampaignName(String value) { - this.campaignName = value; - } - - /** - * Gets the value of the competition property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCompetition() { - return competition; - } - - /** - * Sets the value of the competition property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCompetition(Double value) { - this.competition = value; - } - - /** - * Gets the value of the estimatedIncreaseInClicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedIncreaseInClicks() { - return estimatedIncreaseInClicks; - } - - /** - * Sets the value of the estimatedIncreaseInClicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedIncreaseInClicks(Double value) { - this.estimatedIncreaseInClicks = value; - } - - /** - * Gets the value of the estimatedIncreaseInCost property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getEstimatedIncreaseInCost() { - return estimatedIncreaseInCost; - } - - /** - * Sets the value of the estimatedIncreaseInCost property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setEstimatedIncreaseInCost(Double value) { - this.estimatedIncreaseInCost = value; - } - - /** - * Gets the value of the estimatedIncreaseInImpressions property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getEstimatedIncreaseInImpressions() { - return estimatedIncreaseInImpressions; - } - - /** - * Sets the value of the estimatedIncreaseInImpressions property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setEstimatedIncreaseInImpressions(Long value) { - this.estimatedIncreaseInImpressions = value; - } - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMatchType(Integer value) { - this.matchType = value; - } - - /** - * Gets the value of the monthlySearches property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMonthlySearches() { - return monthlySearches; - } - - /** - * Sets the value of the monthlySearches property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMonthlySearches(Long value) { - this.monthlySearches = value; - } - - /** - * Gets the value of the suggestedBid property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getSuggestedBid() { - return suggestedBid; - } - - /** - * Sets the value of the suggestedBid property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setSuggestedBid(Double value) { - this.suggestedBid = value; - } - - /** - * Gets the value of the suggestedKeyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSuggestedKeyword() { - return suggestedKeyword; - } - - /** - * Sets the value of the suggestedKeyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSuggestedKeyword(String value) { - this.suggestedKeyword = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunityType.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunityType.java deleted file mode 100644 index 21621587d5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunityType.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.microsoft.bingads.v12.adinsight; - -/** - * Enum class for KeywordOpportunityType. - */ -public enum KeywordOpportunityType { - - BROAD_MATCH("BroadMatch"), - CAMPAIGN_CONTEXT("CampaignContext"); - - private final String value; - - KeywordOpportunityType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static KeywordOpportunityType fromValue(String v) { - for (KeywordOpportunityType c : KeywordOpportunityType.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/v12/adinsight/KeywordOpportunityTypeConverter.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunityTypeConverter.java deleted file mode 100644 index fba80886b7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordOpportunityTypeConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class KeywordOpportunityTypeConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(KeywordOpportunityType.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (KeywordOpportunityType 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/v12/adinsight/KeywordSearchCount.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordSearchCount.java deleted file mode 100644 index b33bed4d75..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordSearchCount.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordSearchCount complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordSearchCount">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SearchCountsByAttributes" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfSearchCountsByAttributes" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordSearchCount", propOrder = { - "keyword", - "searchCountsByAttributes" -}) -public class KeywordSearchCount { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "SearchCountsByAttributes", nillable = true) - protected ArrayOfSearchCountsByAttributes searchCountsByAttributes; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the searchCountsByAttributes property. - * - * @return - * possible object is - * {@link ArrayOfSearchCountsByAttributes } - * - */ - public ArrayOfSearchCountsByAttributes getSearchCountsByAttributes() { - return searchCountsByAttributes; - } - - /** - * Sets the value of the searchCountsByAttributes property. - * - * @param value - * allowed object is - * {@link ArrayOfSearchCountsByAttributes } - * - */ - public void setSearchCountsByAttributes(ArrayOfSearchCountsByAttributes value) { - this.searchCountsByAttributes = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/KeywordSuggestion.java b/proxies/com/microsoft/bingads/v12/adinsight/KeywordSuggestion.java deleted file mode 100644 index aef70dead2..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/KeywordSuggestion.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeywordSuggestion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeywordSuggestion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SuggestionsAndConfidence" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordAndConfidence" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeywordSuggestion", propOrder = { - "keyword", - "suggestionsAndConfidence" -}) -public class KeywordSuggestion { - - @XmlElement(name = "Keyword", nillable = true) - protected String keyword; - @XmlElement(name = "SuggestionsAndConfidence", nillable = true) - protected ArrayOfKeywordAndConfidence suggestionsAndConfidence; - - /** - * Gets the value of the keyword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyword() { - return keyword; - } - - /** - * Sets the value of the keyword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyword(String value) { - this.keyword = value; - } - - /** - * Gets the value of the suggestionsAndConfidence property. - * - * @return - * possible object is - * {@link ArrayOfKeywordAndConfidence } - * - */ - public ArrayOfKeywordAndConfidence getSuggestionsAndConfidence() { - return suggestionsAndConfidence; - } - - /** - * Sets the value of the suggestionsAndConfidence property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordAndConfidence } - * - */ - public void setSuggestionsAndConfidence(ArrayOfKeywordAndConfidence value) { - this.suggestionsAndConfidence = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Language.java b/proxies/com/microsoft/bingads/v12/adinsight/Language.java deleted file mode 100644 index 88ba9acb48..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Language.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for language simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="language">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
- *     <pattern value="([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{1,8})*"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "language", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class Language { - - @XmlValue - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "language") - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/LanguageCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/LanguageCriterion.java deleted file mode 100644 index 04b9e33e68..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/LanguageCriterion.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LanguageCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LanguageCriterion">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}Criterion">
- *       <sequence>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LanguageCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "language" -}) -public class LanguageCriterion - extends Criterion -{ - - @XmlElement(name = "Language", nillable = true) - protected String language; - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/LanguageSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/LanguageSearchParameter.java deleted file mode 100644 index 175341e648..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/LanguageSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LanguageSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LanguageSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Languages" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}ArrayOfLanguageCriterion" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LanguageSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "languages" -}) -public class LanguageSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Languages", nillable = true) - protected ArrayOfLanguageCriterion languages; - - /** - * Gets the value of the languages property. - * - * @return - * possible object is - * {@link ArrayOfLanguageCriterion } - * - */ - public ArrayOfLanguageCriterion getLanguages() { - return languages; - } - - /** - * Sets the value of the languages property. - * - * @param value - * allowed object is - * {@link ArrayOfLanguageCriterion } - * - */ - public void setLanguages(ArrayOfLanguageCriterion value) { - this.languages = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/LocationCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/LocationCriterion.java deleted file mode 100644 index f6c84bdc66..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/LocationCriterion.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocationCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LocationCriterion">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}Criterion">
- *       <sequence>
- *         <element name="LocationId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LocationCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "locationId" -}) -public class LocationCriterion - extends Criterion -{ - - @XmlElement(name = "LocationId") - protected Long locationId; - - /** - * Gets the value of the locationId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getLocationId() { - return locationId; - } - - /** - * Sets the value of the locationId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setLocationId(Long value) { - this.locationId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/LocationSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/LocationSearchParameter.java deleted file mode 100644 index 6722399b7e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/LocationSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocationSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LocationSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Locations" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}ArrayOfLocationCriterion" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LocationSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "locations" -}) -public class LocationSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Locations", nillable = true) - protected ArrayOfLocationCriterion locations; - - /** - * Gets the value of the locations property. - * - * @return - * possible object is - * {@link ArrayOfLocationCriterion } - * - */ - public ArrayOfLocationCriterion getLocations() { - return locations; - } - - /** - * Sets the value of the locations property. - * - * @param value - * allowed object is - * {@link ArrayOfLocationCriterion } - * - */ - public void setLocations(ArrayOfLocationCriterion value) { - this.locations = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/MatchType.java b/proxies/com/microsoft/bingads/v12/adinsight/MatchType.java deleted file mode 100644 index 7cb5978583..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/MatchType.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MatchType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="MatchType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Exact"/>
- *     <enumeration value="Phrase"/>
- *     <enumeration value="Broad"/>
- *     <enumeration value="Aggregate"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "MatchType") -@XmlEnum -public enum MatchType { - - @XmlEnumValue("Exact") - EXACT("Exact"), - @XmlEnumValue("Phrase") - PHRASE("Phrase"), - @XmlEnumValue("Broad") - BROAD("Broad"), - @XmlEnumValue("Aggregate") - AGGREGATE("Aggregate"); - private final String value; - - MatchType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static MatchType fromValue(String v) { - for (MatchType c: MatchType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/MetricData.java b/proxies/com/microsoft/bingads/v12/adinsight/MetricData.java deleted file mode 100644 index 3c14cc5363..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/MetricData.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetricData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetricData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MetricDetail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MetricType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetricData", propOrder = { - "metricDetail", - "metricType" -}) -public class MetricData { - - @XmlElement(name = "MetricDetail", nillable = true) - protected String metricDetail; - @XmlElement(name = "MetricType", nillable = true) - protected String metricType; - - /** - * Gets the value of the metricDetail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetricDetail() { - return metricDetail; - } - - /** - * Sets the value of the metricDetail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetricDetail(String value) { - this.metricDetail = value; - } - - /** - * Gets the value of the metricType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMetricType() { - return metricType; - } - - /** - * Sets the value of the metricType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMetricType(String value) { - this.metricType = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NCName.java b/proxies/com/microsoft/bingads/v12/adinsight/NCName.java deleted file mode 100644 index a6ac9f0a8c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NCName.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for NCName simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="NCName">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}Name">
- *     <pattern value="[\i-[:]][\c-[:]]*"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NCName", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NCName { - - @XmlValue - @XmlSchemaType(name = "NCName") - protected Name value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link Name } - * - */ - public Name getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link Name } - * - */ - public void setValue(Name value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NMTOKEN.java b/proxies/com/microsoft/bingads/v12/adinsight/NMTOKEN.java deleted file mode 100644 index 9185ca9b51..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NMTOKEN.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for NMTOKEN simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="NMTOKEN">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
- *     <pattern value="\c+"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NMTOKEN", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NMTOKEN { - - @XmlValue - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "NMTOKEN") - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NMTOKENS.java b/proxies/com/microsoft/bingads/v12/adinsight/NMTOKENS.java deleted file mode 100644 index d303ce1d50..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NMTOKENS.java +++ /dev/null @@ -1,70 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for NMTOKENS simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="NMTOKENS">
- *   <restriction>
- *     <simpleType>
- *       <list itemType="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
- *     </simpleType>
- *     <minLength value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NMTOKENS", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "values" -}) -public class NMTOKENS { - - @XmlValue - @XmlSchemaType(name = "NMTOKENS") - protected List values; - - /** - * Gets the value of the values 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 JAXB object. - * This is why there is not a set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NMTOKEN } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Name.java b/proxies/com/microsoft/bingads/v12/adinsight/Name.java deleted file mode 100644 index a2479def4d..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Name.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for Name simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="Name">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
- *     <pattern value="\i\c*"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Name", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class Name { - - @XmlValue - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "Name") - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NegativeInteger.java b/proxies/com/microsoft/bingads/v12/adinsight/NegativeInteger.java deleted file mode 100644 index e2f1ec0d96..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NegativeInteger.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for negativeInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="negativeInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}nonPositiveInteger">
- *     <maxInclusive value="-1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "negativeInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NegativeInteger { - - @XmlValue - @XmlSchemaType(name = "negativeInteger") - protected NonPositiveInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NonPositiveInteger } - * - */ - public NonPositiveInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NonPositiveInteger } - * - */ - public void setValue(NonPositiveInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NegativeKeyword.java b/proxies/com/microsoft/bingads/v12/adinsight/NegativeKeyword.java deleted file mode 100644 index 8b6c9979f5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NegativeKeyword.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NegativeKeyword complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NegativeKeyword">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="MatchType" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}MatchType" minOccurs="0"/>
- *         <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NegativeKeyword", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", propOrder = { - "id", - "matchType", - "text" -}) -public class NegativeKeyword { - - @XmlElement(name = "Id", nillable = true) - protected Long id; - @XmlElement(name = "MatchType") - @XmlSchemaType(name = "string") - protected MatchType matchType; - @XmlElement(name = "Text", nillable = true) - protected String text; - - /** - * 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 matchType property. - * - * @return - * possible object is - * {@link MatchType } - * - */ - public MatchType getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link MatchType } - * - */ - public void setMatchType(MatchType value) { - this.matchType = 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NetworkCriterion.java b/proxies/com/microsoft/bingads/v12/adinsight/NetworkCriterion.java deleted file mode 100644 index 0e9e910ec4..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NetworkCriterion.java +++ /dev/null @@ -1,66 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NetworkCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NetworkCriterion">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}Criterion">
- *       <sequence>
- *         <element name="Network" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common}NetworkType" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NetworkCriterion", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", propOrder = { - "network" -}) -public class NetworkCriterion - extends Criterion -{ - - @XmlElement(name = "Network") - @XmlSchemaType(name = "string") - protected NetworkType network; - - /** - * Gets the value of the network property. - * - * @return - * possible object is - * {@link NetworkType } - * - */ - public NetworkType getNetwork() { - return network; - } - - /** - * Sets the value of the network property. - * - * @param value - * allowed object is - * {@link NetworkType } - * - */ - public void setNetwork(NetworkType value) { - this.network = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NetworkSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/NetworkSearchParameter.java deleted file mode 100644 index 7eda1a6f3e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NetworkSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NetworkSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NetworkSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Network" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions}NetworkCriterion" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NetworkSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "network" -}) -public class NetworkSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Network", nillable = true) - protected NetworkCriterion network; - - /** - * Gets the value of the network property. - * - * @return - * possible object is - * {@link NetworkCriterion } - * - */ - public NetworkCriterion getNetwork() { - return network; - } - - /** - * Sets the value of the network property. - * - * @param value - * allowed object is - * {@link NetworkCriterion } - * - */ - public void setNetwork(NetworkCriterion value) { - this.network = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NetworkType.java b/proxies/com/microsoft/bingads/v12/adinsight/NetworkType.java deleted file mode 100644 index 5c0f63f58c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NetworkType.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NetworkType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="NetworkType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OwnedAndOperatedAndSyndicatedSearch"/>
- *     <enumeration value="OwnedAndOperatedOnly"/>
- *     <enumeration value="SyndicatedSearchOnly"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "NetworkType", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common") -@XmlEnum -public enum NetworkType { - - @XmlEnumValue("OwnedAndOperatedAndSyndicatedSearch") - OWNED_AND_OPERATED_AND_SYNDICATED_SEARCH("OwnedAndOperatedAndSyndicatedSearch"), - @XmlEnumValue("OwnedAndOperatedOnly") - OWNED_AND_OPERATED_ONLY("OwnedAndOperatedOnly"), - @XmlEnumValue("SyndicatedSearchOnly") - SYNDICATED_SEARCH_ONLY("SyndicatedSearchOnly"); - private final String value; - - NetworkType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static NetworkType fromValue(String v) { - for (NetworkType c: NetworkType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NonNegativeInteger.java b/proxies/com/microsoft/bingads/v12/adinsight/NonNegativeInteger.java deleted file mode 100644 index 52b6f0e7a7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NonNegativeInteger.java +++ /dev/null @@ -1,61 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for nonNegativeInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="nonNegativeInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
- *     <minInclusive value="0"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "nonNegativeInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NonNegativeInteger { - - @XmlValue - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setValue(BigInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/NonPositiveInteger.java b/proxies/com/microsoft/bingads/v12/adinsight/NonPositiveInteger.java deleted file mode 100644 index b92dd79f54..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/NonPositiveInteger.java +++ /dev/null @@ -1,61 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for nonPositiveInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="nonPositiveInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
- *     <maxInclusive value="0"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "nonPositiveInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NonPositiveInteger { - - @XmlValue - @XmlSchemaType(name = "nonPositiveInteger") - protected BigInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setValue(BigInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/ObjectFactory.java b/proxies/com/microsoft/bingads/v12/adinsight/ObjectFactory.java deleted file mode 100644 index beb1c2aa6d..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/ObjectFactory.java +++ /dev/null @@ -1,3330 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import java.math.BigDecimal; -import java.util.Calendar; -import java.util.Collection; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the com.microsoft.bingads.v12.adinsight package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CategorySearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "CategorySearchParameter"); - private final static QName _CustomerId_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "CustomerId"); - private final static QName _BudgetLimitType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BudgetLimitType"); - private final static QName _ArrayOfCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "ArrayOfCriterion"); - private final static QName _TrackingId_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "TrackingId"); - private final static QName _ArrayOfAuctionSegment_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAuctionSegment"); - private final static QName _KeywordSuggestion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordSuggestion"); - private final static QName _KeywordIdeaAttribute_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "KeywordIdeaAttribute"); - private final static QName _Criterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "Criterion"); - private final static QName _Duration_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "duration"); - private final static QName _DeviceSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "DeviceSearchParameter"); - private final static QName _ArrayOfOperationError_QNAME = new QName("https://bingads.microsoft.com/AdInsight/v12", "ArrayOfOperationError"); - private final static QName _AuctionSegmentSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "AuctionSegmentSearchParameter"); - private final static QName _ArrayOfKeywordEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordEstimate"); - private final static QName _BidLandscapePoint_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BidLandscapePoint"); - private final static QName _KeywordCategoryResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordCategoryResult"); - private final static QName _ArrayOfAdApiError_QNAME = new QName("https://adapi.microsoft.com", "ArrayOfAdApiError"); - private final static QName _KeywordCategory_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordCategory"); - private final static QName _KeywordAndConfidence_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordAndConfidence"); - private final static QName _ArrayOfBudgetPoint_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfBudgetPoint"); - private final static QName _KeywordOpportunityType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordOpportunityType"); - private final static QName _String_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "string"); - private final static QName _KeywordHistoricalPerformance_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordHistoricalPerformance"); - private final static QName _EstimatedBidAndTraffic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "EstimatedBidAndTraffic"); - private final static QName _CurrencyCode_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "CurrencyCode"); - private final static QName _ArrayOfBudgetOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfBudgetOpportunity"); - private final static QName _BroadMatchSearchQueryKPI_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BroadMatchSearchQueryKPI"); - private final static QName _UnsignedInt_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedInt"); - private final static QName _Short_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "short"); - private final static QName _BudgetPoint_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BudgetPoint"); - private final static QName _KeywordIdeaCategory_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordIdeaCategory"); - private final static QName _ArrayOfKeywordAndConfidence_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordAndConfidence"); - private final static QName _AuthenticationToken_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "AuthenticationToken"); - private final static QName _Boolean_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "boolean"); - private final static QName _ArrayOfBatchError_QNAME = new QName("https://bingads.microsoft.com/AdInsight/v12", "ArrayOfBatchError"); - private final static QName _ArrayOfSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "ArrayOfSearchParameter"); - private final static QName _ArrayOfLanguageCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "ArrayOfLanguageCriterion"); - private final static QName _CompetitionLevel_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "CompetitionLevel"); - private final static QName _EstimatedPositionAndTraffic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "EstimatedPositionAndTraffic"); - private final static QName _BidOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BidOpportunity"); - private final static QName _ArrayOfKeywordIdEstimatedBid_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordIdEstimatedBid"); - private final static QName _Int_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "int"); - private final static QName _ArrayOfKeywordCategory_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordCategory"); - private final static QName _DayMonthAndYear_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "DayMonthAndYear"); - private final static QName _ArrayOfKeywordEstimator_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordEstimator"); - private final static QName _QName_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "QName"); - private final static QName _ArrayOfEstimatedBidAndTraffic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfEstimatedBidAndTraffic"); - private final static QName _ImpressionShareSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "ImpressionShareSearchParameter"); - private final static QName _ArrayOfKeywordBidLandscape_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordBidLandscape"); - private final static QName _KeywordBidLandscape_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordBidLandscape"); - private final static QName _UnsignedByte_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedByte"); - private final static QName _MatchType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "MatchType"); - private final static QName _ArrayOfKeyword_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "ArrayOfKeyword"); - private final static QName _ArrayOfKeywordSuggestion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordSuggestion"); - private final static QName _LocationCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "LocationCriterion"); - private final static QName _KeywordDemographicResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordDemographicResult"); - private final static QName _AdGroupBidLandscape_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AdGroupBidLandscape"); - private final static QName _AuctionSegment_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AuctionSegment"); - private final static QName _DeveloperToken_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "DeveloperToken"); - private final static QName _SuggestedBidSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "SuggestedBidSearchParameter"); - private final static QName _LocationSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "LocationSearchParameter"); - private final static QName _Float_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "float"); - private final static QName _KeywordEstimator_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordEstimator"); - private final static QName _DomainCategory_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "DomainCategory"); - private final static QName _AdApiError_QNAME = new QName("https://adapi.microsoft.com", "AdApiError"); - private final static QName _AdGroupEstimator_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AdGroupEstimator"); - private final static QName _Keyword_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "Keyword"); - private final static QName _DateRangeSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "DateRangeSearchParameter"); - private final static QName _AnyType_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "anyType"); - private final static QName _KeywordEstimatedPosition_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordEstimatedPosition"); - private final static QName _Guid_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "guid"); - private final static QName _CampaignEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "CampaignEstimate"); - private final static QName _Decimal_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "decimal"); - private final static QName _ArrayOfAdGroupBidLandscape_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAdGroupBidLandscape"); - private final static QName _ArrayOfSearchCountsByAttributes_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfSearchCountsByAttributes"); - private final static QName _SearchVolumeSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "SearchVolumeSearchParameter"); - private final static QName _SearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "SearchParameter"); - private final static QName _Base64Binary_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "base64Binary"); - private final static QName _LanguageCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "LanguageCriterion"); - private final static QName _AuctionInsightResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AuctionInsightResult"); - private final static QName _AdPosition_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AdPosition"); - private final static QName _AuctionInsightEntry_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AuctionInsightEntry"); - private final static QName _ArrayOfKeywordAndMatchType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message", "ArrayOfKeywordAndMatchType"); - private final static QName _ArrayOfAdGroupBidLandscapeInput_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAdGroupBidLandscapeInput"); - private final static QName _ArrayOfKeywordIdeaAttribute_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "ArrayOfKeywordIdeaAttribute"); - private final static QName _ExcludeAccountKeywordsSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "ExcludeAccountKeywordsSearchParameter"); - private final static QName _ArrayOfEstimatedPositionAndTraffic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfEstimatedPositionAndTraffic"); - private final static QName _EntityType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "EntityType"); - private final static QName _KeywordOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordOpportunity"); - private final static QName _ArrayOfLocationCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "ArrayOfLocationCriterion"); - private final static QName _CampaignEstimator_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "CampaignEstimator"); - private final static QName _ArrayOflong_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/Arrays", "ArrayOflong"); - private final static QName _AuctionInsightKpi_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AuctionInsightKpi"); - private final static QName _ArrayOfKeywordIdea_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordIdea"); - private final static QName _ArrayOfKeywordCategoryResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordCategoryResult"); - private final static QName _BidOpportunityType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BidOpportunityType"); - private final static QName _ArrayOfstring_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/Arrays", "ArrayOfstring"); - private final static QName _Long_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "long"); - private final static QName _KeywordAndMatchType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message", "KeywordAndMatchType"); - private final static QName _LanguageSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "LanguageSearchParameter"); - private final static QName _ArrayOfKeywordDemographic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordDemographic"); - private final static QName _KeywordLocationResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordLocationResult"); - private final static QName _DateTime_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "dateTime"); - private final static QName _UrlSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "UrlSearchParameter"); - private final static QName _ArrayOfMetricData_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfMetricData"); - private final static QName _NetworkCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "NetworkCriterion"); - private final static QName _ArrayOfKeywordHistoricalPerformance_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordHistoricalPerformance"); - private final static QName _Char_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "char"); - private final static QName _ArrayOfKeywordLocation_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordLocation"); - private final static QName _KeywordLocation_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordLocation"); - private final static QName _ArrayOfCampaignEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfCampaignEstimate"); - private final static QName _OperationError_QNAME = new QName("https://bingads.microsoft.com/AdInsight/v12", "OperationError"); - private final static QName _KeywordIdea_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordIdea"); - private final static QName _BatchError_QNAME = new QName("https://bingads.microsoft.com/AdInsight/v12", "BatchError"); - private final static QName _ArrayOfAuctionInsightKpi_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAuctionInsightKpi"); - private final static QName _ApplicationToken_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "ApplicationToken"); - private final static QName _ArrayOfKeywordKPI_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordKPI"); - private final static QName _ArrayOfKeywordSearchCount_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordSearchCount"); - private final static QName _KeywordIdEstimatedBid_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordIdEstimatedBid"); - private final static QName _IdeaTextSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "IdeaTextSearchParameter"); - private final static QName _ArrayOfBroadMatchSearchQueryKPI_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfBroadMatchSearchQueryKPI"); - private final static QName _ArrayOfAdGroupEstimator_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAdGroupEstimator"); - private final static QName _ArrayOfNegativeKeyword_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "ArrayOfNegativeKeyword"); - private final static QName _ArrayOfMatchType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfMatchType"); - private final static QName _HistoricalSearchCountPeriodic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "HistoricalSearchCountPeriodic"); - private final static QName _SourceType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "SourceType"); - private final static QName _ArrayOfKeywordIdEstimatedPosition_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordIdEstimatedPosition"); - private final static QName _UnsignedLong_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedLong"); - private final static QName _ArrayOfKeywordIdeaCategory_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordIdeaCategory"); - private final static QName _UnsignedShort_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedShort"); - private final static QName _AdGroupBidLandscapeInput_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AdGroupBidLandscapeInput"); - private final static QName _ArrayOfKeywordEstimatedPosition_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordEstimatedPosition"); - private final static QName _UserName_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "UserName"); - private final static QName _ArrayOfCampaignEstimator_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfCampaignEstimator"); - private final static QName _TargetAdPosition_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "TargetAdPosition"); - private final static QName _MetricData_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "MetricData"); - private final static QName _KeywordEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordEstimate"); - private final static QName _ArrayOfKeywordEstimatedBid_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordEstimatedBid"); - private final static QName _ArrayOfCompetitionLevel_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "ArrayOfCompetitionLevel"); - private final static QName _KeywordEstimatedBid_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordEstimatedBid"); - private final static QName _TimeInterval_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "TimeInterval"); - private final static QName _ArrayOfAdGroupEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAdGroupEstimate"); - private final static QName _ApiFaultDetail_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "ApiFaultDetail"); - private final static QName _SearchCountsByAttributes_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "SearchCountsByAttributes"); - private final static QName _NetworkSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "NetworkSearchParameter"); - private final static QName _KeywordSearchCount_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordSearchCount"); - private final static QName _NegativeKeyword_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "NegativeKeyword"); - private final static QName _DeviceCriterion_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", "DeviceCriterion"); - private final static QName _ArrayOfKeywordOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordOpportunity"); - private final static QName _ArrayOfKeywordLocationResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordLocationResult"); - private final static QName _BudgetOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BudgetOpportunity"); - private final static QName _KeywordDemographic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordDemographic"); - private final static QName _AdApiFaultDetail_QNAME = new QName("https://adapi.microsoft.com", "AdApiFaultDetail"); - private final static QName _ArrayOfHistoricalSearchCountPeriodic_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfHistoricalSearchCountPeriodic"); - private final static QName _TrafficEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "TrafficEstimate"); - private final static QName _KeywordIdEstimatedPosition_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordIdEstimatedPosition"); - private final static QName _Opportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "Opportunity"); - private final static QName _ApplicationFault_QNAME = new QName("https://adapi.microsoft.com", "ApplicationFault"); - private final static QName _ArrayOfBidOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfBidOpportunity"); - private final static QName _CompetitionSearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "CompetitionSearchParameter"); - private final static QName _BroadMatchKeywordOpportunity_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BroadMatchKeywordOpportunity"); - private final static QName _NetworkType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", "NetworkType"); - private final static QName _ArrayOfBidLandscapePoint_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfBidLandscapePoint"); - private final static QName _ArrayOfAuctionInsightEntry_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfAuctionInsightEntry"); - private final static QName _ArrayOfDomainCategory_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfDomainCategory"); - private final static QName _AdGroupEstimate_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AdGroupEstimate"); - private final static QName _Password_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "Password"); - private final static QName _AnyURI_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "anyURI"); - private final static QName _AdGroupBidLandscapeType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "AdGroupBidLandscapeType"); - private final static QName _Byte_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "byte"); - private final static QName _Double_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "double"); - private final static QName _CustomerAccountId_QNAME = new QName("Microsoft.Advertiser.AdInsight.Api.Service.V12", "CustomerAccountId"); - private final static QName _KeywordKPI_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "KeywordKPI"); - private final static QName _BudgetPointType_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "BudgetPointType"); - private final static QName _ArrayOfKeywordDemographicResult_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", "ArrayOfKeywordDemographicResult"); - private final static QName _QuerySearchParameter_QNAME = new QName("http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", "QuerySearchParameter"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.microsoft.bingads.v12.adinsight - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link Language } - * - */ - public Language createLanguage() { - return new Language(); - } - - /** - * Create an instance of {@link NonNegativeInteger } - * - */ - public NonNegativeInteger createNonNegativeInteger() { - return new NonNegativeInteger(); - } - - /** - * Create an instance of {@link Name } - * - */ - public Name createName() { - return new Name(); - } - - /** - * Create an instance of {@link NCName } - * - */ - public NCName createNCName() { - return new NCName(); - } - - /** - * Create an instance of {@link ENTITY } - * - */ - public ENTITY createENTITY() { - return new ENTITY(); - } - - /** - * Create an instance of {@link NegativeInteger } - * - */ - public NegativeInteger createNegativeInteger() { - return new NegativeInteger(); - } - - /** - * Create an instance of {@link ENTITIES } - * - */ - public ENTITIES createENTITIES() { - return new ENTITIES(); - } - - /** - * Create an instance of {@link UnsignedLong } - * - */ - public UnsignedLong createUnsignedLong() { - return new UnsignedLong(); - } - - /** - * Create an instance of {@link IDREFS } - * - */ - public IDREFS createIDREFS() { - return new IDREFS(); - } - - /** - * Create an instance of {@link NonPositiveInteger } - * - */ - public NonPositiveInteger createNonPositiveInteger() { - return new NonPositiveInteger(); - } - - /** - * Create an instance of {@link NMTOKEN } - * - */ - public NMTOKEN createNMTOKEN() { - return new NMTOKEN(); - } - - /** - * Create an instance of {@link NMTOKENS } - * - */ - public NMTOKENS createNMTOKENS() { - return new NMTOKENS(); - } - - /** - * Create an instance of {@link PositiveInteger } - * - */ - public PositiveInteger createPositiveInteger() { - return new PositiveInteger(); - } - - /** - * Create an instance of {@link GetKeywordCategoriesResponse } - * - */ - public GetKeywordCategoriesResponse createGetKeywordCategoriesResponse() { - return new GetKeywordCategoriesResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordCategoryResult } - * - */ - public ArrayOfKeywordCategoryResult createArrayOfKeywordCategoryResult() { - return new ArrayOfKeywordCategoryResult(); - } - - /** - * Create an instance of {@link SuggestKeywordsForUrlRequest } - * - */ - public SuggestKeywordsForUrlRequest createSuggestKeywordsForUrlRequest() { - return new SuggestKeywordsForUrlRequest(); - } - - /** - * Create an instance of {@link SuggestKeywordsForUrlResponse } - * - */ - public SuggestKeywordsForUrlResponse createSuggestKeywordsForUrlResponse() { - return new SuggestKeywordsForUrlResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordAndConfidence } - * - */ - public ArrayOfKeywordAndConfidence createArrayOfKeywordAndConfidence() { - return new ArrayOfKeywordAndConfidence(); - } - - /** - * Create an instance of {@link GetAuctionInsightDataRequest } - * - */ - public GetAuctionInsightDataRequest createGetAuctionInsightDataRequest() { - return new GetAuctionInsightDataRequest(); - } - - /** - * Create an instance of {@link ArrayOflong } - * - */ - public ArrayOflong createArrayOflong() { - return new ArrayOflong(); - } - - /** - * Create an instance of {@link ArrayOfSearchParameter } - * - */ - public ArrayOfSearchParameter createArrayOfSearchParameter() { - return new ArrayOfSearchParameter(); - } - - /** - * Create an instance of {@link GetHistoricalKeywordPerformanceRequest } - * - */ - public GetHistoricalKeywordPerformanceRequest createGetHistoricalKeywordPerformanceRequest() { - return new GetHistoricalKeywordPerformanceRequest(); - } - - /** - * Create an instance of {@link ArrayOfstring } - * - */ - public ArrayOfstring createArrayOfstring() { - return new ArrayOfstring(); - } - - /** - * Create an instance of {@link ArrayOfMatchType } - * - */ - public ArrayOfMatchType createArrayOfMatchType() { - return new ArrayOfMatchType(); - } - - /** - * Create an instance of {@link GetEstimatedPositionByKeywordIdsResponse } - * - */ - public GetEstimatedPositionByKeywordIdsResponse createGetEstimatedPositionByKeywordIdsResponse() { - return new GetEstimatedPositionByKeywordIdsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordIdEstimatedPosition } - * - */ - public ArrayOfKeywordIdEstimatedPosition createArrayOfKeywordIdEstimatedPosition() { - return new ArrayOfKeywordIdEstimatedPosition(); - } - - /** - * Create an instance of {@link GetBidLandscapeByAdGroupIdsRequest } - * - */ - public GetBidLandscapeByAdGroupIdsRequest createGetBidLandscapeByAdGroupIdsRequest() { - return new GetBidLandscapeByAdGroupIdsRequest(); - } - - /** - * Create an instance of {@link ArrayOfAdGroupBidLandscapeInput } - * - */ - public ArrayOfAdGroupBidLandscapeInput createArrayOfAdGroupBidLandscapeInput() { - return new ArrayOfAdGroupBidLandscapeInput(); - } - - /** - * Create an instance of {@link GetDomainCategoriesRequest } - * - */ - public GetDomainCategoriesRequest createGetDomainCategoriesRequest() { - return new GetDomainCategoriesRequest(); - } - - /** - * Create an instance of {@link GetEstimatedBidByKeywordsResponse } - * - */ - public GetEstimatedBidByKeywordsResponse createGetEstimatedBidByKeywordsResponse() { - return new GetEstimatedBidByKeywordsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordEstimatedBid } - * - */ - public ArrayOfKeywordEstimatedBid createArrayOfKeywordEstimatedBid() { - return new ArrayOfKeywordEstimatedBid(); - } - - /** - * Create an instance of {@link EstimatedBidAndTraffic } - * - */ - public EstimatedBidAndTraffic createEstimatedBidAndTraffic() { - return new EstimatedBidAndTraffic(); - } - - /** - * Create an instance of {@link GetBidOpportunitiesRequest } - * - */ - public GetBidOpportunitiesRequest createGetBidOpportunitiesRequest() { - return new GetBidOpportunitiesRequest(); - } - - /** - * Create an instance of {@link GetEstimatedPositionByKeywordsResponse } - * - */ - public GetEstimatedPositionByKeywordsResponse createGetEstimatedPositionByKeywordsResponse() { - return new GetEstimatedPositionByKeywordsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordEstimatedPosition } - * - */ - public ArrayOfKeywordEstimatedPosition createArrayOfKeywordEstimatedPosition() { - return new ArrayOfKeywordEstimatedPosition(); - } - - /** - * Create an instance of {@link GetEstimatedPositionByKeywordsRequest } - * - */ - public GetEstimatedPositionByKeywordsRequest createGetEstimatedPositionByKeywordsRequest() { - return new GetEstimatedPositionByKeywordsRequest(); - } - - /** - * Create an instance of {@link SuggestKeywordsFromExistingKeywordsRequest } - * - */ - public SuggestKeywordsFromExistingKeywordsRequest createSuggestKeywordsFromExistingKeywordsRequest() { - return new SuggestKeywordsFromExistingKeywordsRequest(); - } - - /** - * Create an instance of {@link GetKeywordDemographicsResponse } - * - */ - public GetKeywordDemographicsResponse createGetKeywordDemographicsResponse() { - return new GetKeywordDemographicsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordDemographicResult } - * - */ - public ArrayOfKeywordDemographicResult createArrayOfKeywordDemographicResult() { - return new ArrayOfKeywordDemographicResult(); - } - - /** - * Create an instance of {@link GetKeywordTrafficEstimatesResponse } - * - */ - public GetKeywordTrafficEstimatesResponse createGetKeywordTrafficEstimatesResponse() { - return new GetKeywordTrafficEstimatesResponse(); - } - - /** - * Create an instance of {@link ArrayOfCampaignEstimate } - * - */ - public ArrayOfCampaignEstimate createArrayOfCampaignEstimate() { - return new ArrayOfCampaignEstimate(); - } - - /** - * Create an instance of {@link GetKeywordIdeaCategoriesRequest } - * - */ - public GetKeywordIdeaCategoriesRequest createGetKeywordIdeaCategoriesRequest() { - return new GetKeywordIdeaCategoriesRequest(); - } - - /** - * Create an instance of {@link GetBidLandscapeByKeywordIdsResponse } - * - */ - public GetBidLandscapeByKeywordIdsResponse createGetBidLandscapeByKeywordIdsResponse() { - return new GetBidLandscapeByKeywordIdsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordBidLandscape } - * - */ - public ArrayOfKeywordBidLandscape createArrayOfKeywordBidLandscape() { - return new ArrayOfKeywordBidLandscape(); - } - - /** - * Create an instance of {@link GetEstimatedBidByKeywordsRequest } - * - */ - public GetEstimatedBidByKeywordsRequest createGetEstimatedBidByKeywordsRequest() { - return new GetEstimatedBidByKeywordsRequest(); - } - - /** - * Create an instance of {@link ArrayOfKeywordAndMatchType } - * - */ - public ArrayOfKeywordAndMatchType createArrayOfKeywordAndMatchType() { - return new ArrayOfKeywordAndMatchType(); - } - - /** - * Create an instance of {@link GetBudgetOpportunitiesRequest } - * - */ - public GetBudgetOpportunitiesRequest createGetBudgetOpportunitiesRequest() { - return new GetBudgetOpportunitiesRequest(); - } - - /** - * Create an instance of {@link GetKeywordIdeasResponse } - * - */ - public GetKeywordIdeasResponse createGetKeywordIdeasResponse() { - return new GetKeywordIdeasResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordIdea } - * - */ - public ArrayOfKeywordIdea createArrayOfKeywordIdea() { - return new ArrayOfKeywordIdea(); - } - - /** - * Create an instance of {@link GetEstimatedBidByKeywordIdsRequest } - * - */ - public GetEstimatedBidByKeywordIdsRequest createGetEstimatedBidByKeywordIdsRequest() { - return new GetEstimatedBidByKeywordIdsRequest(); - } - - /** - * Create an instance of {@link GetDomainCategoriesResponse } - * - */ - public GetDomainCategoriesResponse createGetDomainCategoriesResponse() { - return new GetDomainCategoriesResponse(); - } - - /** - * Create an instance of {@link ArrayOfDomainCategory } - * - */ - public ArrayOfDomainCategory createArrayOfDomainCategory() { - return new ArrayOfDomainCategory(); - } - - /** - * Create an instance of {@link GetBudgetOpportunitiesResponse } - * - */ - public GetBudgetOpportunitiesResponse createGetBudgetOpportunitiesResponse() { - return new GetBudgetOpportunitiesResponse(); - } - - /** - * Create an instance of {@link ArrayOfBudgetOpportunity } - * - */ - public ArrayOfBudgetOpportunity createArrayOfBudgetOpportunity() { - return new ArrayOfBudgetOpportunity(); - } - - /** - * Create an instance of {@link GetKeywordCategoriesRequest } - * - */ - public GetKeywordCategoriesRequest createGetKeywordCategoriesRequest() { - return new GetKeywordCategoriesRequest(); - } - - /** - * Create an instance of {@link GetKeywordDemographicsRequest } - * - */ - public GetKeywordDemographicsRequest createGetKeywordDemographicsRequest() { - return new GetKeywordDemographicsRequest(); - } - - /** - * Create an instance of {@link GetKeywordOpportunitiesResponse } - * - */ - public GetKeywordOpportunitiesResponse createGetKeywordOpportunitiesResponse() { - return new GetKeywordOpportunitiesResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordOpportunity } - * - */ - public ArrayOfKeywordOpportunity createArrayOfKeywordOpportunity() { - return new ArrayOfKeywordOpportunity(); - } - - /** - * Create an instance of {@link PutMetricDataRequest } - * - */ - public PutMetricDataRequest createPutMetricDataRequest() { - return new PutMetricDataRequest(); - } - - /** - * Create an instance of {@link ArrayOfMetricData } - * - */ - public ArrayOfMetricData createArrayOfMetricData() { - return new ArrayOfMetricData(); - } - - /** - * Create an instance of {@link PutMetricDataResponse } - * - */ - public PutMetricDataResponse createPutMetricDataResponse() { - return new PutMetricDataResponse(); - } - - /** - * Create an instance of {@link GetKeywordOpportunitiesRequest } - * - */ - public GetKeywordOpportunitiesRequest createGetKeywordOpportunitiesRequest() { - return new GetKeywordOpportunitiesRequest(); - } - - /** - * Create an instance of {@link GetHistoricalKeywordPerformanceResponse } - * - */ - public GetHistoricalKeywordPerformanceResponse createGetHistoricalKeywordPerformanceResponse() { - return new GetHistoricalKeywordPerformanceResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordHistoricalPerformance } - * - */ - public ArrayOfKeywordHistoricalPerformance createArrayOfKeywordHistoricalPerformance() { - return new ArrayOfKeywordHistoricalPerformance(); - } - - /** - * Create an instance of {@link GetKeywordTrafficEstimatesRequest } - * - */ - public GetKeywordTrafficEstimatesRequest createGetKeywordTrafficEstimatesRequest() { - return new GetKeywordTrafficEstimatesRequest(); - } - - /** - * Create an instance of {@link ArrayOfCampaignEstimator } - * - */ - public ArrayOfCampaignEstimator createArrayOfCampaignEstimator() { - return new ArrayOfCampaignEstimator(); - } - - /** - * Create an instance of {@link SuggestKeywordsFromExistingKeywordsResponse } - * - */ - public SuggestKeywordsFromExistingKeywordsResponse createSuggestKeywordsFromExistingKeywordsResponse() { - return new SuggestKeywordsFromExistingKeywordsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordSuggestion } - * - */ - public ArrayOfKeywordSuggestion createArrayOfKeywordSuggestion() { - return new ArrayOfKeywordSuggestion(); - } - - /** - * Create an instance of {@link GetKeywordLocationsResponse } - * - */ - public GetKeywordLocationsResponse createGetKeywordLocationsResponse() { - return new GetKeywordLocationsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordLocationResult } - * - */ - public ArrayOfKeywordLocationResult createArrayOfKeywordLocationResult() { - return new ArrayOfKeywordLocationResult(); - } - - /** - * Create an instance of {@link GetBidOpportunitiesResponse } - * - */ - public GetBidOpportunitiesResponse createGetBidOpportunitiesResponse() { - return new GetBidOpportunitiesResponse(); - } - - /** - * Create an instance of {@link ArrayOfBidOpportunity } - * - */ - public ArrayOfBidOpportunity createArrayOfBidOpportunity() { - return new ArrayOfBidOpportunity(); - } - - /** - * Create an instance of {@link GetKeywordLocationsRequest } - * - */ - public GetKeywordLocationsRequest createGetKeywordLocationsRequest() { - return new GetKeywordLocationsRequest(); - } - - /** - * Create an instance of {@link GetHistoricalSearchCountRequest } - * - */ - public GetHistoricalSearchCountRequest createGetHistoricalSearchCountRequest() { - return new GetHistoricalSearchCountRequest(); - } - - /** - * Create an instance of {@link DayMonthAndYear } - * - */ - public DayMonthAndYear createDayMonthAndYear() { - return new DayMonthAndYear(); - } - - /** - * Create an instance of {@link GetKeywordIdeaCategoriesResponse } - * - */ - public GetKeywordIdeaCategoriesResponse createGetKeywordIdeaCategoriesResponse() { - return new GetKeywordIdeaCategoriesResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordIdeaCategory } - * - */ - public ArrayOfKeywordIdeaCategory createArrayOfKeywordIdeaCategory() { - return new ArrayOfKeywordIdeaCategory(); - } - - /** - * Create an instance of {@link GetBidLandscapeByAdGroupIdsResponse } - * - */ - public GetBidLandscapeByAdGroupIdsResponse createGetBidLandscapeByAdGroupIdsResponse() { - return new GetBidLandscapeByAdGroupIdsResponse(); - } - - /** - * Create an instance of {@link ArrayOfAdGroupBidLandscape } - * - */ - public ArrayOfAdGroupBidLandscape createArrayOfAdGroupBidLandscape() { - return new ArrayOfAdGroupBidLandscape(); - } - - /** - * Create an instance of {@link GetHistoricalSearchCountResponse } - * - */ - public GetHistoricalSearchCountResponse createGetHistoricalSearchCountResponse() { - return new GetHistoricalSearchCountResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordSearchCount } - * - */ - public ArrayOfKeywordSearchCount createArrayOfKeywordSearchCount() { - return new ArrayOfKeywordSearchCount(); - } - - /** - * Create an instance of {@link GetEstimatedBidByKeywordIdsResponse } - * - */ - public GetEstimatedBidByKeywordIdsResponse createGetEstimatedBidByKeywordIdsResponse() { - return new GetEstimatedBidByKeywordIdsResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeywordIdEstimatedBid } - * - */ - public ArrayOfKeywordIdEstimatedBid createArrayOfKeywordIdEstimatedBid() { - return new ArrayOfKeywordIdEstimatedBid(); - } - - /** - * Create an instance of {@link GetEstimatedPositionByKeywordIdsRequest } - * - */ - public GetEstimatedPositionByKeywordIdsRequest createGetEstimatedPositionByKeywordIdsRequest() { - return new GetEstimatedPositionByKeywordIdsRequest(); - } - - /** - * Create an instance of {@link GetKeywordIdeasRequest } - * - */ - public GetKeywordIdeasRequest createGetKeywordIdeasRequest() { - return new GetKeywordIdeasRequest(); - } - - /** - * Create an instance of {@link ArrayOfKeywordIdeaAttribute } - * - */ - public ArrayOfKeywordIdeaAttribute createArrayOfKeywordIdeaAttribute() { - return new ArrayOfKeywordIdeaAttribute(); - } - - /** - * Create an instance of {@link GetAuctionInsightDataResponse } - * - */ - public GetAuctionInsightDataResponse createGetAuctionInsightDataResponse() { - return new GetAuctionInsightDataResponse(); - } - - /** - * Create an instance of {@link AuctionInsightResult } - * - */ - public AuctionInsightResult createAuctionInsightResult() { - return new AuctionInsightResult(); - } - - /** - * Create an instance of {@link ApiFaultDetail } - * - */ - public ApiFaultDetail createApiFaultDetail() { - return new ApiFaultDetail(); - } - - /** - * Create an instance of {@link GetBidLandscapeByKeywordIdsRequest } - * - */ - public GetBidLandscapeByKeywordIdsRequest createGetBidLandscapeByKeywordIdsRequest() { - return new GetBidLandscapeByKeywordIdsRequest(); - } - - /** - * Create an instance of {@link EstimatedPositionAndTraffic } - * - */ - public EstimatedPositionAndTraffic createEstimatedPositionAndTraffic() { - return new EstimatedPositionAndTraffic(); - } - - /** - * Create an instance of {@link BidOpportunity } - * - */ - public BidOpportunity createBidOpportunity() { - return new BidOpportunity(); - } - - /** - * Create an instance of {@link ArrayOfKeywordCategory } - * - */ - public ArrayOfKeywordCategory createArrayOfKeywordCategory() { - return new ArrayOfKeywordCategory(); - } - - /** - * Create an instance of {@link ArrayOfKeywordEstimator } - * - */ - public ArrayOfKeywordEstimator createArrayOfKeywordEstimator() { - return new ArrayOfKeywordEstimator(); - } - - /** - * Create an instance of {@link ArrayOfEstimatedBidAndTraffic } - * - */ - public ArrayOfEstimatedBidAndTraffic createArrayOfEstimatedBidAndTraffic() { - return new ArrayOfEstimatedBidAndTraffic(); - } - - /** - * Create an instance of {@link KeywordBidLandscape } - * - */ - public KeywordBidLandscape createKeywordBidLandscape() { - return new KeywordBidLandscape(); - } - - /** - * Create an instance of {@link BroadMatchSearchQueryKPI } - * - */ - public BroadMatchSearchQueryKPI createBroadMatchSearchQueryKPI() { - return new BroadMatchSearchQueryKPI(); - } - - /** - * Create an instance of {@link BudgetPoint } - * - */ - public BudgetPoint createBudgetPoint() { - return new BudgetPoint(); - } - - /** - * Create an instance of {@link KeywordIdeaCategory } - * - */ - public KeywordIdeaCategory createKeywordIdeaCategory() { - return new KeywordIdeaCategory(); - } - - /** - * Create an instance of {@link BidLandscapePoint } - * - */ - public BidLandscapePoint createBidLandscapePoint() { - return new BidLandscapePoint(); - } - - /** - * Create an instance of {@link KeywordCategoryResult } - * - */ - public KeywordCategoryResult createKeywordCategoryResult() { - return new KeywordCategoryResult(); - } - - /** - * Create an instance of {@link KeywordCategory } - * - */ - public KeywordCategory createKeywordCategory() { - return new KeywordCategory(); - } - - /** - * Create an instance of {@link KeywordAndConfidence } - * - */ - public KeywordAndConfidence createKeywordAndConfidence() { - return new KeywordAndConfidence(); - } - - /** - * Create an instance of {@link ArrayOfBudgetPoint } - * - */ - public ArrayOfBudgetPoint createArrayOfBudgetPoint() { - return new ArrayOfBudgetPoint(); - } - - /** - * Create an instance of {@link KeywordHistoricalPerformance } - * - */ - public KeywordHistoricalPerformance createKeywordHistoricalPerformance() { - return new KeywordHistoricalPerformance(); - } - - /** - * Create an instance of {@link ArrayOfAuctionSegment } - * - */ - public ArrayOfAuctionSegment createArrayOfAuctionSegment() { - return new ArrayOfAuctionSegment(); - } - - /** - * Create an instance of {@link KeywordSuggestion } - * - */ - public KeywordSuggestion createKeywordSuggestion() { - return new KeywordSuggestion(); - } - - /** - * Create an instance of {@link ArrayOfKeywordEstimate } - * - */ - public ArrayOfKeywordEstimate createArrayOfKeywordEstimate() { - return new ArrayOfKeywordEstimate(); - } - - /** - * Create an instance of {@link AuctionInsightEntry } - * - */ - public AuctionInsightEntry createAuctionInsightEntry() { - return new AuctionInsightEntry(); - } - - /** - * Create an instance of {@link KeywordEstimatedPosition } - * - */ - public KeywordEstimatedPosition createKeywordEstimatedPosition() { - return new KeywordEstimatedPosition(); - } - - /** - * Create an instance of {@link CampaignEstimate } - * - */ - public CampaignEstimate createCampaignEstimate() { - return new CampaignEstimate(); - } - - /** - * Create an instance of {@link ArrayOfSearchCountsByAttributes } - * - */ - public ArrayOfSearchCountsByAttributes createArrayOfSearchCountsByAttributes() { - return new ArrayOfSearchCountsByAttributes(); - } - - /** - * Create an instance of {@link KeywordEstimator } - * - */ - public KeywordEstimator createKeywordEstimator() { - return new KeywordEstimator(); - } - - /** - * Create an instance of {@link DomainCategory } - * - */ - public DomainCategory createDomainCategory() { - return new DomainCategory(); - } - - /** - * Create an instance of {@link AdGroupEstimator } - * - */ - public AdGroupEstimator createAdGroupEstimator() { - return new AdGroupEstimator(); - } - - /** - * Create an instance of {@link KeywordDemographicResult } - * - */ - public KeywordDemographicResult createKeywordDemographicResult() { - return new KeywordDemographicResult(); - } - - /** - * Create an instance of {@link AdGroupBidLandscape } - * - */ - public AdGroupBidLandscape createAdGroupBidLandscape() { - return new AdGroupBidLandscape(); - } - - /** - * Create an instance of {@link ArrayOfAuctionInsightKpi } - * - */ - public ArrayOfAuctionInsightKpi createArrayOfAuctionInsightKpi() { - return new ArrayOfAuctionInsightKpi(); - } - - /** - * Create an instance of {@link ArrayOfKeywordKPI } - * - */ - public ArrayOfKeywordKPI createArrayOfKeywordKPI() { - return new ArrayOfKeywordKPI(); - } - - /** - * Create an instance of {@link KeywordIdEstimatedBid } - * - */ - public KeywordIdEstimatedBid createKeywordIdEstimatedBid() { - return new KeywordIdEstimatedBid(); - } - - /** - * Create an instance of {@link ArrayOfBroadMatchSearchQueryKPI } - * - */ - public ArrayOfBroadMatchSearchQueryKPI createArrayOfBroadMatchSearchQueryKPI() { - return new ArrayOfBroadMatchSearchQueryKPI(); - } - - /** - * Create an instance of {@link ArrayOfAdGroupEstimator } - * - */ - public ArrayOfAdGroupEstimator createArrayOfAdGroupEstimator() { - return new ArrayOfAdGroupEstimator(); - } - - /** - * Create an instance of {@link HistoricalSearchCountPeriodic } - * - */ - public HistoricalSearchCountPeriodic createHistoricalSearchCountPeriodic() { - return new HistoricalSearchCountPeriodic(); - } - - /** - * Create an instance of {@link ArrayOfKeywordLocation } - * - */ - public ArrayOfKeywordLocation createArrayOfKeywordLocation() { - return new ArrayOfKeywordLocation(); - } - - /** - * Create an instance of {@link KeywordLocation } - * - */ - public KeywordLocation createKeywordLocation() { - return new KeywordLocation(); - } - - /** - * Create an instance of {@link KeywordIdea } - * - */ - public KeywordIdea createKeywordIdea() { - return new KeywordIdea(); - } - - /** - * Create an instance of {@link AuctionInsightKpi } - * - */ - public AuctionInsightKpi createAuctionInsightKpi() { - return new AuctionInsightKpi(); - } - - /** - * Create an instance of {@link ArrayOfKeywordDemographic } - * - */ - public ArrayOfKeywordDemographic createArrayOfKeywordDemographic() { - return new ArrayOfKeywordDemographic(); - } - - /** - * Create an instance of {@link KeywordLocationResult } - * - */ - public KeywordLocationResult createKeywordLocationResult() { - return new KeywordLocationResult(); - } - - /** - * Create an instance of {@link ArrayOfEstimatedPositionAndTraffic } - * - */ - public ArrayOfEstimatedPositionAndTraffic createArrayOfEstimatedPositionAndTraffic() { - return new ArrayOfEstimatedPositionAndTraffic(); - } - - /** - * Create an instance of {@link KeywordOpportunity } - * - */ - public KeywordOpportunity createKeywordOpportunity() { - return new KeywordOpportunity(); - } - - /** - * Create an instance of {@link CampaignEstimator } - * - */ - public CampaignEstimator createCampaignEstimator() { - return new CampaignEstimator(); - } - - /** - * Create an instance of {@link ArrayOfBidLandscapePoint } - * - */ - public ArrayOfBidLandscapePoint createArrayOfBidLandscapePoint() { - return new ArrayOfBidLandscapePoint(); - } - - /** - * Create an instance of {@link ArrayOfAuctionInsightEntry } - * - */ - public ArrayOfAuctionInsightEntry createArrayOfAuctionInsightEntry() { - return new ArrayOfAuctionInsightEntry(); - } - - /** - * Create an instance of {@link AdGroupEstimate } - * - */ - public AdGroupEstimate createAdGroupEstimate() { - return new AdGroupEstimate(); - } - - /** - * Create an instance of {@link KeywordKPI } - * - */ - public KeywordKPI createKeywordKPI() { - return new KeywordKPI(); - } - - /** - * Create an instance of {@link BudgetOpportunity } - * - */ - public BudgetOpportunity createBudgetOpportunity() { - return new BudgetOpportunity(); - } - - /** - * Create an instance of {@link KeywordDemographic } - * - */ - public KeywordDemographic createKeywordDemographic() { - return new KeywordDemographic(); - } - - /** - * Create an instance of {@link ArrayOfHistoricalSearchCountPeriodic } - * - */ - public ArrayOfHistoricalSearchCountPeriodic createArrayOfHistoricalSearchCountPeriodic() { - return new ArrayOfHistoricalSearchCountPeriodic(); - } - - /** - * Create an instance of {@link TrafficEstimate } - * - */ - public TrafficEstimate createTrafficEstimate() { - return new TrafficEstimate(); - } - - /** - * Create an instance of {@link KeywordIdEstimatedPosition } - * - */ - public KeywordIdEstimatedPosition createKeywordIdEstimatedPosition() { - return new KeywordIdEstimatedPosition(); - } - - /** - * Create an instance of {@link Opportunity } - * - */ - public Opportunity createOpportunity() { - return new Opportunity(); - } - - /** - * Create an instance of {@link BroadMatchKeywordOpportunity } - * - */ - public BroadMatchKeywordOpportunity createBroadMatchKeywordOpportunity() { - return new BroadMatchKeywordOpportunity(); - } - - /** - * Create an instance of {@link KeywordEstimatedBid } - * - */ - public KeywordEstimatedBid createKeywordEstimatedBid() { - return new KeywordEstimatedBid(); - } - - /** - * Create an instance of {@link ArrayOfAdGroupEstimate } - * - */ - public ArrayOfAdGroupEstimate createArrayOfAdGroupEstimate() { - return new ArrayOfAdGroupEstimate(); - } - - /** - * Create an instance of {@link SearchCountsByAttributes } - * - */ - public SearchCountsByAttributes createSearchCountsByAttributes() { - return new SearchCountsByAttributes(); - } - - /** - * Create an instance of {@link KeywordSearchCount } - * - */ - public KeywordSearchCount createKeywordSearchCount() { - return new KeywordSearchCount(); - } - - /** - * Create an instance of {@link AdGroupBidLandscapeInput } - * - */ - public AdGroupBidLandscapeInput createAdGroupBidLandscapeInput() { - return new AdGroupBidLandscapeInput(); - } - - /** - * Create an instance of {@link MetricData } - * - */ - public MetricData createMetricData() { - return new MetricData(); - } - - /** - * Create an instance of {@link KeywordEstimate } - * - */ - public KeywordEstimate createKeywordEstimate() { - return new KeywordEstimate(); - } - - /** - * Create an instance of {@link Duration } - * - */ - public Duration createDuration() { - return new Duration(); - } - - /** - * Create an instance of {@link Char } - * - */ - public Char createChar() { - return new Char(); - } - - /** - * Create an instance of {@link Guid } - * - */ - public Guid createGuid() { - return new Guid(); - } - - /** - * Create an instance of {@link Keyword } - * - */ - public Keyword createKeyword() { - return new Keyword(); - } - - /** - * Create an instance of {@link ArrayOfNegativeKeyword } - * - */ - public ArrayOfNegativeKeyword createArrayOfNegativeKeyword() { - return new ArrayOfNegativeKeyword(); - } - - /** - * Create an instance of {@link NegativeKeyword } - * - */ - public NegativeKeyword createNegativeKeyword() { - return new NegativeKeyword(); - } - - /** - * Create an instance of {@link ArrayOfCompetitionLevel } - * - */ - public ArrayOfCompetitionLevel createArrayOfCompetitionLevel() { - return new ArrayOfCompetitionLevel(); - } - - /** - * Create an instance of {@link ArrayOfKeyword } - * - */ - public ArrayOfKeyword createArrayOfKeyword() { - return new ArrayOfKeyword(); - } - - /** - * Create an instance of {@link DeviceCriterion } - * - */ - public DeviceCriterion createDeviceCriterion() { - return new DeviceCriterion(); - } - - /** - * Create an instance of {@link LanguageCriterion } - * - */ - public LanguageCriterion createLanguageCriterion() { - return new LanguageCriterion(); - } - - /** - * Create an instance of {@link ArrayOfLanguageCriterion } - * - */ - public ArrayOfLanguageCriterion createArrayOfLanguageCriterion() { - return new ArrayOfLanguageCriterion(); - } - - /** - * Create an instance of {@link ArrayOfLocationCriterion } - * - */ - public ArrayOfLocationCriterion createArrayOfLocationCriterion() { - return new ArrayOfLocationCriterion(); - } - - /** - * Create an instance of {@link LocationCriterion } - * - */ - public LocationCriterion createLocationCriterion() { - return new LocationCriterion(); - } - - /** - * Create an instance of {@link Criterion } - * - */ - public Criterion createCriterion() { - return new Criterion(); - } - - /** - * Create an instance of {@link ArrayOfCriterion } - * - */ - public ArrayOfCriterion createArrayOfCriterion() { - return new ArrayOfCriterion(); - } - - /** - * Create an instance of {@link NetworkCriterion } - * - */ - public NetworkCriterion createNetworkCriterion() { - return new NetworkCriterion(); - } - - /** - * Create an instance of {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError createArrayOfBatchError() { - return new ArrayOfBatchError(); - } - - /** - * Create an instance of {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError createArrayOfOperationError() { - return new ArrayOfOperationError(); - } - - /** - * Create an instance of {@link BatchError } - * - */ - public BatchError createBatchError() { - return new BatchError(); - } - - /** - * Create an instance of {@link OperationError } - * - */ - public OperationError createOperationError() { - return new OperationError(); - } - - /** - * Create an instance of {@link ApplicationFault } - * - */ - public ApplicationFault createApplicationFault() { - return new ApplicationFault(); - } - - /** - * Create an instance of {@link AdApiError } - * - */ - public AdApiError createAdApiError() { - return new AdApiError(); - } - - /** - * Create an instance of {@link ArrayOfAdApiError } - * - */ - public ArrayOfAdApiError createArrayOfAdApiError() { - return new ArrayOfAdApiError(); - } - - /** - * Create an instance of {@link AdApiFaultDetail } - * - */ - public AdApiFaultDetail createAdApiFaultDetail() { - return new AdApiFaultDetail(); - } - - /** - * Create an instance of {@link KeywordAndMatchType } - * - */ - public KeywordAndMatchType createKeywordAndMatchType() { - return new KeywordAndMatchType(); - } - - /** - * Create an instance of {@link SuggestedBidSearchParameter } - * - */ - public SuggestedBidSearchParameter createSuggestedBidSearchParameter() { - return new SuggestedBidSearchParameter(); - } - - /** - * Create an instance of {@link IdeaTextSearchParameter } - * - */ - public IdeaTextSearchParameter createIdeaTextSearchParameter() { - return new IdeaTextSearchParameter(); - } - - /** - * Create an instance of {@link LocationSearchParameter } - * - */ - public LocationSearchParameter createLocationSearchParameter() { - return new LocationSearchParameter(); - } - - /** - * Create an instance of {@link UrlSearchParameter } - * - */ - public UrlSearchParameter createUrlSearchParameter() { - return new UrlSearchParameter(); - } - - /** - * Create an instance of {@link NetworkSearchParameter } - * - */ - public NetworkSearchParameter createNetworkSearchParameter() { - return new NetworkSearchParameter(); - } - - /** - * Create an instance of {@link LanguageSearchParameter } - * - */ - public LanguageSearchParameter createLanguageSearchParameter() { - return new LanguageSearchParameter(); - } - - /** - * Create an instance of {@link QuerySearchParameter } - * - */ - public QuerySearchParameter createQuerySearchParameter() { - return new QuerySearchParameter(); - } - - /** - * Create an instance of {@link ExcludeAccountKeywordsSearchParameter } - * - */ - public ExcludeAccountKeywordsSearchParameter createExcludeAccountKeywordsSearchParameter() { - return new ExcludeAccountKeywordsSearchParameter(); - } - - /** - * Create an instance of {@link ImpressionShareSearchParameter } - * - */ - public ImpressionShareSearchParameter createImpressionShareSearchParameter() { - return new ImpressionShareSearchParameter(); - } - - /** - * Create an instance of {@link DateRangeSearchParameter } - * - */ - public DateRangeSearchParameter createDateRangeSearchParameter() { - return new DateRangeSearchParameter(); - } - - /** - * Create an instance of {@link CategorySearchParameter } - * - */ - public CategorySearchParameter createCategorySearchParameter() { - return new CategorySearchParameter(); - } - - /** - * Create an instance of {@link DeviceSearchParameter } - * - */ - public DeviceSearchParameter createDeviceSearchParameter() { - return new DeviceSearchParameter(); - } - - /** - * Create an instance of {@link SearchParameter } - * - */ - public SearchParameter createSearchParameter() { - return new SearchParameter(); - } - - /** - * Create an instance of {@link AuctionSegmentSearchParameter } - * - */ - public AuctionSegmentSearchParameter createAuctionSegmentSearchParameter() { - return new AuctionSegmentSearchParameter(); - } - - /** - * Create an instance of {@link SearchVolumeSearchParameter } - * - */ - public SearchVolumeSearchParameter createSearchVolumeSearchParameter() { - return new SearchVolumeSearchParameter(); - } - - /** - * Create an instance of {@link CompetitionSearchParameter } - * - */ - public CompetitionSearchParameter createCompetitionSearchParameter() { - return new CompetitionSearchParameter(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CategorySearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "CategorySearchParameter") - public JAXBElement createCategorySearchParameter(CategorySearchParameter value) { - return new JAXBElement(_CategorySearchParameter_QNAME, CategorySearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "CustomerId") - public JAXBElement createCustomerId(String value) { - return new JAXBElement(_CustomerId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BudgetLimitType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BudgetLimitType") - public JAXBElement createBudgetLimitType(BudgetLimitType value) { - return new JAXBElement(_BudgetLimitType_QNAME, BudgetLimitType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "ArrayOfCriterion") - public JAXBElement createArrayOfCriterion(ArrayOfCriterion value) { - return new JAXBElement(_ArrayOfCriterion_QNAME, ArrayOfCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "TrackingId") - public JAXBElement createTrackingId(String value) { - return new JAXBElement(_TrackingId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAuctionSegment }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAuctionSegment") - public JAXBElement createArrayOfAuctionSegment(ArrayOfAuctionSegment value) { - return new JAXBElement(_ArrayOfAuctionSegment_QNAME, ArrayOfAuctionSegment.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordSuggestion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordSuggestion") - public JAXBElement createKeywordSuggestion(KeywordSuggestion value) { - return new JAXBElement(_KeywordSuggestion_QNAME, KeywordSuggestion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordIdeaAttribute }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "KeywordIdeaAttribute") - public JAXBElement createKeywordIdeaAttribute(KeywordIdeaAttribute value) { - return new JAXBElement(_KeywordIdeaAttribute_QNAME, KeywordIdeaAttribute.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Criterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "Criterion") - public JAXBElement createCriterion(Criterion value) { - return new JAXBElement(_Criterion_QNAME, Criterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Duration }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "duration") - public JAXBElement createDuration(Duration value) { - return new JAXBElement(_Duration_QNAME, Duration.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeviceSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "DeviceSearchParameter") - public JAXBElement createDeviceSearchParameter(DeviceSearchParameter value) { - return new JAXBElement(_DeviceSearchParameter_QNAME, DeviceSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfOperationError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/AdInsight/v12", name = "ArrayOfOperationError") - public JAXBElement createArrayOfOperationError(ArrayOfOperationError value) { - return new JAXBElement(_ArrayOfOperationError_QNAME, ArrayOfOperationError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuctionSegmentSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "AuctionSegmentSearchParameter") - public JAXBElement createAuctionSegmentSearchParameter(AuctionSegmentSearchParameter value) { - return new JAXBElement(_AuctionSegmentSearchParameter_QNAME, AuctionSegmentSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordEstimate") - public JAXBElement createArrayOfKeywordEstimate(ArrayOfKeywordEstimate value) { - return new JAXBElement(_ArrayOfKeywordEstimate_QNAME, ArrayOfKeywordEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BidLandscapePoint }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BidLandscapePoint") - public JAXBElement createBidLandscapePoint(BidLandscapePoint value) { - return new JAXBElement(_BidLandscapePoint_QNAME, BidLandscapePoint.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordCategoryResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordCategoryResult") - public JAXBElement createKeywordCategoryResult(KeywordCategoryResult value) { - return new JAXBElement(_KeywordCategoryResult_QNAME, KeywordCategoryResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdApiError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "ArrayOfAdApiError") - public JAXBElement createArrayOfAdApiError(ArrayOfAdApiError value) { - return new JAXBElement(_ArrayOfAdApiError_QNAME, ArrayOfAdApiError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordCategory }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordCategory") - public JAXBElement createKeywordCategory(KeywordCategory value) { - return new JAXBElement(_KeywordCategory_QNAME, KeywordCategory.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordAndConfidence }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordAndConfidence") - public JAXBElement createKeywordAndConfidence(KeywordAndConfidence value) { - return new JAXBElement(_KeywordAndConfidence_QNAME, KeywordAndConfidence.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBudgetPoint }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfBudgetPoint") - public JAXBElement createArrayOfBudgetPoint(ArrayOfBudgetPoint value) { - return new JAXBElement(_ArrayOfBudgetPoint_QNAME, ArrayOfBudgetPoint.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link KeywordOpportunityType }{@code >}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordOpportunityType") - @XmlJavaTypeAdapter(Adapter3 .class) - public JAXBElement> createKeywordOpportunityType(Collection value) { - return new JAXBElement>(_KeywordOpportunityType_QNAME, ((Class) Collection.class), null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "string") - public JAXBElement createString(String value) { - return new JAXBElement(_String_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordHistoricalPerformance }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordHistoricalPerformance") - public JAXBElement createKeywordHistoricalPerformance(KeywordHistoricalPerformance value) { - return new JAXBElement(_KeywordHistoricalPerformance_QNAME, KeywordHistoricalPerformance.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EstimatedBidAndTraffic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "EstimatedBidAndTraffic") - public JAXBElement createEstimatedBidAndTraffic(EstimatedBidAndTraffic value) { - return new JAXBElement(_EstimatedBidAndTraffic_QNAME, EstimatedBidAndTraffic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CurrencyCode }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "CurrencyCode") - public JAXBElement createCurrencyCode(CurrencyCode value) { - return new JAXBElement(_CurrencyCode_QNAME, CurrencyCode.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBudgetOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfBudgetOpportunity") - public JAXBElement createArrayOfBudgetOpportunity(ArrayOfBudgetOpportunity value) { - return new JAXBElement(_ArrayOfBudgetOpportunity_QNAME, ArrayOfBudgetOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BroadMatchSearchQueryKPI }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BroadMatchSearchQueryKPI") - public JAXBElement createBroadMatchSearchQueryKPI(BroadMatchSearchQueryKPI value) { - return new JAXBElement(_BroadMatchSearchQueryKPI_QNAME, BroadMatchSearchQueryKPI.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedInt") - public JAXBElement createUnsignedInt(Long value) { - return new JAXBElement(_UnsignedInt_QNAME, Long.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Short }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "short") - public JAXBElement createShort(Short value) { - return new JAXBElement(_Short_QNAME, Short.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BudgetPoint }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BudgetPoint") - public JAXBElement createBudgetPoint(BudgetPoint value) { - return new JAXBElement(_BudgetPoint_QNAME, BudgetPoint.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordIdeaCategory }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordIdeaCategory") - public JAXBElement createKeywordIdeaCategory(KeywordIdeaCategory value) { - return new JAXBElement(_KeywordIdeaCategory_QNAME, KeywordIdeaCategory.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordAndConfidence }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordAndConfidence") - public JAXBElement createArrayOfKeywordAndConfidence(ArrayOfKeywordAndConfidence value) { - return new JAXBElement(_ArrayOfKeywordAndConfidence_QNAME, ArrayOfKeywordAndConfidence.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "AuthenticationToken") - public JAXBElement createAuthenticationToken(String value) { - return new JAXBElement(_AuthenticationToken_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "boolean") - public JAXBElement createBoolean(Boolean value) { - return new JAXBElement(_Boolean_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBatchError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/AdInsight/v12", name = "ArrayOfBatchError") - public JAXBElement createArrayOfBatchError(ArrayOfBatchError value) { - return new JAXBElement(_ArrayOfBatchError_QNAME, ArrayOfBatchError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "ArrayOfSearchParameter") - public JAXBElement createArrayOfSearchParameter(ArrayOfSearchParameter value) { - return new JAXBElement(_ArrayOfSearchParameter_QNAME, ArrayOfSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfLanguageCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "ArrayOfLanguageCriterion") - public JAXBElement createArrayOfLanguageCriterion(ArrayOfLanguageCriterion value) { - return new JAXBElement(_ArrayOfLanguageCriterion_QNAME, ArrayOfLanguageCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CompetitionLevel }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "CompetitionLevel") - public JAXBElement createCompetitionLevel(CompetitionLevel value) { - return new JAXBElement(_CompetitionLevel_QNAME, CompetitionLevel.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EstimatedPositionAndTraffic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "EstimatedPositionAndTraffic") - public JAXBElement createEstimatedPositionAndTraffic(EstimatedPositionAndTraffic value) { - return new JAXBElement(_EstimatedPositionAndTraffic_QNAME, EstimatedPositionAndTraffic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BidOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BidOpportunity") - public JAXBElement createBidOpportunity(BidOpportunity value) { - return new JAXBElement(_BidOpportunity_QNAME, BidOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordIdEstimatedBid }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordIdEstimatedBid") - public JAXBElement createArrayOfKeywordIdEstimatedBid(ArrayOfKeywordIdEstimatedBid value) { - return new JAXBElement(_ArrayOfKeywordIdEstimatedBid_QNAME, ArrayOfKeywordIdEstimatedBid.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "int") - public JAXBElement createInt(Integer value) { - return new JAXBElement(_Int_QNAME, Integer.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordCategory }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordCategory") - public JAXBElement createArrayOfKeywordCategory(ArrayOfKeywordCategory value) { - return new JAXBElement(_ArrayOfKeywordCategory_QNAME, ArrayOfKeywordCategory.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DayMonthAndYear }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "DayMonthAndYear") - public JAXBElement createDayMonthAndYear(DayMonthAndYear value) { - return new JAXBElement(_DayMonthAndYear_QNAME, DayMonthAndYear.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordEstimator }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordEstimator") - public JAXBElement createArrayOfKeywordEstimator(ArrayOfKeywordEstimator value) { - return new JAXBElement(_ArrayOfKeywordEstimator_QNAME, ArrayOfKeywordEstimator.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link QName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "QName") - public JAXBElement createQName(QName value) { - return new JAXBElement(_QName_QNAME, QName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfEstimatedBidAndTraffic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfEstimatedBidAndTraffic") - public JAXBElement createArrayOfEstimatedBidAndTraffic(ArrayOfEstimatedBidAndTraffic value) { - return new JAXBElement(_ArrayOfEstimatedBidAndTraffic_QNAME, ArrayOfEstimatedBidAndTraffic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ImpressionShareSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "ImpressionShareSearchParameter") - public JAXBElement createImpressionShareSearchParameter(ImpressionShareSearchParameter value) { - return new JAXBElement(_ImpressionShareSearchParameter_QNAME, ImpressionShareSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordBidLandscape }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordBidLandscape") - public JAXBElement createArrayOfKeywordBidLandscape(ArrayOfKeywordBidLandscape value) { - return new JAXBElement(_ArrayOfKeywordBidLandscape_QNAME, ArrayOfKeywordBidLandscape.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordBidLandscape }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordBidLandscape") - public JAXBElement createKeywordBidLandscape(KeywordBidLandscape value) { - return new JAXBElement(_KeywordBidLandscape_QNAME, KeywordBidLandscape.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Short }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedByte") - public JAXBElement createUnsignedByte(Short value) { - return new JAXBElement(_UnsignedByte_QNAME, Short.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MatchType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "MatchType") - public JAXBElement createMatchType(MatchType value) { - return new JAXBElement(_MatchType_QNAME, MatchType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeyword }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "ArrayOfKeyword") - public JAXBElement createArrayOfKeyword(ArrayOfKeyword value) { - return new JAXBElement(_ArrayOfKeyword_QNAME, ArrayOfKeyword.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordSuggestion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordSuggestion") - public JAXBElement createArrayOfKeywordSuggestion(ArrayOfKeywordSuggestion value) { - return new JAXBElement(_ArrayOfKeywordSuggestion_QNAME, ArrayOfKeywordSuggestion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LocationCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "LocationCriterion") - public JAXBElement createLocationCriterion(LocationCriterion value) { - return new JAXBElement(_LocationCriterion_QNAME, LocationCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordDemographicResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordDemographicResult") - public JAXBElement createKeywordDemographicResult(KeywordDemographicResult value) { - return new JAXBElement(_KeywordDemographicResult_QNAME, KeywordDemographicResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdGroupBidLandscape }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AdGroupBidLandscape") - public JAXBElement createAdGroupBidLandscape(AdGroupBidLandscape value) { - return new JAXBElement(_AdGroupBidLandscape_QNAME, AdGroupBidLandscape.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuctionSegment }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AuctionSegment") - public JAXBElement createAuctionSegment(AuctionSegment value) { - return new JAXBElement(_AuctionSegment_QNAME, AuctionSegment.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "DeveloperToken") - public JAXBElement createDeveloperToken(String value) { - return new JAXBElement(_DeveloperToken_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SuggestedBidSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "SuggestedBidSearchParameter") - public JAXBElement createSuggestedBidSearchParameter(SuggestedBidSearchParameter value) { - return new JAXBElement(_SuggestedBidSearchParameter_QNAME, SuggestedBidSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LocationSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "LocationSearchParameter") - public JAXBElement createLocationSearchParameter(LocationSearchParameter value) { - return new JAXBElement(_LocationSearchParameter_QNAME, LocationSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Float }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "float") - public JAXBElement createFloat(Float value) { - return new JAXBElement(_Float_QNAME, Float.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordEstimator }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordEstimator") - public JAXBElement createKeywordEstimator(KeywordEstimator value) { - return new JAXBElement(_KeywordEstimator_QNAME, KeywordEstimator.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DomainCategory }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "DomainCategory") - public JAXBElement createDomainCategory(DomainCategory value) { - return new JAXBElement(_DomainCategory_QNAME, DomainCategory.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdApiError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "AdApiError") - public JAXBElement createAdApiError(AdApiError value) { - return new JAXBElement(_AdApiError_QNAME, AdApiError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdGroupEstimator }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AdGroupEstimator") - public JAXBElement createAdGroupEstimator(AdGroupEstimator value) { - return new JAXBElement(_AdGroupEstimator_QNAME, AdGroupEstimator.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Keyword }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "Keyword") - public JAXBElement createKeyword(Keyword value) { - return new JAXBElement(_Keyword_QNAME, Keyword.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DateRangeSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "DateRangeSearchParameter") - public JAXBElement createDateRangeSearchParameter(DateRangeSearchParameter value) { - return new JAXBElement(_DateRangeSearchParameter_QNAME, DateRangeSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "anyType") - public JAXBElement createAnyType(Object value) { - return new JAXBElement(_AnyType_QNAME, Object.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordEstimatedPosition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordEstimatedPosition") - public JAXBElement createKeywordEstimatedPosition(KeywordEstimatedPosition value) { - return new JAXBElement(_KeywordEstimatedPosition_QNAME, KeywordEstimatedPosition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Guid }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "guid") - public JAXBElement createGuid(Guid value) { - return new JAXBElement(_Guid_QNAME, Guid.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CampaignEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "CampaignEstimate") - public JAXBElement createCampaignEstimate(CampaignEstimate value) { - return new JAXBElement(_CampaignEstimate_QNAME, CampaignEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigDecimal }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "decimal") - public JAXBElement createDecimal(BigDecimal value) { - return new JAXBElement(_Decimal_QNAME, BigDecimal.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdGroupBidLandscape }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAdGroupBidLandscape") - public JAXBElement createArrayOfAdGroupBidLandscape(ArrayOfAdGroupBidLandscape value) { - return new JAXBElement(_ArrayOfAdGroupBidLandscape_QNAME, ArrayOfAdGroupBidLandscape.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfSearchCountsByAttributes }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfSearchCountsByAttributes") - public JAXBElement createArrayOfSearchCountsByAttributes(ArrayOfSearchCountsByAttributes value) { - return new JAXBElement(_ArrayOfSearchCountsByAttributes_QNAME, ArrayOfSearchCountsByAttributes.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchVolumeSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "SearchVolumeSearchParameter") - public JAXBElement createSearchVolumeSearchParameter(SearchVolumeSearchParameter value) { - return new JAXBElement(_SearchVolumeSearchParameter_QNAME, SearchVolumeSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "SearchParameter") - public JAXBElement createSearchParameter(SearchParameter value) { - return new JAXBElement(_SearchParameter_QNAME, SearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "base64Binary") - public JAXBElement createBase64Binary(byte[] value) { - return new JAXBElement(_Base64Binary_QNAME, byte[].class, null, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LanguageCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "LanguageCriterion") - public JAXBElement createLanguageCriterion(LanguageCriterion value) { - return new JAXBElement(_LanguageCriterion_QNAME, LanguageCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuctionInsightResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AuctionInsightResult") - public JAXBElement createAuctionInsightResult(AuctionInsightResult value) { - return new JAXBElement(_AuctionInsightResult_QNAME, AuctionInsightResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdPosition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AdPosition") - public JAXBElement createAdPosition(AdPosition value) { - return new JAXBElement(_AdPosition_QNAME, AdPosition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuctionInsightEntry }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AuctionInsightEntry") - public JAXBElement createAuctionInsightEntry(AuctionInsightEntry value) { - return new JAXBElement(_AuctionInsightEntry_QNAME, AuctionInsightEntry.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordAndMatchType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message", name = "ArrayOfKeywordAndMatchType") - public JAXBElement createArrayOfKeywordAndMatchType(ArrayOfKeywordAndMatchType value) { - return new JAXBElement(_ArrayOfKeywordAndMatchType_QNAME, ArrayOfKeywordAndMatchType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdGroupBidLandscapeInput }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAdGroupBidLandscapeInput") - public JAXBElement createArrayOfAdGroupBidLandscapeInput(ArrayOfAdGroupBidLandscapeInput value) { - return new JAXBElement(_ArrayOfAdGroupBidLandscapeInput_QNAME, ArrayOfAdGroupBidLandscapeInput.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordIdeaAttribute }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "ArrayOfKeywordIdeaAttribute") - public JAXBElement createArrayOfKeywordIdeaAttribute(ArrayOfKeywordIdeaAttribute value) { - return new JAXBElement(_ArrayOfKeywordIdeaAttribute_QNAME, ArrayOfKeywordIdeaAttribute.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ExcludeAccountKeywordsSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "ExcludeAccountKeywordsSearchParameter") - public JAXBElement createExcludeAccountKeywordsSearchParameter(ExcludeAccountKeywordsSearchParameter value) { - return new JAXBElement(_ExcludeAccountKeywordsSearchParameter_QNAME, ExcludeAccountKeywordsSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfEstimatedPositionAndTraffic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfEstimatedPositionAndTraffic") - public JAXBElement createArrayOfEstimatedPositionAndTraffic(ArrayOfEstimatedPositionAndTraffic value) { - return new JAXBElement(_ArrayOfEstimatedPositionAndTraffic_QNAME, ArrayOfEstimatedPositionAndTraffic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EntityType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "EntityType") - public JAXBElement createEntityType(EntityType value) { - return new JAXBElement(_EntityType_QNAME, EntityType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordOpportunity") - public JAXBElement createKeywordOpportunity(KeywordOpportunity value) { - return new JAXBElement(_KeywordOpportunity_QNAME, KeywordOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfLocationCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "ArrayOfLocationCriterion") - public JAXBElement createArrayOfLocationCriterion(ArrayOfLocationCriterion value) { - return new JAXBElement(_ArrayOfLocationCriterion_QNAME, ArrayOfLocationCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CampaignEstimator }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "CampaignEstimator") - public JAXBElement createCampaignEstimator(CampaignEstimator value) { - return new JAXBElement(_CampaignEstimator_QNAME, CampaignEstimator.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOflong }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", name = "ArrayOflong") - public JAXBElement createArrayOflong(ArrayOflong value) { - return new JAXBElement(_ArrayOflong_QNAME, ArrayOflong.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuctionInsightKpi }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AuctionInsightKpi") - public JAXBElement createAuctionInsightKpi(AuctionInsightKpi value) { - return new JAXBElement(_AuctionInsightKpi_QNAME, AuctionInsightKpi.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordIdea }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordIdea") - public JAXBElement createArrayOfKeywordIdea(ArrayOfKeywordIdea value) { - return new JAXBElement(_ArrayOfKeywordIdea_QNAME, ArrayOfKeywordIdea.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordCategoryResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordCategoryResult") - public JAXBElement createArrayOfKeywordCategoryResult(ArrayOfKeywordCategoryResult value) { - return new JAXBElement(_ArrayOfKeywordCategoryResult_QNAME, ArrayOfKeywordCategoryResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link BidOpportunityType }{@code >}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BidOpportunityType") - @XmlJavaTypeAdapter(Adapter2 .class) - public JAXBElement> createBidOpportunityType(Collection value) { - return new JAXBElement>(_BidOpportunityType_QNAME, ((Class) Collection.class), null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfstring }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", name = "ArrayOfstring") - public JAXBElement createArrayOfstring(ArrayOfstring value) { - return new JAXBElement(_ArrayOfstring_QNAME, ArrayOfstring.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "long") - public JAXBElement createLong(Long value) { - return new JAXBElement(_Long_QNAME, Long.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordAndMatchType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Message", name = "KeywordAndMatchType") - public JAXBElement createKeywordAndMatchType(KeywordAndMatchType value) { - return new JAXBElement(_KeywordAndMatchType_QNAME, KeywordAndMatchType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LanguageSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "LanguageSearchParameter") - public JAXBElement createLanguageSearchParameter(LanguageSearchParameter value) { - return new JAXBElement(_LanguageSearchParameter_QNAME, LanguageSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordDemographic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordDemographic") - public JAXBElement createArrayOfKeywordDemographic(ArrayOfKeywordDemographic value) { - return new JAXBElement(_ArrayOfKeywordDemographic_QNAME, ArrayOfKeywordDemographic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordLocationResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordLocationResult") - public JAXBElement createKeywordLocationResult(KeywordLocationResult value) { - return new JAXBElement(_KeywordLocationResult_QNAME, KeywordLocationResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Calendar }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "dateTime") - @XmlJavaTypeAdapter(Adapter1 .class) - public JAXBElement createDateTime(Calendar value) { - return new JAXBElement(_DateTime_QNAME, Calendar.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UrlSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "UrlSearchParameter") - public JAXBElement createUrlSearchParameter(UrlSearchParameter value) { - return new JAXBElement(_UrlSearchParameter_QNAME, UrlSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfMetricData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfMetricData") - public JAXBElement createArrayOfMetricData(ArrayOfMetricData value) { - return new JAXBElement(_ArrayOfMetricData_QNAME, ArrayOfMetricData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NetworkCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "NetworkCriterion") - public JAXBElement createNetworkCriterion(NetworkCriterion value) { - return new JAXBElement(_NetworkCriterion_QNAME, NetworkCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordHistoricalPerformance }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordHistoricalPerformance") - public JAXBElement createArrayOfKeywordHistoricalPerformance(ArrayOfKeywordHistoricalPerformance value) { - return new JAXBElement(_ArrayOfKeywordHistoricalPerformance_QNAME, ArrayOfKeywordHistoricalPerformance.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Char }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "char") - public JAXBElement createChar(Char value) { - return new JAXBElement(_Char_QNAME, Char.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordLocation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordLocation") - public JAXBElement createArrayOfKeywordLocation(ArrayOfKeywordLocation value) { - return new JAXBElement(_ArrayOfKeywordLocation_QNAME, ArrayOfKeywordLocation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordLocation }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordLocation") - public JAXBElement createKeywordLocation(KeywordLocation value) { - return new JAXBElement(_KeywordLocation_QNAME, KeywordLocation.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfCampaignEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfCampaignEstimate") - public JAXBElement createArrayOfCampaignEstimate(ArrayOfCampaignEstimate value) { - return new JAXBElement(_ArrayOfCampaignEstimate_QNAME, ArrayOfCampaignEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OperationError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/AdInsight/v12", name = "OperationError") - public JAXBElement createOperationError(OperationError value) { - return new JAXBElement(_OperationError_QNAME, OperationError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordIdea }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordIdea") - public JAXBElement createKeywordIdea(KeywordIdea value) { - return new JAXBElement(_KeywordIdea_QNAME, KeywordIdea.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BatchError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/AdInsight/v12", name = "BatchError") - public JAXBElement createBatchError(BatchError value) { - return new JAXBElement(_BatchError_QNAME, BatchError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAuctionInsightKpi }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAuctionInsightKpi") - public JAXBElement createArrayOfAuctionInsightKpi(ArrayOfAuctionInsightKpi value) { - return new JAXBElement(_ArrayOfAuctionInsightKpi_QNAME, ArrayOfAuctionInsightKpi.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "ApplicationToken") - public JAXBElement createApplicationToken(String value) { - return new JAXBElement(_ApplicationToken_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordKPI }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordKPI") - public JAXBElement createArrayOfKeywordKPI(ArrayOfKeywordKPI value) { - return new JAXBElement(_ArrayOfKeywordKPI_QNAME, ArrayOfKeywordKPI.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordSearchCount }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordSearchCount") - public JAXBElement createArrayOfKeywordSearchCount(ArrayOfKeywordSearchCount value) { - return new JAXBElement(_ArrayOfKeywordSearchCount_QNAME, ArrayOfKeywordSearchCount.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordIdEstimatedBid }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordIdEstimatedBid") - public JAXBElement createKeywordIdEstimatedBid(KeywordIdEstimatedBid value) { - return new JAXBElement(_KeywordIdEstimatedBid_QNAME, KeywordIdEstimatedBid.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link IdeaTextSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "IdeaTextSearchParameter") - public JAXBElement createIdeaTextSearchParameter(IdeaTextSearchParameter value) { - return new JAXBElement(_IdeaTextSearchParameter_QNAME, IdeaTextSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBroadMatchSearchQueryKPI }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfBroadMatchSearchQueryKPI") - public JAXBElement createArrayOfBroadMatchSearchQueryKPI(ArrayOfBroadMatchSearchQueryKPI value) { - return new JAXBElement(_ArrayOfBroadMatchSearchQueryKPI_QNAME, ArrayOfBroadMatchSearchQueryKPI.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdGroupEstimator }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAdGroupEstimator") - public JAXBElement createArrayOfAdGroupEstimator(ArrayOfAdGroupEstimator value) { - return new JAXBElement(_ArrayOfAdGroupEstimator_QNAME, ArrayOfAdGroupEstimator.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfNegativeKeyword }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "ArrayOfNegativeKeyword") - public JAXBElement createArrayOfNegativeKeyword(ArrayOfNegativeKeyword value) { - return new JAXBElement(_ArrayOfNegativeKeyword_QNAME, ArrayOfNegativeKeyword.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfMatchType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfMatchType") - public JAXBElement createArrayOfMatchType(ArrayOfMatchType value) { - return new JAXBElement(_ArrayOfMatchType_QNAME, ArrayOfMatchType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HistoricalSearchCountPeriodic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "HistoricalSearchCountPeriodic") - public JAXBElement createHistoricalSearchCountPeriodic(HistoricalSearchCountPeriodic value) { - return new JAXBElement(_HistoricalSearchCountPeriodic_QNAME, HistoricalSearchCountPeriodic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SourceType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "SourceType") - public JAXBElement createSourceType(SourceType value) { - return new JAXBElement(_SourceType_QNAME, SourceType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordIdEstimatedPosition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordIdEstimatedPosition") - public JAXBElement createArrayOfKeywordIdEstimatedPosition(ArrayOfKeywordIdEstimatedPosition value) { - return new JAXBElement(_ArrayOfKeywordIdEstimatedPosition_QNAME, ArrayOfKeywordIdEstimatedPosition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UnsignedLong }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedLong") - public JAXBElement createUnsignedLong(UnsignedLong value) { - return new JAXBElement(_UnsignedLong_QNAME, UnsignedLong.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordIdeaCategory }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordIdeaCategory") - public JAXBElement createArrayOfKeywordIdeaCategory(ArrayOfKeywordIdeaCategory value) { - return new JAXBElement(_ArrayOfKeywordIdeaCategory_QNAME, ArrayOfKeywordIdeaCategory.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedShort") - public JAXBElement createUnsignedShort(Integer value) { - return new JAXBElement(_UnsignedShort_QNAME, Integer.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdGroupBidLandscapeInput }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AdGroupBidLandscapeInput") - public JAXBElement createAdGroupBidLandscapeInput(AdGroupBidLandscapeInput value) { - return new JAXBElement(_AdGroupBidLandscapeInput_QNAME, AdGroupBidLandscapeInput.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordEstimatedPosition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordEstimatedPosition") - public JAXBElement createArrayOfKeywordEstimatedPosition(ArrayOfKeywordEstimatedPosition value) { - return new JAXBElement(_ArrayOfKeywordEstimatedPosition_QNAME, ArrayOfKeywordEstimatedPosition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "UserName") - public JAXBElement createUserName(String value) { - return new JAXBElement(_UserName_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfCampaignEstimator }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfCampaignEstimator") - public JAXBElement createArrayOfCampaignEstimator(ArrayOfCampaignEstimator value) { - return new JAXBElement(_ArrayOfCampaignEstimator_QNAME, ArrayOfCampaignEstimator.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link TargetAdPosition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "TargetAdPosition") - public JAXBElement createTargetAdPosition(TargetAdPosition value) { - return new JAXBElement(_TargetAdPosition_QNAME, TargetAdPosition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetricData }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "MetricData") - public JAXBElement createMetricData(MetricData value) { - return new JAXBElement(_MetricData_QNAME, MetricData.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordEstimate") - public JAXBElement createKeywordEstimate(KeywordEstimate value) { - return new JAXBElement(_KeywordEstimate_QNAME, KeywordEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordEstimatedBid }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordEstimatedBid") - public JAXBElement createArrayOfKeywordEstimatedBid(ArrayOfKeywordEstimatedBid value) { - return new JAXBElement(_ArrayOfKeywordEstimatedBid_QNAME, ArrayOfKeywordEstimatedBid.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfCompetitionLevel }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "ArrayOfCompetitionLevel") - public JAXBElement createArrayOfCompetitionLevel(ArrayOfCompetitionLevel value) { - return new JAXBElement(_ArrayOfCompetitionLevel_QNAME, ArrayOfCompetitionLevel.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordEstimatedBid }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordEstimatedBid") - public JAXBElement createKeywordEstimatedBid(KeywordEstimatedBid value) { - return new JAXBElement(_KeywordEstimatedBid_QNAME, KeywordEstimatedBid.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link TimeInterval }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "TimeInterval") - public JAXBElement createTimeInterval(TimeInterval value) { - return new JAXBElement(_TimeInterval_QNAME, TimeInterval.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdGroupEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAdGroupEstimate") - public JAXBElement createArrayOfAdGroupEstimate(ArrayOfAdGroupEstimate value) { - return new JAXBElement(_ArrayOfAdGroupEstimate_QNAME, ArrayOfAdGroupEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ApiFaultDetail }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "ApiFaultDetail") - public JAXBElement createApiFaultDetail(ApiFaultDetail value) { - return new JAXBElement(_ApiFaultDetail_QNAME, ApiFaultDetail.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SearchCountsByAttributes }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "SearchCountsByAttributes") - public JAXBElement createSearchCountsByAttributes(SearchCountsByAttributes value) { - return new JAXBElement(_SearchCountsByAttributes_QNAME, SearchCountsByAttributes.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NetworkSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "NetworkSearchParameter") - public JAXBElement createNetworkSearchParameter(NetworkSearchParameter value) { - return new JAXBElement(_NetworkSearchParameter_QNAME, NetworkSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordSearchCount }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordSearchCount") - public JAXBElement createKeywordSearchCount(KeywordSearchCount value) { - return new JAXBElement(_KeywordSearchCount_QNAME, KeywordSearchCount.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NegativeKeyword }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "NegativeKeyword") - public JAXBElement createNegativeKeyword(NegativeKeyword value) { - return new JAXBElement(_NegativeKeyword_QNAME, NegativeKeyword.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DeviceCriterion }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Criterions", name = "DeviceCriterion") - public JAXBElement createDeviceCriterion(DeviceCriterion value) { - return new JAXBElement(_DeviceCriterion_QNAME, DeviceCriterion.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordOpportunity") - public JAXBElement createArrayOfKeywordOpportunity(ArrayOfKeywordOpportunity value) { - return new JAXBElement(_ArrayOfKeywordOpportunity_QNAME, ArrayOfKeywordOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordLocationResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordLocationResult") - public JAXBElement createArrayOfKeywordLocationResult(ArrayOfKeywordLocationResult value) { - return new JAXBElement(_ArrayOfKeywordLocationResult_QNAME, ArrayOfKeywordLocationResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BudgetOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BudgetOpportunity") - public JAXBElement createBudgetOpportunity(BudgetOpportunity value) { - return new JAXBElement(_BudgetOpportunity_QNAME, BudgetOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordDemographic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordDemographic") - public JAXBElement createKeywordDemographic(KeywordDemographic value) { - return new JAXBElement(_KeywordDemographic_QNAME, KeywordDemographic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdApiFaultDetail }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "AdApiFaultDetail") - public JAXBElement createAdApiFaultDetail(AdApiFaultDetail value) { - return new JAXBElement(_AdApiFaultDetail_QNAME, AdApiFaultDetail.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfHistoricalSearchCountPeriodic }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfHistoricalSearchCountPeriodic") - public JAXBElement createArrayOfHistoricalSearchCountPeriodic(ArrayOfHistoricalSearchCountPeriodic value) { - return new JAXBElement(_ArrayOfHistoricalSearchCountPeriodic_QNAME, ArrayOfHistoricalSearchCountPeriodic.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link TrafficEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "TrafficEstimate") - public JAXBElement createTrafficEstimate(TrafficEstimate value) { - return new JAXBElement(_TrafficEstimate_QNAME, TrafficEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordIdEstimatedPosition }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordIdEstimatedPosition") - public JAXBElement createKeywordIdEstimatedPosition(KeywordIdEstimatedPosition value) { - return new JAXBElement(_KeywordIdEstimatedPosition_QNAME, KeywordIdEstimatedPosition.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Opportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "Opportunity") - public JAXBElement createOpportunity(Opportunity value) { - return new JAXBElement(_Opportunity_QNAME, Opportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ApplicationFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "ApplicationFault") - public JAXBElement createApplicationFault(ApplicationFault value) { - return new JAXBElement(_ApplicationFault_QNAME, ApplicationFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBidOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfBidOpportunity") - public JAXBElement createArrayOfBidOpportunity(ArrayOfBidOpportunity value) { - return new JAXBElement(_ArrayOfBidOpportunity_QNAME, ArrayOfBidOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CompetitionSearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "CompetitionSearchParameter") - public JAXBElement createCompetitionSearchParameter(CompetitionSearchParameter value) { - return new JAXBElement(_CompetitionSearchParameter_QNAME, CompetitionSearchParameter.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BroadMatchKeywordOpportunity }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BroadMatchKeywordOpportunity") - public JAXBElement createBroadMatchKeywordOpportunity(BroadMatchKeywordOpportunity value) { - return new JAXBElement(_BroadMatchKeywordOpportunity_QNAME, BroadMatchKeywordOpportunity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NetworkType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common", name = "NetworkType") - public JAXBElement createNetworkType(NetworkType value) { - return new JAXBElement(_NetworkType_QNAME, NetworkType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBidLandscapePoint }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfBidLandscapePoint") - public JAXBElement createArrayOfBidLandscapePoint(ArrayOfBidLandscapePoint value) { - return new JAXBElement(_ArrayOfBidLandscapePoint_QNAME, ArrayOfBidLandscapePoint.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAuctionInsightEntry }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfAuctionInsightEntry") - public JAXBElement createArrayOfAuctionInsightEntry(ArrayOfAuctionInsightEntry value) { - return new JAXBElement(_ArrayOfAuctionInsightEntry_QNAME, ArrayOfAuctionInsightEntry.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfDomainCategory }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfDomainCategory") - public JAXBElement createArrayOfDomainCategory(ArrayOfDomainCategory value) { - return new JAXBElement(_ArrayOfDomainCategory_QNAME, ArrayOfDomainCategory.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdGroupEstimate }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AdGroupEstimate") - public JAXBElement createAdGroupEstimate(AdGroupEstimate value) { - return new JAXBElement(_AdGroupEstimate_QNAME, AdGroupEstimate.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "Password") - public JAXBElement createPassword(String value) { - return new JAXBElement(_Password_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "anyURI") - public JAXBElement createAnyURI(String value) { - return new JAXBElement(_AnyURI_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdGroupBidLandscapeType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "AdGroupBidLandscapeType") - public JAXBElement createAdGroupBidLandscapeType(AdGroupBidLandscapeType value) { - return new JAXBElement(_AdGroupBidLandscapeType_QNAME, AdGroupBidLandscapeType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Byte }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "byte") - public JAXBElement createByte(Byte value) { - return new JAXBElement(_Byte_QNAME, Byte.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Double }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "double") - public JAXBElement createDouble(Double value) { - return new JAXBElement(_Double_QNAME, Double.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", name = "CustomerAccountId") - public JAXBElement createCustomerAccountId(String value) { - return new JAXBElement(_CustomerAccountId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeywordKPI }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "KeywordKPI") - public JAXBElement createKeywordKPI(KeywordKPI value) { - return new JAXBElement(_KeywordKPI_QNAME, KeywordKPI.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BudgetPointType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "BudgetPointType") - public JAXBElement createBudgetPointType(BudgetPointType value) { - return new JAXBElement(_BudgetPointType_QNAME, BudgetPointType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeywordDemographicResult }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", name = "ArrayOfKeywordDemographicResult") - public JAXBElement createArrayOfKeywordDemographicResult(ArrayOfKeywordDemographicResult value) { - return new JAXBElement(_ArrayOfKeywordDemographicResult_QNAME, ArrayOfKeywordDemographicResult.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link QuerySearchParameter }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", name = "QuerySearchParameter") - public JAXBElement createQuerySearchParameter(QuerySearchParameter value) { - return new JAXBElement(_QuerySearchParameter_QNAME, QuerySearchParameter.class, null, value); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/OperationError.java b/proxies/com/microsoft/bingads/v12/adinsight/OperationError.java deleted file mode 100644 index aff81f5193..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/OperationError.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OperationError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OperationError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OperationError", namespace = "https://bingads.microsoft.com/AdInsight/v12", propOrder = { - "code", - "details", - "errorCode", - "message" -}) -public class OperationError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Details", nillable = true) - protected String details; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "Message", nillable = true) - protected String message; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetails(String value) { - this.details = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/Opportunity.java b/proxies/com/microsoft/bingads/v12/adinsight/Opportunity.java deleted file mode 100644 index 7872cb1df3..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/Opportunity.java +++ /dev/null @@ -1,68 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Opportunity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Opportunity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OpportunityKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Opportunity", propOrder = { - "opportunityKey" -}) -@XmlSeeAlso({ - BidOpportunity.class, - BudgetOpportunity.class, - KeywordOpportunity.class -}) -public class Opportunity { - - @XmlElement(name = "OpportunityKey", nillable = true) - protected String opportunityKey; - - /** - * Gets the value of the opportunityKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOpportunityKey() { - return opportunityKey; - } - - /** - * Sets the value of the opportunityKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOpportunityKey(String value) { - this.opportunityKey = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/PositiveInteger.java b/proxies/com/microsoft/bingads/v12/adinsight/PositiveInteger.java deleted file mode 100644 index 8616b627aa..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/PositiveInteger.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for positiveInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="positiveInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
- *     <minInclusive value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "positiveInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class PositiveInteger { - - @XmlValue - @XmlSchemaType(name = "positiveInteger") - protected NonNegativeInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NonNegativeInteger } - * - */ - public NonNegativeInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NonNegativeInteger } - * - */ - public void setValue(NonNegativeInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/PutMetricDataRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/PutMetricDataRequest.java deleted file mode 100644 index f3943e398c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/PutMetricDataRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Metrics" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfMetricData" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "metrics" -}) -@XmlRootElement(name = "PutMetricDataRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class PutMetricDataRequest { - - @XmlElement(name = "Metrics", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfMetricData metrics; - - /** - * Gets the value of the metrics property. - * - * @return - * possible object is - * {@link ArrayOfMetricData } - * - */ - public ArrayOfMetricData getMetrics() { - return metrics; - } - - /** - * Sets the value of the metrics property. - * - * @param value - * allowed object is - * {@link ArrayOfMetricData } - * - */ - public void setMetrics(ArrayOfMetricData value) { - this.metrics = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/PutMetricDataResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/PutMetricDataResponse.java deleted file mode 100644 index e63a1b0bea..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/PutMetricDataResponse.java +++ /dev/null @@ -1,34 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "") -@XmlRootElement(name = "PutMetricDataResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class PutMetricDataResponse { - - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/QuerySearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/QuerySearchParameter.java deleted file mode 100644 index c5da2f378c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/QuerySearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for QuerySearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="QuerySearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Queries" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "QuerySearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "queries" -}) -public class QuerySearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Queries", nillable = true) - protected ArrayOfstring queries; - - /** - * Gets the value of the queries property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getQueries() { - return queries; - } - - /** - * Sets the value of the queries property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setQueries(ArrayOfstring value) { - this.queries = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SearchCountsByAttributes.java b/proxies/com/microsoft/bingads/v12/adinsight/SearchCountsByAttributes.java deleted file mode 100644 index 80f6968fc4..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SearchCountsByAttributes.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SearchCountsByAttributes complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SearchCountsByAttributes">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="HistoricalSearchCounts" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfHistoricalSearchCountPeriodic" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchCountsByAttributes", propOrder = { - "device", - "historicalSearchCounts" -}) -public class SearchCountsByAttributes { - - @XmlElement(name = "Device", nillable = true) - protected String device; - @XmlElement(name = "HistoricalSearchCounts", nillable = true) - protected ArrayOfHistoricalSearchCountPeriodic historicalSearchCounts; - - /** - * Gets the value of the device property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDevice() { - return device; - } - - /** - * Sets the value of the device property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDevice(String value) { - this.device = value; - } - - /** - * Gets the value of the historicalSearchCounts property. - * - * @return - * possible object is - * {@link ArrayOfHistoricalSearchCountPeriodic } - * - */ - public ArrayOfHistoricalSearchCountPeriodic getHistoricalSearchCounts() { - return historicalSearchCounts; - } - - /** - * Sets the value of the historicalSearchCounts property. - * - * @param value - * allowed object is - * {@link ArrayOfHistoricalSearchCountPeriodic } - * - */ - public void setHistoricalSearchCounts(ArrayOfHistoricalSearchCountPeriodic value) { - this.historicalSearchCounts = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/SearchParameter.java deleted file mode 100644 index 22958014d1..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SearchParameter.java +++ /dev/null @@ -1,50 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SearchParameter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters") -@XmlSeeAlso({ - SuggestedBidSearchParameter.class, - IdeaTextSearchParameter.class, - LocationSearchParameter.class, - UrlSearchParameter.class, - NetworkSearchParameter.class, - LanguageSearchParameter.class, - QuerySearchParameter.class, - ExcludeAccountKeywordsSearchParameter.class, - ImpressionShareSearchParameter.class, - DateRangeSearchParameter.class, - CategorySearchParameter.class, - DeviceSearchParameter.class, - AuctionSegmentSearchParameter.class, - SearchVolumeSearchParameter.class, - CompetitionSearchParameter.class -}) -public class SearchParameter { - - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SearchVolumeSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/SearchVolumeSearchParameter.java deleted file mode 100644 index 1ce3e8dba7..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SearchVolumeSearchParameter.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SearchVolumeSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SearchVolumeSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Maximum" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Minimum" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchVolumeSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "maximum", - "minimum" -}) -public class SearchVolumeSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Maximum", nillable = true) - protected Long maximum; - @XmlElement(name = "Minimum", nillable = true) - protected Long minimum; - - /** - * Gets the value of the maximum property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMaximum() { - return maximum; - } - - /** - * Sets the value of the maximum property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMaximum(Long value) { - this.maximum = value; - } - - /** - * Gets the value of the minimum property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getMinimum() { - return minimum; - } - - /** - * Sets the value of the minimum property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setMinimum(Long value) { - this.minimum = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SourceType.java b/proxies/com/microsoft/bingads/v12/adinsight/SourceType.java deleted file mode 100644 index cc1da96a3a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SourceType.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SourceType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="SourceType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Unknown"/>
- *     <enumeration value="Seed"/>
- *     <enumeration value="SuggestionFromKeyword"/>
- *     <enumeration value="SuggestionFromUrl"/>
- *     <enumeration value="SuggestionFromCategory"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SourceType", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.Common") -@XmlEnum -public enum SourceType { - - @XmlEnumValue("Unknown") - UNKNOWN("Unknown"), - @XmlEnumValue("Seed") - SEED("Seed"), - @XmlEnumValue("SuggestionFromKeyword") - SUGGESTION_FROM_KEYWORD("SuggestionFromKeyword"), - @XmlEnumValue("SuggestionFromUrl") - SUGGESTION_FROM_URL("SuggestionFromUrl"), - @XmlEnumValue("SuggestionFromCategory") - SUGGESTION_FROM_CATEGORY("SuggestionFromCategory"); - private final String value; - - SourceType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static SourceType fromValue(String v) { - for (SourceType c: SourceType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsForUrlRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsForUrlRequest.java deleted file mode 100644 index 45de4d73f5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsForUrlRequest.java +++ /dev/null @@ -1,176 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="MaxKeywords" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="MinConfidenceScore" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="ExcludeBrand" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "url", - "language", - "maxKeywords", - "minConfidenceScore", - "excludeBrand" -}) -@XmlRootElement(name = "SuggestKeywordsForUrlRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class SuggestKeywordsForUrlRequest { - - @XmlElement(name = "Url", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String url; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "MaxKeywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Integer maxKeywords; - @XmlElement(name = "MinConfidenceScore", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Double minConfidenceScore; - @XmlElement(name = "ExcludeBrand", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Boolean excludeBrand; - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the maxKeywords property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxKeywords() { - return maxKeywords; - } - - /** - * Sets the value of the maxKeywords property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxKeywords(Integer value) { - this.maxKeywords = value; - } - - /** - * Gets the value of the minConfidenceScore property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinConfidenceScore() { - return minConfidenceScore; - } - - /** - * Sets the value of the minConfidenceScore property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinConfidenceScore(Double value) { - this.minConfidenceScore = value; - } - - /** - * Gets the value of the excludeBrand property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getExcludeBrand() { - return excludeBrand; - } - - /** - * Sets the value of the excludeBrand property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExcludeBrand(Boolean value) { - this.excludeBrand = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsForUrlResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsForUrlResponse.java deleted file mode 100644 index 90def1dd6f..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsForUrlResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordAndConfidence" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords" -}) -@XmlRootElement(name = "SuggestKeywordsForUrlResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class SuggestKeywordsForUrlResponse { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordAndConfidence keywords; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfKeywordAndConfidence } - * - */ - public ArrayOfKeywordAndConfidence getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordAndConfidence } - * - */ - public void setKeywords(ArrayOfKeywordAndConfidence value) { - this.keywords = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsFromExistingKeywordsRequest.java b/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsFromExistingKeywordsRequest.java deleted file mode 100644 index 1369f6e71c..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsFromExistingKeywordsRequest.java +++ /dev/null @@ -1,288 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keywords" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountries" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="MaxSuggestionsPerKeyword" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="SuggestionType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="RemoveDuplicates" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ExcludeBrand" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywords", - "language", - "publisherCountries", - "maxSuggestionsPerKeyword", - "suggestionType", - "removeDuplicates", - "excludeBrand", - "adGroupId", - "campaignId" -}) -@XmlRootElement(name = "SuggestKeywordsFromExistingKeywordsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class SuggestKeywordsFromExistingKeywordsRequest { - - @XmlElement(name = "Keywords", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring keywords; - @XmlElement(name = "Language", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected String language; - @XmlElement(name = "PublisherCountries", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfstring publisherCountries; - @XmlElement(name = "MaxSuggestionsPerKeyword", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Integer maxSuggestionsPerKeyword; - @XmlElement(name = "SuggestionType", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Integer suggestionType; - @XmlElement(name = "RemoveDuplicates", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Boolean removeDuplicates; - @XmlElement(name = "ExcludeBrand", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Boolean excludeBrand; - @XmlElement(name = "AdGroupId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long adGroupId; - @XmlElement(name = "CampaignId", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected Long campaignId; - - /** - * Gets the value of the keywords property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setKeywords(ArrayOfstring value) { - this.keywords = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the publisherCountries property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getPublisherCountries() { - return publisherCountries; - } - - /** - * Sets the value of the publisherCountries property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setPublisherCountries(ArrayOfstring value) { - this.publisherCountries = value; - } - - /** - * Gets the value of the maxSuggestionsPerKeyword property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxSuggestionsPerKeyword() { - return maxSuggestionsPerKeyword; - } - - /** - * Sets the value of the maxSuggestionsPerKeyword property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxSuggestionsPerKeyword(Integer value) { - this.maxSuggestionsPerKeyword = value; - } - - /** - * Gets the value of the suggestionType property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSuggestionType() { - return suggestionType; - } - - /** - * Sets the value of the suggestionType property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSuggestionType(Integer value) { - this.suggestionType = value; - } - - /** - * Gets the value of the removeDuplicates property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getRemoveDuplicates() { - return removeDuplicates; - } - - /** - * Sets the value of the removeDuplicates property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setRemoveDuplicates(Boolean value) { - this.removeDuplicates = value; - } - - /** - * Gets the value of the excludeBrand property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getExcludeBrand() { - return excludeBrand; - } - - /** - * Sets the value of the excludeBrand property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExcludeBrand(Boolean value) { - this.excludeBrand = value; - } - - /** - * 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; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsFromExistingKeywordsResponse.java b/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsFromExistingKeywordsResponse.java deleted file mode 100644 index 255ea260a5..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SuggestKeywordsFromExistingKeywordsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeywordSuggestions" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity}ArrayOfKeywordSuggestion" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "keywordSuggestions" -}) -@XmlRootElement(name = "SuggestKeywordsFromExistingKeywordsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12") -public class SuggestKeywordsFromExistingKeywordsResponse { - - @XmlElement(name = "KeywordSuggestions", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V12", nillable = true) - protected ArrayOfKeywordSuggestion keywordSuggestions; - - /** - * Gets the value of the keywordSuggestions property. - * - * @return - * possible object is - * {@link ArrayOfKeywordSuggestion } - * - */ - public ArrayOfKeywordSuggestion getKeywordSuggestions() { - return keywordSuggestions; - } - - /** - * Sets the value of the keywordSuggestions property. - * - * @param value - * allowed object is - * {@link ArrayOfKeywordSuggestion } - * - */ - public void setKeywordSuggestions(ArrayOfKeywordSuggestion value) { - this.keywordSuggestions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/SuggestedBidSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/SuggestedBidSearchParameter.java deleted file mode 100644 index 9b73283310..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/SuggestedBidSearchParameter.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SuggestedBidSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SuggestedBidSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Maximum" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Minimum" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SuggestedBidSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "maximum", - "minimum" -}) -public class SuggestedBidSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Maximum", nillable = true) - protected Double maximum; - @XmlElement(name = "Minimum", nillable = true) - protected Double minimum; - - /** - * Gets the value of the maximum property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMaximum() { - return maximum; - } - - /** - * Sets the value of the maximum property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMaximum(Double value) { - this.maximum = value; - } - - /** - * Gets the value of the minimum property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getMinimum() { - return minimum; - } - - /** - * Sets the value of the minimum property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setMinimum(Double value) { - this.minimum = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/TargetAdPosition.java b/proxies/com/microsoft/bingads/v12/adinsight/TargetAdPosition.java deleted file mode 100644 index 8f6a5a278e..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/TargetAdPosition.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for TargetAdPosition. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="TargetAdPosition">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MainLine1"/>
- *     <enumeration value="MainLine"/>
- *     <enumeration value="FirstPage"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TargetAdPosition") -@XmlEnum -public enum TargetAdPosition { - - @XmlEnumValue("MainLine1") - MAIN_LINE_1("MainLine1"), - @XmlEnumValue("MainLine") - MAIN_LINE("MainLine"), - @XmlEnumValue("FirstPage") - FIRST_PAGE("FirstPage"); - private final String value; - - TargetAdPosition(String v) { - value = v; - } - - public String value() { - return value; - } - - public static TargetAdPosition fromValue(String v) { - for (TargetAdPosition c: TargetAdPosition.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/TimeInterval.java b/proxies/com/microsoft/bingads/v12/adinsight/TimeInterval.java deleted file mode 100644 index 313a8c2464..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/TimeInterval.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for TimeInterval. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="TimeInterval">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="LastMonth"/>
- *     <enumeration value="LastWeek"/>
- *     <enumeration value="LastDay"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TimeInterval") -@XmlEnum -public enum TimeInterval { - - @XmlEnumValue("LastMonth") - LAST_MONTH("LastMonth"), - @XmlEnumValue("LastWeek") - LAST_WEEK("LastWeek"), - @XmlEnumValue("LastDay") - LAST_DAY("LastDay"); - private final String value; - - TimeInterval(String v) { - value = v; - } - - public String value() { - return value; - } - - public static TimeInterval fromValue(String v) { - for (TimeInterval c: TimeInterval.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/TrafficEstimate.java b/proxies/com/microsoft/bingads/v12/adinsight/TrafficEstimate.java deleted file mode 100644 index d02aade561..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/TrafficEstimate.java +++ /dev/null @@ -1,202 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for TrafficEstimate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TrafficEstimate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AverageCpc" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="AveragePosition" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Clicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Ctr" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="Impressions" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *         <element name="TotalCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TrafficEstimate", propOrder = { - "averageCpc", - "averagePosition", - "clicks", - "ctr", - "impressions", - "totalCost" -}) -public class TrafficEstimate { - - @XmlElement(name = "AverageCpc") - protected Double averageCpc; - @XmlElement(name = "AveragePosition") - protected Double averagePosition; - @XmlElement(name = "Clicks") - protected Double clicks; - @XmlElement(name = "Ctr") - protected Double ctr; - @XmlElement(name = "Impressions") - protected Double impressions; - @XmlElement(name = "TotalCost") - protected Double totalCost; - - /** - * Gets the value of the averageCpc property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAverageCpc() { - return averageCpc; - } - - /** - * Sets the value of the averageCpc property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAverageCpc(Double value) { - this.averageCpc = value; - } - - /** - * Gets the value of the averagePosition property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getAveragePosition() { - return averagePosition; - } - - /** - * Sets the value of the averagePosition property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setAveragePosition(Double value) { - this.averagePosition = value; - } - - /** - * Gets the value of the clicks property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getClicks() { - return clicks; - } - - /** - * Sets the value of the clicks property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setClicks(Double value) { - this.clicks = value; - } - - /** - * Gets the value of the ctr property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getCtr() { - return ctr; - } - - /** - * Sets the value of the ctr property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setCtr(Double value) { - this.ctr = value; - } - - /** - * Gets the value of the impressions property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getImpressions() { - return impressions; - } - - /** - * Sets the value of the impressions property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setImpressions(Double value) { - this.impressions = value; - } - - /** - * Gets the value of the totalCost property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getTotalCost() { - return totalCost; - } - - /** - * Sets the value of the totalCost property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setTotalCost(Double value) { - this.totalCost = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/UnsignedLong.java b/proxies/com/microsoft/bingads/v12/adinsight/UnsignedLong.java deleted file mode 100644 index d9948fa78a..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/UnsignedLong.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for unsignedLong simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="unsignedLong">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
- *     <maxInclusive value="18446744073709551615"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "unsignedLong", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class UnsignedLong { - - @XmlValue - @XmlSchemaType(name = "unsignedLong") - protected NonNegativeInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NonNegativeInteger } - * - */ - public NonNegativeInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NonNegativeInteger } - * - */ - public void setValue(NonNegativeInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/UrlSearchParameter.java b/proxies/com/microsoft/bingads/v12/adinsight/UrlSearchParameter.java deleted file mode 100644 index f395955675..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/UrlSearchParameter.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.adinsight; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UrlSearchParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UrlSearchParameter">
- *   <complexContent>
- *     <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters}SearchParameter">
- *       <sequence>
- *         <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UrlSearchParameter", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity.SearchParameters", propOrder = { - "url" -}) -public class UrlSearchParameter - extends SearchParameter -{ - - @XmlElement(name = "Url", nillable = true) - protected String url; - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/adinsight/package-info.java b/proxies/com/microsoft/bingads/v12/adinsight/package-info.java deleted file mode 100644 index 2a5ec9b7f8..0000000000 --- a/proxies/com/microsoft/bingads/v12/adinsight/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V12.Entity", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package com.microsoft.bingads.v12.adinsight; diff --git a/proxies/com/microsoft/bingads/v12/bulk/AdApiError.java b/proxies/com/microsoft/bingads/v12/bulk/AdApiError.java deleted file mode 100644 index 4f8d4fb330..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/AdApiError.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdApiError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdApiError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Detail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdApiError", namespace = "https://adapi.microsoft.com", propOrder = { - "code", - "detail", - "errorCode", - "message" -}) -public class AdApiError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Detail", nillable = true) - protected String detail; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "Message", nillable = true) - protected String message; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the detail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetail() { - return detail; - } - - /** - * Sets the value of the detail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetail(String value) { - this.detail = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/AdApiFaultDetail.java b/proxies/com/microsoft/bingads/v12/bulk/AdApiFaultDetail.java deleted file mode 100644 index 519c3e88fe..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/AdApiFaultDetail.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdApiFaultDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdApiFaultDetail">
- *   <complexContent>
- *     <extension base="{https://adapi.microsoft.com}ApplicationFault">
- *       <sequence>
- *         <element name="Errors" type="{https://adapi.microsoft.com}ArrayOfAdApiError" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdApiFaultDetail", namespace = "https://adapi.microsoft.com", propOrder = { - "errors" -}) -public class AdApiFaultDetail - extends ApplicationFault -{ - - @XmlElement(name = "Errors", nillable = true) - protected ArrayOfAdApiError errors; - - /** - * Gets the value of the errors property. - * - * @return - * possible object is - * {@link ArrayOfAdApiError } - * - */ - public ArrayOfAdApiError getErrors() { - return errors; - } - - /** - * Sets the value of the errors property. - * - * @param value - * allowed object is - * {@link ArrayOfAdApiError } - * - */ - public void setErrors(ArrayOfAdApiError value) { - this.errors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/AdApiFaultDetail_Exception.java b/proxies/com/microsoft/bingads/v12/bulk/AdApiFaultDetail_Exception.java deleted file mode 100644 index a4c89da040..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/AdApiFaultDetail_Exception.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebFault(name = "AdApiFaultDetail", targetNamespace = "https://adapi.microsoft.com") -public class AdApiFaultDetail_Exception - extends Exception -{ - - /** - * Java type that goes as soapenv:Fault detail element. - * - */ - private AdApiFaultDetail faultInfo; - - /** - * - * @param faultInfo - * @param message - */ - public AdApiFaultDetail_Exception(String message, AdApiFaultDetail faultInfo) { - super(message); - this.faultInfo = faultInfo; - } - - /** - * - * @param faultInfo - * @param cause - * @param message - */ - public AdApiFaultDetail_Exception(String message, AdApiFaultDetail faultInfo, Throwable cause) { - super(message, cause); - this.faultInfo = faultInfo; - } - - /** - * - * @return - * returns fault bean: com.microsoft.bingads.v12.bulk.AdApiFaultDetail - */ - public AdApiFaultDetail getFaultInfo() { - return faultInfo; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Adapter1.java b/proxies/com/microsoft/bingads/v12/bulk/Adapter1.java deleted file mode 100644 index e329a35af7..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Adapter1.java +++ /dev/null @@ -1,23 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.Calendar; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter1 - extends XmlAdapter -{ - - - public Calendar unmarshal(String value) { - return (javax.xml.bind.DatatypeConverter.parseDateTime(value)); - } - - public String marshal(Calendar value) { - if (value == null) { - return null; - } - return (javax.xml.bind.DatatypeConverter.printDateTime(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Adapter2.java b/proxies/com/microsoft/bingads/v12/bulk/Adapter2.java deleted file mode 100644 index 599b732a42..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Adapter2.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter2 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.bulk.DataScopeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.bulk.DataScopeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ApiFaultDetail.java b/proxies/com/microsoft/bingads/v12/bulk/ApiFaultDetail.java deleted file mode 100644 index 54343dc24a..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ApiFaultDetail.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ApiFaultDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ApiFaultDetail">
- *   <complexContent>
- *     <extension base="{https://adapi.microsoft.com}ApplicationFault">
- *       <sequence>
- *         <element name="BatchErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *         <element name="OperationErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfOperationError" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ApiFaultDetail", propOrder = { - "batchErrors", - "operationErrors" -}) -public class ApiFaultDetail - extends ApplicationFault -{ - - @XmlElement(name = "BatchErrors", nillable = true) - protected ArrayOfBatchError batchErrors; - @XmlElement(name = "OperationErrors", nillable = true) - protected ArrayOfOperationError operationErrors; - - /** - * Gets the value of the batchErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getBatchErrors() { - return batchErrors; - } - - /** - * Sets the value of the batchErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setBatchErrors(ArrayOfBatchError value) { - this.batchErrors = value; - } - - /** - * Gets the value of the operationErrors property. - * - * @return - * possible object is - * {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError getOperationErrors() { - return operationErrors; - } - - /** - * Sets the value of the operationErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfOperationError } - * - */ - public void setOperationErrors(ArrayOfOperationError value) { - this.operationErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ApiFaultDetail_Exception.java b/proxies/com/microsoft/bingads/v12/bulk/ApiFaultDetail_Exception.java deleted file mode 100644 index 7cac697699..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ApiFaultDetail_Exception.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebFault(name = "ApiFaultDetail", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12") -public class ApiFaultDetail_Exception - extends Exception -{ - - /** - * Java type that goes as soapenv:Fault detail element. - * - */ - private ApiFaultDetail faultInfo; - - /** - * - * @param faultInfo - * @param message - */ - public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo) { - super(message); - this.faultInfo = faultInfo; - } - - /** - * - * @param faultInfo - * @param cause - * @param message - */ - public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo, Throwable cause) { - super(message, cause); - this.faultInfo = faultInfo; - } - - /** - * - * @return - * returns fault bean: com.microsoft.bingads.v12.bulk.ApiFaultDetail - */ - public ApiFaultDetail getFaultInfo() { - return faultInfo; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ApplicationFault.java b/proxies/com/microsoft/bingads/v12/bulk/ApplicationFault.java deleted file mode 100644 index 05732d4bf8..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ApplicationFault.java +++ /dev/null @@ -1,67 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ApplicationFault complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ApplicationFault">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="TrackingId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ApplicationFault", namespace = "https://adapi.microsoft.com", propOrder = { - "trackingId" -}) -@XmlSeeAlso({ - ApiFaultDetail.class, - AdApiFaultDetail.class -}) -public class ApplicationFault { - - @XmlElement(name = "TrackingId", nillable = true) - protected String trackingId; - - /** - * Gets the value of the trackingId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingId() { - return trackingId; - } - - /** - * Sets the value of the trackingId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingId(String value) { - this.trackingId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfAdApiError.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfAdApiError.java deleted file mode 100644 index 310981a3f9..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfAdApiError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdApiError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdApiError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdApiError" type="{https://adapi.microsoft.com}AdApiError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdApiError", namespace = "https://adapi.microsoft.com", propOrder = { - "adApiErrors" -}) -public class ArrayOfAdApiError { - - @XmlElement(name = "AdApiError", nillable = true) - protected List adApiErrors; - - /** - * Gets the value of the adApiErrors 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 JAXB object. - * This is why there is not a set method for the adApiErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdApiErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdApiError } - * - * - */ - public List getAdApiErrors() { - if (adApiErrors == null) { - adApiErrors = new ArrayList(); - } - return this.adApiErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfBatchError.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfBatchError.java deleted file mode 100644 index 2d411b0d48..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfBatchError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBatchError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBatchError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BatchError" type="{https://bingads.microsoft.com/CampaignManagement/v12}BatchError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBatchError", propOrder = { - "batchErrors" -}) -public class ArrayOfBatchError { - - @XmlElement(name = "BatchError", nillable = true) - protected List batchErrors; - - /** - * Gets the value of the batchErrors 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 JAXB object. - * This is why there is not a set method for the batchErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBatchErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BatchError } - * - * - */ - public List getBatchErrors() { - if (batchErrors == null) { - batchErrors = new ArrayList(); - } - return this.batchErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfCampaignScope.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfCampaignScope.java deleted file mode 100644 index f748db5d80..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfCampaignScope.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaignScope complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaignScope">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignScope" type="{https://bingads.microsoft.com/CampaignManagement/v12}CampaignScope" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaignScope", propOrder = { - "campaignScopes" -}) -public class ArrayOfCampaignScope { - - @XmlElement(name = "CampaignScope", nillable = true) - protected List campaignScopes; - - /** - * Gets the value of the campaignScopes 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 JAXB object. - * This is why there is not a set method for the campaignScopes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaignScopes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CampaignScope } - * - * - */ - public List getCampaignScopes() { - if (campaignScopes == null) { - campaignScopes = new ArrayList(); - } - return this.campaignScopes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfDownloadEntity.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfDownloadEntity.java deleted file mode 100644 index 0bc70b1db9..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfDownloadEntity.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfDownloadEntity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfDownloadEntity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DownloadEntity" type="{https://bingads.microsoft.com/CampaignManagement/v12}DownloadEntity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfDownloadEntity", propOrder = { - "downloadEntities" -}) -public class ArrayOfDownloadEntity { - - @XmlElement(name = "DownloadEntity") - @XmlSchemaType(name = "string") - protected List downloadEntities; - - /** - * Gets the value of the downloadEntities 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 JAXB object. - * This is why there is not a set method for the downloadEntities property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDownloadEntities().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DownloadEntity } - * - * - */ - public List getDownloadEntities() { - if (downloadEntities == null) { - downloadEntities = new ArrayList(); - } - return this.downloadEntities; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfKeyValueOfstringstring.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfKeyValueOfstringstring.java deleted file mode 100644 index da8b0ba447..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfKeyValueOfstringstring.java +++ /dev/null @@ -1,163 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeyValueOfstringstring complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeyValueOfstringstring">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeyValueOfstringstring" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeyValueOfstringstring", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", propOrder = { - "keyValueOfstringstrings" -}) -public class ArrayOfKeyValueOfstringstring { - - @XmlElement(name = "KeyValueOfstringstring") - protected List keyValueOfstringstrings; - - /** - * Gets the value of the keyValueOfstringstrings 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 JAXB object. - * This is why there is not a set method for the keyValueOfstringstrings property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeyValueOfstringstrings().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArrayOfKeyValueOfstringstring.KeyValueOfstringstring } - * - * - */ - public List getKeyValueOfstringstrings() { - if (keyValueOfstringstrings == null) { - keyValueOfstringstrings = new ArrayList(); - } - return this.keyValueOfstringstrings; - } - - - /** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "key", - "value" - }) - public static class KeyValueOfstringstring { - - @XmlElement(name = "Key", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", required = true, nillable = true) - protected String key; - @XmlElement(name = "Value", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", required = true, nillable = true) - protected String value; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfKeyValuePairOfstringstring.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfKeyValuePairOfstringstring.java deleted file mode 100644 index 6c5589a2b4..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfKeyValuePairOfstringstring.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeyValuePairOfstringstring complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeyValuePairOfstringstring">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeyValuePairOfstringstring" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}KeyValuePairOfstringstring" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeyValuePairOfstringstring", namespace = "http://schemas.datacontract.org/2004/07/System.Collections.Generic", propOrder = { - "keyValuePairOfstringstrings" -}) -public class ArrayOfKeyValuePairOfstringstring { - - @XmlElement(name = "KeyValuePairOfstringstring") - protected List keyValuePairOfstringstrings; - - /** - * Gets the value of the keyValuePairOfstringstrings 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 JAXB object. - * This is why there is not a set method for the keyValuePairOfstringstrings property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeyValuePairOfstringstrings().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeyValuePairOfstringstring } - * - * - */ - public List getKeyValuePairOfstringstrings() { - if (keyValuePairOfstringstrings == null) { - keyValuePairOfstringstrings = new ArrayList(); - } - return this.keyValuePairOfstringstrings; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfOperationError.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOfOperationError.java deleted file mode 100644 index c4326cc1f0..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOfOperationError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfOperationError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfOperationError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OperationError" type="{https://bingads.microsoft.com/CampaignManagement/v12}OperationError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfOperationError", propOrder = { - "operationErrors" -}) -public class ArrayOfOperationError { - - @XmlElement(name = "OperationError", nillable = true) - protected List operationErrors; - - /** - * Gets the value of the operationErrors 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 JAXB object. - * This is why there is not a set method for the operationErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOperationErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OperationError } - * - * - */ - public List getOperationErrors() { - if (operationErrors == null) { - operationErrors = new ArrayList(); - } - return this.operationErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ArrayOflong.java b/proxies/com/microsoft/bingads/v12/bulk/ArrayOflong.java deleted file mode 100644 index cd140d7649..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ArrayOflong.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOflong complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOflong">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="long" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOflong", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", propOrder = { - "longs" -}) -public class ArrayOflong { - - @XmlElement(name = "long", type = Long.class) - protected List longs; - - /** - * Gets the value of the longs 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 JAXB object. - * This is why there is not a set method for the longs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLongs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Long } - * - * - */ - public List getLongs() { - if (longs == null) { - longs = new ArrayList(); - } - return this.longs; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/BatchError.java b/proxies/com/microsoft/bingads/v12/bulk/BatchError.java deleted file mode 100644 index f4886354a2..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/BatchError.java +++ /dev/null @@ -1,262 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BatchError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BatchError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FieldPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
- *         <element name="Index" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BatchError", propOrder = { - "code", - "details", - "errorCode", - "fieldPath", - "forwardCompatibilityMap", - "index", - "message", - "type" -}) -@XmlSeeAlso({ - EditorialError.class -}) -public class BatchError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Details", nillable = true) - protected String details; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "FieldPath", nillable = true) - protected String fieldPath; - @XmlElement(name = "ForwardCompatibilityMap", nillable = true) - protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; - @XmlElement(name = "Index") - protected Integer index; - @XmlElement(name = "Message", nillable = true) - protected String message; - @XmlElement(name = "Type", nillable = true) - protected String type; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetails(String value) { - this.details = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the fieldPath property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFieldPath() { - return fieldPath; - } - - /** - * Sets the value of the fieldPath property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFieldPath(String value) { - this.fieldPath = value; - } - - /** - * Gets the value of the forwardCompatibilityMap property. - * - * @return - * possible object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { - return forwardCompatibilityMap; - } - - /** - * Sets the value of the forwardCompatibilityMap property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { - this.forwardCompatibilityMap = value; - } - - /** - * Gets the value of the index property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIndex() { - return index; - } - - /** - * Sets the value of the index property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIndex(Integer value) { - this.index = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/BulkService.java b/proxies/com/microsoft/bingads/v12/bulk/BulkService.java deleted file mode 100644 index 5868f9887c..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/BulkService.java +++ /dev/null @@ -1,78 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.Service; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceException; -import javax.xml.ws.WebServiceFeature; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebServiceClient(name = "BulkService", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", wsdlLocation = "https://bulk.api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v12/BulkService.svc?wsdl") -public class BulkService - extends Service -{ - - private final static URL BULKSERVICE_WSDL_LOCATION; - private final static WebServiceException BULKSERVICE_EXCEPTION; - private final static QName BULKSERVICE_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "BulkService"); - - static { - URL url = null; - WebServiceException e = null; - try { - url = new URL("https://bulk.api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v12/BulkService.svc?wsdl"); - } catch (MalformedURLException ex) { - e = new WebServiceException(ex); - } - BULKSERVICE_WSDL_LOCATION = url; - BULKSERVICE_EXCEPTION = e; - } - - public BulkService() { - super(__getWsdlLocation(), BULKSERVICE_QNAME); - } - - public BulkService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - /** - * - * @return - * returns IBulkService - */ - @WebEndpoint(name = "BasicHttpBinding_IBulkService") - public IBulkService getBasicHttpBindingIBulkService() { - return super.getPort(new QName("https://bingads.microsoft.com/CampaignManagement/v12", "BasicHttpBinding_IBulkService"), IBulkService.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns IBulkService - */ - @WebEndpoint(name = "BasicHttpBinding_IBulkService") - public IBulkService getBasicHttpBindingIBulkService(WebServiceFeature... features) { - return super.getPort(new QName("https://bingads.microsoft.com/CampaignManagement/v12", "BasicHttpBinding_IBulkService"), IBulkService.class, features); - } - - private static URL __getWsdlLocation() { - if (BULKSERVICE_EXCEPTION!= null) { - throw BULKSERVICE_EXCEPTION; - } - return BULKSERVICE_WSDL_LOCATION; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/CampaignScope.java b/proxies/com/microsoft/bingads/v12/bulk/CampaignScope.java deleted file mode 100644 index f23030f1ab..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/CampaignScope.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CampaignScope complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CampaignScope">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="ParentAccountId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CampaignScope", propOrder = { - "campaignId", - "parentAccountId" -}) -public class CampaignScope { - - @XmlElement(name = "CampaignId") - protected Long campaignId; - @XmlElement(name = "ParentAccountId") - protected Long parentAccountId; - - /** - * 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 parentAccountId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getParentAccountId() { - return parentAccountId; - } - - /** - * Sets the value of the parentAccountId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setParentAccountId(Long value) { - this.parentAccountId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Char.java b/proxies/com/microsoft/bingads/v12/bulk/Char.java deleted file mode 100644 index 6f4f9810d9..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Char.java +++ /dev/null @@ -1,49 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for char simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="char">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "char", namespace = "http://schemas.microsoft.com/2003/10/Serialization/", propOrder = { - "value" -}) -public class Char { - - @XmlValue - protected int value; - - /** - * Gets the value of the value property. - * - */ - public int getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - */ - public void setValue(int value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/CompressionType.java b/proxies/com/microsoft/bingads/v12/bulk/CompressionType.java deleted file mode 100644 index 9e6a8ec18e..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/CompressionType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CompressionType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="CompressionType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Zip"/>
- *     <enumeration value="GZip"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "CompressionType") -@XmlEnum -public enum CompressionType { - - @XmlEnumValue("Zip") - ZIP("Zip"), - @XmlEnumValue("GZip") - G_ZIP("GZip"); - private final String value; - - CompressionType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static CompressionType fromValue(String v) { - for (CompressionType c: CompressionType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DataScope.java b/proxies/com/microsoft/bingads/v12/bulk/DataScope.java deleted file mode 100644 index c31c56182e..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DataScope.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.microsoft.bingads.v12.bulk; - -/** - * Enum class for DataScope. - */ -public enum DataScope { - - ENTITY_DATA("EntityData"), - ENTITY_PERFORMANCE_DATA("EntityPerformanceData"), - QUALITY_SCORE_DATA("QualityScoreData"), - BID_SUGGESTIONS_DATA("BidSuggestionsData"); - - private final String value; - - DataScope(String v) { - value = v; - } - - public String value() { - return value; - } - - public static DataScope fromValue(String v) { - for (DataScope c : DataScope.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/v12/bulk/DataScopeConverter.java b/proxies/com/microsoft/bingads/v12/bulk/DataScopeConverter.java deleted file mode 100644 index 5c9d5bedc9..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DataScopeConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class DataScopeConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(DataScope.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (DataScope 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/v12/bulk/Date.java b/proxies/com/microsoft/bingads/v12/bulk/Date.java deleted file mode 100644 index b4f8e9c953..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Date.java +++ /dev/null @@ -1,94 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Date complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Date">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Date", propOrder = { - "day", - "month", - "year" -}) -public class Date { - - @XmlElement(name = "Day") - protected int day; - @XmlElement(name = "Month") - protected int month; - @XmlElement(name = "Year") - protected int year; - - /** - * Gets the value of the day property. - * - */ - public int getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - */ - public void setDay(int value) { - this.day = value; - } - - /** - * Gets the value of the month property. - * - */ - public int getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - */ - public void setMonth(int value) { - this.month = value; - } - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByAccountIdsRequest.java b/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByAccountIdsRequest.java deleted file mode 100644 index 5d8a25823e..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByAccountIdsRequest.java +++ /dev/null @@ -1,269 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.Calendar; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="CompressionType" type="{https://bingads.microsoft.com/CampaignManagement/v12}CompressionType" minOccurs="0"/>
- *         <element name="DataScope" type="{https://bingads.microsoft.com/CampaignManagement/v12}DataScope" minOccurs="0"/>
- *         <element name="DownloadEntities" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfDownloadEntity" minOccurs="0"/>
- *         <element name="DownloadFileType" type="{https://bingads.microsoft.com/CampaignManagement/v12}DownloadFileType" minOccurs="0"/>
- *         <element name="FormatVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="LastSyncTimeInUTC" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="PerformanceStatsDateRange" type="{https://bingads.microsoft.com/CampaignManagement/v12}PerformanceStatsDateRange" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "accountIds", - "compressionType", - "dataScope", - "downloadEntities", - "downloadFileType", - "formatVersion", - "lastSyncTimeInUTC", - "performanceStatsDateRange" -}) -@XmlRootElement(name = "DownloadCampaignsByAccountIdsRequest") -public class DownloadCampaignsByAccountIdsRequest { - - @XmlElement(name = "AccountIds", nillable = true) - protected ArrayOflong accountIds; - @XmlElement(name = "CompressionType", nillable = true) - @XmlSchemaType(name = "string") - protected CompressionType compressionType; - @XmlElement(name = "DataScope", type = String.class) - @XmlJavaTypeAdapter(Adapter2 .class) - protected Collection dataScope; - @XmlElement(name = "DownloadEntities", nillable = true) - protected ArrayOfDownloadEntity downloadEntities; - @XmlElement(name = "DownloadFileType", nillable = true) - @XmlSchemaType(name = "string") - protected DownloadFileType downloadFileType; - @XmlElement(name = "FormatVersion", nillable = true) - protected String formatVersion; - @XmlElement(name = "LastSyncTimeInUTC", type = String.class, nillable = true) - @XmlJavaTypeAdapter(Adapter1 .class) - @XmlSchemaType(name = "dateTime") - protected Calendar lastSyncTimeInUTC; - @XmlElement(name = "PerformanceStatsDateRange", nillable = true) - protected PerformanceStatsDateRange performanceStatsDateRange; - - /** - * Gets the value of the accountIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getAccountIds() { - return accountIds; - } - - /** - * Sets the value of the accountIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setAccountIds(ArrayOflong value) { - this.accountIds = value; - } - - /** - * Gets the value of the compressionType property. - * - * @return - * possible object is - * {@link CompressionType } - * - */ - public CompressionType getCompressionType() { - return compressionType; - } - - /** - * Sets the value of the compressionType property. - * - * @param value - * allowed object is - * {@link CompressionType } - * - */ - public void setCompressionType(CompressionType value) { - this.compressionType = value; - } - - /** - * Gets the value of the dataScope property. - * - * @return - * possible object is - * {@link String } - * - */ - public Collection getDataScope() { - return dataScope; - } - - /** - * Sets the value of the dataScope property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDataScope(Collection value) { - this.dataScope = value; - } - - /** - * Gets the value of the downloadEntities property. - * - * @return - * possible object is - * {@link ArrayOfDownloadEntity } - * - */ - public ArrayOfDownloadEntity getDownloadEntities() { - return downloadEntities; - } - - /** - * Sets the value of the downloadEntities property. - * - * @param value - * allowed object is - * {@link ArrayOfDownloadEntity } - * - */ - public void setDownloadEntities(ArrayOfDownloadEntity value) { - this.downloadEntities = value; - } - - /** - * Gets the value of the downloadFileType property. - * - * @return - * possible object is - * {@link DownloadFileType } - * - */ - public DownloadFileType getDownloadFileType() { - return downloadFileType; - } - - /** - * Sets the value of the downloadFileType property. - * - * @param value - * allowed object is - * {@link DownloadFileType } - * - */ - public void setDownloadFileType(DownloadFileType value) { - this.downloadFileType = value; - } - - /** - * Gets the value of the formatVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormatVersion() { - return formatVersion; - } - - /** - * Sets the value of the formatVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormatVersion(String value) { - this.formatVersion = value; - } - - /** - * Gets the value of the lastSyncTimeInUTC property. - * - * @return - * possible object is - * {@link String } - * - */ - public Calendar getLastSyncTimeInUTC() { - return lastSyncTimeInUTC; - } - - /** - * Sets the value of the lastSyncTimeInUTC property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastSyncTimeInUTC(Calendar value) { - this.lastSyncTimeInUTC = value; - } - - /** - * Gets the value of the performanceStatsDateRange property. - * - * @return - * possible object is - * {@link PerformanceStatsDateRange } - * - */ - public PerformanceStatsDateRange getPerformanceStatsDateRange() { - return performanceStatsDateRange; - } - - /** - * Sets the value of the performanceStatsDateRange property. - * - * @param value - * allowed object is - * {@link PerformanceStatsDateRange } - * - */ - public void setPerformanceStatsDateRange(PerformanceStatsDateRange value) { - this.performanceStatsDateRange = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByAccountIdsResponse.java b/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByAccountIdsResponse.java deleted file mode 100644 index afaa7330ea..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByAccountIdsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DownloadRequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "downloadRequestId" -}) -@XmlRootElement(name = "DownloadCampaignsByAccountIdsResponse") -public class DownloadCampaignsByAccountIdsResponse { - - @XmlElement(name = "DownloadRequestId", nillable = true) - protected String downloadRequestId; - - /** - * Gets the value of the downloadRequestId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDownloadRequestId() { - return downloadRequestId; - } - - /** - * Sets the value of the downloadRequestId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDownloadRequestId(String value) { - this.downloadRequestId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByCampaignIdsRequest.java b/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByCampaignIdsRequest.java deleted file mode 100644 index 8d6eed9b29..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByCampaignIdsRequest.java +++ /dev/null @@ -1,269 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.Calendar; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Campaigns" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfCampaignScope" minOccurs="0"/>
- *         <element name="CompressionType" type="{https://bingads.microsoft.com/CampaignManagement/v12}CompressionType" minOccurs="0"/>
- *         <element name="DataScope" type="{https://bingads.microsoft.com/CampaignManagement/v12}DataScope" minOccurs="0"/>
- *         <element name="DownloadEntities" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfDownloadEntity" minOccurs="0"/>
- *         <element name="DownloadFileType" type="{https://bingads.microsoft.com/CampaignManagement/v12}DownloadFileType" minOccurs="0"/>
- *         <element name="FormatVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="LastSyncTimeInUTC" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="PerformanceStatsDateRange" type="{https://bingads.microsoft.com/CampaignManagement/v12}PerformanceStatsDateRange" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaigns", - "compressionType", - "dataScope", - "downloadEntities", - "downloadFileType", - "formatVersion", - "lastSyncTimeInUTC", - "performanceStatsDateRange" -}) -@XmlRootElement(name = "DownloadCampaignsByCampaignIdsRequest") -public class DownloadCampaignsByCampaignIdsRequest { - - @XmlElement(name = "Campaigns", nillable = true) - protected ArrayOfCampaignScope campaigns; - @XmlElement(name = "CompressionType", nillable = true) - @XmlSchemaType(name = "string") - protected CompressionType compressionType; - @XmlElement(name = "DataScope", type = String.class) - @XmlJavaTypeAdapter(Adapter2 .class) - protected Collection dataScope; - @XmlElement(name = "DownloadEntities", nillable = true) - protected ArrayOfDownloadEntity downloadEntities; - @XmlElement(name = "DownloadFileType", nillable = true) - @XmlSchemaType(name = "string") - protected DownloadFileType downloadFileType; - @XmlElement(name = "FormatVersion", nillable = true) - protected String formatVersion; - @XmlElement(name = "LastSyncTimeInUTC", type = String.class, nillable = true) - @XmlJavaTypeAdapter(Adapter1 .class) - @XmlSchemaType(name = "dateTime") - protected Calendar lastSyncTimeInUTC; - @XmlElement(name = "PerformanceStatsDateRange", nillable = true) - protected PerformanceStatsDateRange performanceStatsDateRange; - - /** - * Gets the value of the campaigns property. - * - * @return - * possible object is - * {@link ArrayOfCampaignScope } - * - */ - public ArrayOfCampaignScope getCampaigns() { - return campaigns; - } - - /** - * Sets the value of the campaigns property. - * - * @param value - * allowed object is - * {@link ArrayOfCampaignScope } - * - */ - public void setCampaigns(ArrayOfCampaignScope value) { - this.campaigns = value; - } - - /** - * Gets the value of the compressionType property. - * - * @return - * possible object is - * {@link CompressionType } - * - */ - public CompressionType getCompressionType() { - return compressionType; - } - - /** - * Sets the value of the compressionType property. - * - * @param value - * allowed object is - * {@link CompressionType } - * - */ - public void setCompressionType(CompressionType value) { - this.compressionType = value; - } - - /** - * Gets the value of the dataScope property. - * - * @return - * possible object is - * {@link String } - * - */ - public Collection getDataScope() { - return dataScope; - } - - /** - * Sets the value of the dataScope property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDataScope(Collection value) { - this.dataScope = value; - } - - /** - * Gets the value of the downloadEntities property. - * - * @return - * possible object is - * {@link ArrayOfDownloadEntity } - * - */ - public ArrayOfDownloadEntity getDownloadEntities() { - return downloadEntities; - } - - /** - * Sets the value of the downloadEntities property. - * - * @param value - * allowed object is - * {@link ArrayOfDownloadEntity } - * - */ - public void setDownloadEntities(ArrayOfDownloadEntity value) { - this.downloadEntities = value; - } - - /** - * Gets the value of the downloadFileType property. - * - * @return - * possible object is - * {@link DownloadFileType } - * - */ - public DownloadFileType getDownloadFileType() { - return downloadFileType; - } - - /** - * Sets the value of the downloadFileType property. - * - * @param value - * allowed object is - * {@link DownloadFileType } - * - */ - public void setDownloadFileType(DownloadFileType value) { - this.downloadFileType = value; - } - - /** - * Gets the value of the formatVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormatVersion() { - return formatVersion; - } - - /** - * Sets the value of the formatVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormatVersion(String value) { - this.formatVersion = value; - } - - /** - * Gets the value of the lastSyncTimeInUTC property. - * - * @return - * possible object is - * {@link String } - * - */ - public Calendar getLastSyncTimeInUTC() { - return lastSyncTimeInUTC; - } - - /** - * Sets the value of the lastSyncTimeInUTC property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastSyncTimeInUTC(Calendar value) { - this.lastSyncTimeInUTC = value; - } - - /** - * Gets the value of the performanceStatsDateRange property. - * - * @return - * possible object is - * {@link PerformanceStatsDateRange } - * - */ - public PerformanceStatsDateRange getPerformanceStatsDateRange() { - return performanceStatsDateRange; - } - - /** - * Sets the value of the performanceStatsDateRange property. - * - * @param value - * allowed object is - * {@link PerformanceStatsDateRange } - * - */ - public void setPerformanceStatsDateRange(PerformanceStatsDateRange value) { - this.performanceStatsDateRange = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByCampaignIdsResponse.java b/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByCampaignIdsResponse.java deleted file mode 100644 index 35214fa595..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DownloadCampaignsByCampaignIdsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DownloadRequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "downloadRequestId" -}) -@XmlRootElement(name = "DownloadCampaignsByCampaignIdsResponse") -public class DownloadCampaignsByCampaignIdsResponse { - - @XmlElement(name = "DownloadRequestId", nillable = true) - protected String downloadRequestId; - - /** - * Gets the value of the downloadRequestId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDownloadRequestId() { - return downloadRequestId; - } - - /** - * Sets the value of the downloadRequestId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDownloadRequestId(String value) { - this.downloadRequestId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DownloadEntity.java b/proxies/com/microsoft/bingads/v12/bulk/DownloadEntity.java deleted file mode 100644 index f1cec3e48f..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DownloadEntity.java +++ /dev/null @@ -1,378 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DownloadEntity. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DownloadEntity">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Campaigns"/>
- *     <enumeration value="AdGroups"/>
- *     <enumeration value="Ads"/>
- *     <enumeration value="Keywords"/>
- *     <enumeration value="CampaignNegativeKeywords"/>
- *     <enumeration value="AdGroupNegativeKeywords"/>
- *     <enumeration value="CampaignTargetCriterions"/>
- *     <enumeration value="AdGroupTargetCriterions"/>
- *     <enumeration value="CampaignNegativeSites"/>
- *     <enumeration value="AdGroupNegativeSites"/>
- *     <enumeration value="CampaignLocationAdExtensions"/>
- *     <enumeration value="CampaignCallAdExtensions"/>
- *     <enumeration value="LocationAdExtensions"/>
- *     <enumeration value="CallAdExtensions"/>
- *     <enumeration value="NegativeKeywordLists"/>
- *     <enumeration value="SharedNegativeKeywords"/>
- *     <enumeration value="CampaignNegativeKeywordListAssociations"/>
- *     <enumeration value="ImageAdExtensions"/>
- *     <enumeration value="CampaignImageAdExtensions"/>
- *     <enumeration value="AdGroupImageAdExtensions"/>
- *     <enumeration value="AppAdExtensions"/>
- *     <enumeration value="AdGroupAppAdExtensions"/>
- *     <enumeration value="CampaignAppAdExtensions"/>
- *     <enumeration value="PriceAdExtensions"/>
- *     <enumeration value="ReviewAdExtensions"/>
- *     <enumeration value="CampaignNegativeDynamicSearchAdTargets"/>
- *     <enumeration value="AdGroupProductPartitions"/>
- *     <enumeration value="CampaignProductScopes"/>
- *     <enumeration value="CampaignReviewAdExtensions"/>
- *     <enumeration value="AdGroupReviewAdExtensions"/>
- *     <enumeration value="CalloutAdExtensions"/>
- *     <enumeration value="CampaignCalloutAdExtensions"/>
- *     <enumeration value="AdGroupCalloutAdExtensions"/>
- *     <enumeration value="SitelinkAdExtensions"/>
- *     <enumeration value="CampaignSitelinkAdExtensions"/>
- *     <enumeration value="AdGroupSitelinkAdExtensions"/>
- *     <enumeration value="ActionLinkAdExtensions"/>
- *     <enumeration value="CampaignActionLinkAdExtensions"/>
- *     <enumeration value="AdGroupActionLinkAdExtensions"/>
- *     <enumeration value="StructuredSnippetAdExtensions"/>
- *     <enumeration value="CampaignStructuredSnippetAdExtensions"/>
- *     <enumeration value="AdGroupStructuredSnippetAdExtensions"/>
- *     <enumeration value="RemarketingLists"/>
- *     <enumeration value="AdGroupRemarketingListAssociations"/>
- *     <enumeration value="Budgets"/>
- *     <enumeration value="TextAds"/>
- *     <enumeration value="ProductAds"/>
- *     <enumeration value="AppInstallAds"/>
- *     <enumeration value="ExpandedTextAds"/>
- *     <enumeration value="DynamicSearchAds"/>
- *     <enumeration value="AdGroupDynamicSearchAdTargets"/>
- *     <enumeration value="AdGroupNegativeDynamicSearchAdTargets"/>
- *     <enumeration value="CampaignPriceAdExtensions"/>
- *     <enumeration value="AdGroupPriceAdExtensions"/>
- *     <enumeration value="Labels"/>
- *     <enumeration value="CampaignLabels"/>
- *     <enumeration value="AdGroupLabels"/>
- *     <enumeration value="TextAdLabels"/>
- *     <enumeration value="KeywordLabels"/>
- *     <enumeration value="AdGroupNegativeRemarketingListAssociations"/>
- *     <enumeration value="CustomAudiences"/>
- *     <enumeration value="AdGroupCustomAudienceAssociations"/>
- *     <enumeration value="AdGroupNegativeCustomAudienceAssociations"/>
- *     <enumeration value="InMarketAudiences"/>
- *     <enumeration value="AdGroupInMarketAudienceAssociations"/>
- *     <enumeration value="AdGroupNegativeInMarketAudienceAssociations"/>
- *     <enumeration value="Audiences"/>
- *     <enumeration value="AdGroupAudienceAssociations"/>
- *     <enumeration value="AdGroupNegativeAudienceAssociations"/>
- *     <enumeration value="ProductAdLabels"/>
- *     <enumeration value="AppInstallAdLabels"/>
- *     <enumeration value="ExpandedTextAdLabels"/>
- *     <enumeration value="DynamicSearchAdLabels"/>
- *     <enumeration value="AccountLocationAdExtensions"/>
- *     <enumeration value="AccountImageAdExtensions"/>
- *     <enumeration value="AccountAppAdExtensions"/>
- *     <enumeration value="AccountPriceAdExtensions"/>
- *     <enumeration value="AccountReviewAdExtensions"/>
- *     <enumeration value="AccountCalloutAdExtensions"/>
- *     <enumeration value="AccountSitelinkAdExtensions"/>
- *     <enumeration value="AccountActionLinkAdExtensions"/>
- *     <enumeration value="AccountStructuredSnippetAdExtensions"/>
- *     <enumeration value="ResponsiveAds"/>
- *     <enumeration value="ResponsiveAdLabels"/>
- *     <enumeration value="ProductAudiences"/>
- *     <enumeration value="AdGroupProductAudienceAssociations"/>
- *     <enumeration value="AdGroupNegativeProductAudienceAssociations"/>
- *     <enumeration value="SimilarRemarketingLists"/>
- *     <enumeration value="AdGroupSimilarRemarketingListAssociations"/>
- *     <enumeration value="AdGroupNegativeSimilarRemarketingListAssociations"/>
- *     <enumeration value="Experiments"/>
- *     <enumeration value="ActionAdExtensions"/>
- *     <enumeration value="CampaignActionAdExtensions"/>
- *     <enumeration value="AdGroupActionAdExtensions"/>
- *     <enumeration value="AccountActionAdExtensions"/>
- *     <enumeration value="ResponsiveSearchAds"/>
- *     <enumeration value="ResponsiveSearchAdLabels"/>
- *     <enumeration value="CampaignAudienceAssociations"/>
- *     <enumeration value="CampaignNegativeAudienceAssociations"/>
- *     <enumeration value="CampaignCustomAudienceAssociations"/>
- *     <enumeration value="CampaignNegativeCustomAudienceAssociations"/>
- *     <enumeration value="CampaignInMarketAudienceAssociations"/>
- *     <enumeration value="CampaignNegativeInMarketAudienceAssociations"/>
- *     <enumeration value="CampaignProductAudienceAssociations"/>
- *     <enumeration value="CampaignNegativeProductAudienceAssociations"/>
- *     <enumeration value="CampaignRemarketingListAssociations"/>
- *     <enumeration value="CampaignNegativeRemarketingListAssociations"/>
- *     <enumeration value="CampaignSimilarRemarketingListAssociations"/>
- *     <enumeration value="CampaignNegativeSimilarRemarketingListAssociations"/>
- *     <enumeration value="Feeds"/>
- *     <enumeration value="FeedItems"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DownloadEntity") -@XmlEnum -public enum DownloadEntity { - - @XmlEnumValue("Campaigns") - CAMPAIGNS("Campaigns"), - @XmlEnumValue("AdGroups") - AD_GROUPS("AdGroups"), - @XmlEnumValue("Ads") - ADS("Ads"), - @XmlEnumValue("Keywords") - KEYWORDS("Keywords"), - @XmlEnumValue("CampaignNegativeKeywords") - CAMPAIGN_NEGATIVE_KEYWORDS("CampaignNegativeKeywords"), - @XmlEnumValue("AdGroupNegativeKeywords") - AD_GROUP_NEGATIVE_KEYWORDS("AdGroupNegativeKeywords"), - @XmlEnumValue("CampaignTargetCriterions") - CAMPAIGN_TARGET_CRITERIONS("CampaignTargetCriterions"), - @XmlEnumValue("AdGroupTargetCriterions") - AD_GROUP_TARGET_CRITERIONS("AdGroupTargetCriterions"), - @XmlEnumValue("CampaignNegativeSites") - CAMPAIGN_NEGATIVE_SITES("CampaignNegativeSites"), - @XmlEnumValue("AdGroupNegativeSites") - AD_GROUP_NEGATIVE_SITES("AdGroupNegativeSites"), - @XmlEnumValue("CampaignLocationAdExtensions") - CAMPAIGN_LOCATION_AD_EXTENSIONS("CampaignLocationAdExtensions"), - @XmlEnumValue("CampaignCallAdExtensions") - CAMPAIGN_CALL_AD_EXTENSIONS("CampaignCallAdExtensions"), - @XmlEnumValue("LocationAdExtensions") - LOCATION_AD_EXTENSIONS("LocationAdExtensions"), - @XmlEnumValue("CallAdExtensions") - CALL_AD_EXTENSIONS("CallAdExtensions"), - @XmlEnumValue("NegativeKeywordLists") - NEGATIVE_KEYWORD_LISTS("NegativeKeywordLists"), - @XmlEnumValue("SharedNegativeKeywords") - SHARED_NEGATIVE_KEYWORDS("SharedNegativeKeywords"), - @XmlEnumValue("CampaignNegativeKeywordListAssociations") - CAMPAIGN_NEGATIVE_KEYWORD_LIST_ASSOCIATIONS("CampaignNegativeKeywordListAssociations"), - @XmlEnumValue("ImageAdExtensions") - IMAGE_AD_EXTENSIONS("ImageAdExtensions"), - @XmlEnumValue("CampaignImageAdExtensions") - CAMPAIGN_IMAGE_AD_EXTENSIONS("CampaignImageAdExtensions"), - @XmlEnumValue("AdGroupImageAdExtensions") - AD_GROUP_IMAGE_AD_EXTENSIONS("AdGroupImageAdExtensions"), - @XmlEnumValue("AppAdExtensions") - APP_AD_EXTENSIONS("AppAdExtensions"), - @XmlEnumValue("AdGroupAppAdExtensions") - AD_GROUP_APP_AD_EXTENSIONS("AdGroupAppAdExtensions"), - @XmlEnumValue("CampaignAppAdExtensions") - CAMPAIGN_APP_AD_EXTENSIONS("CampaignAppAdExtensions"), - @XmlEnumValue("PriceAdExtensions") - PRICE_AD_EXTENSIONS("PriceAdExtensions"), - @XmlEnumValue("ReviewAdExtensions") - REVIEW_AD_EXTENSIONS("ReviewAdExtensions"), - @XmlEnumValue("CampaignNegativeDynamicSearchAdTargets") - CAMPAIGN_NEGATIVE_DYNAMIC_SEARCH_AD_TARGETS("CampaignNegativeDynamicSearchAdTargets"), - @XmlEnumValue("AdGroupProductPartitions") - AD_GROUP_PRODUCT_PARTITIONS("AdGroupProductPartitions"), - @XmlEnumValue("CampaignProductScopes") - CAMPAIGN_PRODUCT_SCOPES("CampaignProductScopes"), - @XmlEnumValue("CampaignReviewAdExtensions") - CAMPAIGN_REVIEW_AD_EXTENSIONS("CampaignReviewAdExtensions"), - @XmlEnumValue("AdGroupReviewAdExtensions") - AD_GROUP_REVIEW_AD_EXTENSIONS("AdGroupReviewAdExtensions"), - @XmlEnumValue("CalloutAdExtensions") - CALLOUT_AD_EXTENSIONS("CalloutAdExtensions"), - @XmlEnumValue("CampaignCalloutAdExtensions") - CAMPAIGN_CALLOUT_AD_EXTENSIONS("CampaignCalloutAdExtensions"), - @XmlEnumValue("AdGroupCalloutAdExtensions") - AD_GROUP_CALLOUT_AD_EXTENSIONS("AdGroupCalloutAdExtensions"), - @XmlEnumValue("SitelinkAdExtensions") - SITELINK_AD_EXTENSIONS("SitelinkAdExtensions"), - @XmlEnumValue("CampaignSitelinkAdExtensions") - CAMPAIGN_SITELINK_AD_EXTENSIONS("CampaignSitelinkAdExtensions"), - @XmlEnumValue("AdGroupSitelinkAdExtensions") - AD_GROUP_SITELINK_AD_EXTENSIONS("AdGroupSitelinkAdExtensions"), - @XmlEnumValue("ActionLinkAdExtensions") - ACTION_LINK_AD_EXTENSIONS("ActionLinkAdExtensions"), - @XmlEnumValue("CampaignActionLinkAdExtensions") - CAMPAIGN_ACTION_LINK_AD_EXTENSIONS("CampaignActionLinkAdExtensions"), - @XmlEnumValue("AdGroupActionLinkAdExtensions") - AD_GROUP_ACTION_LINK_AD_EXTENSIONS("AdGroupActionLinkAdExtensions"), - @XmlEnumValue("StructuredSnippetAdExtensions") - STRUCTURED_SNIPPET_AD_EXTENSIONS("StructuredSnippetAdExtensions"), - @XmlEnumValue("CampaignStructuredSnippetAdExtensions") - CAMPAIGN_STRUCTURED_SNIPPET_AD_EXTENSIONS("CampaignStructuredSnippetAdExtensions"), - @XmlEnumValue("AdGroupStructuredSnippetAdExtensions") - AD_GROUP_STRUCTURED_SNIPPET_AD_EXTENSIONS("AdGroupStructuredSnippetAdExtensions"), - @XmlEnumValue("RemarketingLists") - REMARKETING_LISTS("RemarketingLists"), - @XmlEnumValue("AdGroupRemarketingListAssociations") - AD_GROUP_REMARKETING_LIST_ASSOCIATIONS("AdGroupRemarketingListAssociations"), - @XmlEnumValue("Budgets") - BUDGETS("Budgets"), - @XmlEnumValue("TextAds") - TEXT_ADS("TextAds"), - @XmlEnumValue("ProductAds") - PRODUCT_ADS("ProductAds"), - @XmlEnumValue("AppInstallAds") - APP_INSTALL_ADS("AppInstallAds"), - @XmlEnumValue("ExpandedTextAds") - EXPANDED_TEXT_ADS("ExpandedTextAds"), - @XmlEnumValue("DynamicSearchAds") - DYNAMIC_SEARCH_ADS("DynamicSearchAds"), - @XmlEnumValue("AdGroupDynamicSearchAdTargets") - AD_GROUP_DYNAMIC_SEARCH_AD_TARGETS("AdGroupDynamicSearchAdTargets"), - @XmlEnumValue("AdGroupNegativeDynamicSearchAdTargets") - AD_GROUP_NEGATIVE_DYNAMIC_SEARCH_AD_TARGETS("AdGroupNegativeDynamicSearchAdTargets"), - @XmlEnumValue("CampaignPriceAdExtensions") - CAMPAIGN_PRICE_AD_EXTENSIONS("CampaignPriceAdExtensions"), - @XmlEnumValue("AdGroupPriceAdExtensions") - AD_GROUP_PRICE_AD_EXTENSIONS("AdGroupPriceAdExtensions"), - @XmlEnumValue("Labels") - LABELS("Labels"), - @XmlEnumValue("CampaignLabels") - CAMPAIGN_LABELS("CampaignLabels"), - @XmlEnumValue("AdGroupLabels") - AD_GROUP_LABELS("AdGroupLabels"), - @XmlEnumValue("TextAdLabels") - TEXT_AD_LABELS("TextAdLabels"), - @XmlEnumValue("KeywordLabels") - KEYWORD_LABELS("KeywordLabels"), - @XmlEnumValue("AdGroupNegativeRemarketingListAssociations") - AD_GROUP_NEGATIVE_REMARKETING_LIST_ASSOCIATIONS("AdGroupNegativeRemarketingListAssociations"), - @XmlEnumValue("CustomAudiences") - CUSTOM_AUDIENCES("CustomAudiences"), - @XmlEnumValue("AdGroupCustomAudienceAssociations") - AD_GROUP_CUSTOM_AUDIENCE_ASSOCIATIONS("AdGroupCustomAudienceAssociations"), - @XmlEnumValue("AdGroupNegativeCustomAudienceAssociations") - AD_GROUP_NEGATIVE_CUSTOM_AUDIENCE_ASSOCIATIONS("AdGroupNegativeCustomAudienceAssociations"), - @XmlEnumValue("InMarketAudiences") - IN_MARKET_AUDIENCES("InMarketAudiences"), - @XmlEnumValue("AdGroupInMarketAudienceAssociations") - AD_GROUP_IN_MARKET_AUDIENCE_ASSOCIATIONS("AdGroupInMarketAudienceAssociations"), - @XmlEnumValue("AdGroupNegativeInMarketAudienceAssociations") - AD_GROUP_NEGATIVE_IN_MARKET_AUDIENCE_ASSOCIATIONS("AdGroupNegativeInMarketAudienceAssociations"), - @XmlEnumValue("Audiences") - AUDIENCES("Audiences"), - @XmlEnumValue("AdGroupAudienceAssociations") - AD_GROUP_AUDIENCE_ASSOCIATIONS("AdGroupAudienceAssociations"), - @XmlEnumValue("AdGroupNegativeAudienceAssociations") - AD_GROUP_NEGATIVE_AUDIENCE_ASSOCIATIONS("AdGroupNegativeAudienceAssociations"), - @XmlEnumValue("ProductAdLabels") - PRODUCT_AD_LABELS("ProductAdLabels"), - @XmlEnumValue("AppInstallAdLabels") - APP_INSTALL_AD_LABELS("AppInstallAdLabels"), - @XmlEnumValue("ExpandedTextAdLabels") - EXPANDED_TEXT_AD_LABELS("ExpandedTextAdLabels"), - @XmlEnumValue("DynamicSearchAdLabels") - DYNAMIC_SEARCH_AD_LABELS("DynamicSearchAdLabels"), - @XmlEnumValue("AccountLocationAdExtensions") - ACCOUNT_LOCATION_AD_EXTENSIONS("AccountLocationAdExtensions"), - @XmlEnumValue("AccountImageAdExtensions") - ACCOUNT_IMAGE_AD_EXTENSIONS("AccountImageAdExtensions"), - @XmlEnumValue("AccountAppAdExtensions") - ACCOUNT_APP_AD_EXTENSIONS("AccountAppAdExtensions"), - @XmlEnumValue("AccountPriceAdExtensions") - ACCOUNT_PRICE_AD_EXTENSIONS("AccountPriceAdExtensions"), - @XmlEnumValue("AccountReviewAdExtensions") - ACCOUNT_REVIEW_AD_EXTENSIONS("AccountReviewAdExtensions"), - @XmlEnumValue("AccountCalloutAdExtensions") - ACCOUNT_CALLOUT_AD_EXTENSIONS("AccountCalloutAdExtensions"), - @XmlEnumValue("AccountSitelinkAdExtensions") - ACCOUNT_SITELINK_AD_EXTENSIONS("AccountSitelinkAdExtensions"), - @XmlEnumValue("AccountActionLinkAdExtensions") - ACCOUNT_ACTION_LINK_AD_EXTENSIONS("AccountActionLinkAdExtensions"), - @XmlEnumValue("AccountStructuredSnippetAdExtensions") - ACCOUNT_STRUCTURED_SNIPPET_AD_EXTENSIONS("AccountStructuredSnippetAdExtensions"), - @XmlEnumValue("ResponsiveAds") - RESPONSIVE_ADS("ResponsiveAds"), - @XmlEnumValue("ResponsiveAdLabels") - RESPONSIVE_AD_LABELS("ResponsiveAdLabels"), - @XmlEnumValue("ProductAudiences") - PRODUCT_AUDIENCES("ProductAudiences"), - @XmlEnumValue("AdGroupProductAudienceAssociations") - AD_GROUP_PRODUCT_AUDIENCE_ASSOCIATIONS("AdGroupProductAudienceAssociations"), - @XmlEnumValue("AdGroupNegativeProductAudienceAssociations") - AD_GROUP_NEGATIVE_PRODUCT_AUDIENCE_ASSOCIATIONS("AdGroupNegativeProductAudienceAssociations"), - @XmlEnumValue("SimilarRemarketingLists") - SIMILAR_REMARKETING_LISTS("SimilarRemarketingLists"), - @XmlEnumValue("AdGroupSimilarRemarketingListAssociations") - AD_GROUP_SIMILAR_REMARKETING_LIST_ASSOCIATIONS("AdGroupSimilarRemarketingListAssociations"), - @XmlEnumValue("AdGroupNegativeSimilarRemarketingListAssociations") - AD_GROUP_NEGATIVE_SIMILAR_REMARKETING_LIST_ASSOCIATIONS("AdGroupNegativeSimilarRemarketingListAssociations"), - @XmlEnumValue("Experiments") - EXPERIMENTS("Experiments"), - @XmlEnumValue("ActionAdExtensions") - ACTION_AD_EXTENSIONS("ActionAdExtensions"), - @XmlEnumValue("CampaignActionAdExtensions") - CAMPAIGN_ACTION_AD_EXTENSIONS("CampaignActionAdExtensions"), - @XmlEnumValue("AdGroupActionAdExtensions") - AD_GROUP_ACTION_AD_EXTENSIONS("AdGroupActionAdExtensions"), - @XmlEnumValue("AccountActionAdExtensions") - ACCOUNT_ACTION_AD_EXTENSIONS("AccountActionAdExtensions"), - @XmlEnumValue("ResponsiveSearchAds") - RESPONSIVE_SEARCH_ADS("ResponsiveSearchAds"), - @XmlEnumValue("ResponsiveSearchAdLabels") - RESPONSIVE_SEARCH_AD_LABELS("ResponsiveSearchAdLabels"), - @XmlEnumValue("CampaignAudienceAssociations") - CAMPAIGN_AUDIENCE_ASSOCIATIONS("CampaignAudienceAssociations"), - @XmlEnumValue("CampaignNegativeAudienceAssociations") - CAMPAIGN_NEGATIVE_AUDIENCE_ASSOCIATIONS("CampaignNegativeAudienceAssociations"), - @XmlEnumValue("CampaignCustomAudienceAssociations") - CAMPAIGN_CUSTOM_AUDIENCE_ASSOCIATIONS("CampaignCustomAudienceAssociations"), - @XmlEnumValue("CampaignNegativeCustomAudienceAssociations") - CAMPAIGN_NEGATIVE_CUSTOM_AUDIENCE_ASSOCIATIONS("CampaignNegativeCustomAudienceAssociations"), - @XmlEnumValue("CampaignInMarketAudienceAssociations") - CAMPAIGN_IN_MARKET_AUDIENCE_ASSOCIATIONS("CampaignInMarketAudienceAssociations"), - @XmlEnumValue("CampaignNegativeInMarketAudienceAssociations") - CAMPAIGN_NEGATIVE_IN_MARKET_AUDIENCE_ASSOCIATIONS("CampaignNegativeInMarketAudienceAssociations"), - @XmlEnumValue("CampaignProductAudienceAssociations") - CAMPAIGN_PRODUCT_AUDIENCE_ASSOCIATIONS("CampaignProductAudienceAssociations"), - @XmlEnumValue("CampaignNegativeProductAudienceAssociations") - CAMPAIGN_NEGATIVE_PRODUCT_AUDIENCE_ASSOCIATIONS("CampaignNegativeProductAudienceAssociations"), - @XmlEnumValue("CampaignRemarketingListAssociations") - CAMPAIGN_REMARKETING_LIST_ASSOCIATIONS("CampaignRemarketingListAssociations"), - @XmlEnumValue("CampaignNegativeRemarketingListAssociations") - CAMPAIGN_NEGATIVE_REMARKETING_LIST_ASSOCIATIONS("CampaignNegativeRemarketingListAssociations"), - @XmlEnumValue("CampaignSimilarRemarketingListAssociations") - CAMPAIGN_SIMILAR_REMARKETING_LIST_ASSOCIATIONS("CampaignSimilarRemarketingListAssociations"), - @XmlEnumValue("CampaignNegativeSimilarRemarketingListAssociations") - CAMPAIGN_NEGATIVE_SIMILAR_REMARKETING_LIST_ASSOCIATIONS("CampaignNegativeSimilarRemarketingListAssociations"), - @XmlEnumValue("Feeds") - FEEDS("Feeds"), - @XmlEnumValue("FeedItems") - FEED_ITEMS("FeedItems"); - private final String value; - - DownloadEntity(String v) { - value = v; - } - - public String value() { - return value; - } - - public static DownloadEntity fromValue(String v) { - for (DownloadEntity c: DownloadEntity.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/DownloadFileType.java b/proxies/com/microsoft/bingads/v12/bulk/DownloadFileType.java deleted file mode 100644 index 1167470bb7..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/DownloadFileType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DownloadFileType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DownloadFileType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Csv"/>
- *     <enumeration value="Tsv"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DownloadFileType") -@XmlEnum -public enum DownloadFileType { - - @XmlEnumValue("Csv") - CSV("Csv"), - @XmlEnumValue("Tsv") - TSV("Tsv"); - private final String value; - - DownloadFileType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static DownloadFileType fromValue(String v) { - for (DownloadFileType c: DownloadFileType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Duration.java b/proxies/com/microsoft/bingads/v12/bulk/Duration.java deleted file mode 100644 index 209d893e08..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Duration.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for duration simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="duration">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}duration">
- *     <pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?"/>
- *     <minInclusive value="-P10675199DT2H48M5.4775808S"/>
- *     <maxInclusive value="P10675199DT2H48M5.4775807S"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "duration", namespace = "http://schemas.microsoft.com/2003/10/Serialization/", propOrder = { - "value" -}) -public class Duration { - - @XmlValue - protected javax.xml.datatype.Duration value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link javax.xml.datatype.Duration } - * - */ - public javax.xml.datatype.Duration getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link javax.xml.datatype.Duration } - * - */ - public void setValue(javax.xml.datatype.Duration value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ENTITIES.java b/proxies/com/microsoft/bingads/v12/bulk/ENTITIES.java deleted file mode 100644 index 20de5c322c..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ENTITIES.java +++ /dev/null @@ -1,70 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ENTITIES simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="ENTITIES">
- *   <restriction>
- *     <simpleType>
- *       <list itemType="{http://www.w3.org/2001/XMLSchema}ENTITY" />
- *     </simpleType>
- *     <minLength value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ENTITIES", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "values" -}) -public class ENTITIES { - - @XmlValue - @XmlSchemaType(name = "ENTITIES") - protected List values; - - /** - * Gets the value of the values 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 JAXB object. - * This is why there is not a set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ENTITY } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ENTITY.java b/proxies/com/microsoft/bingads/v12/bulk/ENTITY.java deleted file mode 100644 index 1eb5c352e7..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ENTITY.java +++ /dev/null @@ -1,59 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for ENTITY simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="ENTITY">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ENTITY", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class ENTITY { - - @XmlValue - @XmlSchemaType(name = "ENTITY") - protected NCName value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NCName } - * - */ - public NCName getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NCName } - * - */ - public void setValue(NCName value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/EditorialError.java b/proxies/com/microsoft/bingads/v12/bulk/EditorialError.java deleted file mode 100644 index 5bec078bb9..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/EditorialError.java +++ /dev/null @@ -1,176 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EditorialError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="EditorialError">
- *   <complexContent>
- *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v12}BatchError">
- *       <sequence>
- *         <element name="Appealable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="DisapprovedText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ReasonCode" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EditorialError", propOrder = { - "appealable", - "disapprovedText", - "location", - "publisherCountry", - "reasonCode" -}) -public class EditorialError - extends BatchError -{ - - @XmlElement(name = "Appealable", nillable = true) - protected Boolean appealable; - @XmlElement(name = "DisapprovedText", nillable = true) - protected String disapprovedText; - @XmlElement(name = "Location", nillable = true) - protected String location; - @XmlElement(name = "PublisherCountry", nillable = true) - protected String publisherCountry; - @XmlElement(name = "ReasonCode") - protected Integer reasonCode; - - /** - * Gets the value of the appealable property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getAppealable() { - return appealable; - } - - /** - * Sets the value of the appealable property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAppealable(Boolean value) { - this.appealable = value; - } - - /** - * Gets the value of the disapprovedText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDisapprovedText() { - return disapprovedText; - } - - /** - * Sets the value of the disapprovedText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDisapprovedText(String value) { - this.disapprovedText = value; - } - - /** - * Gets the value of the location property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocation() { - return location; - } - - /** - * Sets the value of the location property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocation(String value) { - this.location = value; - } - - /** - * Gets the value of the publisherCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublisherCountry() { - return publisherCountry; - } - - /** - * Sets the value of the publisherCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublisherCountry(String value) { - this.publisherCountry = value; - } - - /** - * Gets the value of the reasonCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getReasonCode() { - return reasonCode; - } - - /** - * Sets the value of the reasonCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setReasonCode(Integer value) { - this.reasonCode = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/GetBulkDownloadStatusRequest.java b/proxies/com/microsoft/bingads/v12/bulk/GetBulkDownloadStatusRequest.java deleted file mode 100644 index 95a93358af..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/GetBulkDownloadStatusRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "requestId" -}) -@XmlRootElement(name = "GetBulkDownloadStatusRequest") -public class GetBulkDownloadStatusRequest { - - @XmlElement(name = "RequestId", nillable = true) - protected String requestId; - - /** - * Gets the value of the requestId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestId() { - return requestId; - } - - /** - * Sets the value of the requestId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestId(String value) { - this.requestId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/GetBulkDownloadStatusResponse.java b/proxies/com/microsoft/bingads/v12/bulk/GetBulkDownloadStatusResponse.java deleted file mode 100644 index 026080e705..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/GetBulkDownloadStatusResponse.java +++ /dev/null @@ -1,176 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Errors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfOperationError" minOccurs="0"/>
- *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
- *         <element name="PercentComplete" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="RequestStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ResultFileUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "errors", - "forwardCompatibilityMap", - "percentComplete", - "requestStatus", - "resultFileUrl" -}) -@XmlRootElement(name = "GetBulkDownloadStatusResponse") -public class GetBulkDownloadStatusResponse { - - @XmlElement(name = "Errors", nillable = true) - protected ArrayOfOperationError errors; - @XmlElement(name = "ForwardCompatibilityMap", nillable = true) - protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; - @XmlElement(name = "PercentComplete") - protected Integer percentComplete; - @XmlElement(name = "RequestStatus", nillable = true) - protected String requestStatus; - @XmlElement(name = "ResultFileUrl", nillable = true) - protected String resultFileUrl; - - /** - * Gets the value of the errors property. - * - * @return - * possible object is - * {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError getErrors() { - return errors; - } - - /** - * Sets the value of the errors property. - * - * @param value - * allowed object is - * {@link ArrayOfOperationError } - * - */ - public void setErrors(ArrayOfOperationError value) { - this.errors = value; - } - - /** - * Gets the value of the forwardCompatibilityMap property. - * - * @return - * possible object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { - return forwardCompatibilityMap; - } - - /** - * Sets the value of the forwardCompatibilityMap property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { - this.forwardCompatibilityMap = value; - } - - /** - * Gets the value of the percentComplete property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPercentComplete() { - return percentComplete; - } - - /** - * Sets the value of the percentComplete property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPercentComplete(Integer value) { - this.percentComplete = value; - } - - /** - * Gets the value of the requestStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestStatus() { - return requestStatus; - } - - /** - * Sets the value of the requestStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestStatus(String value) { - this.requestStatus = value; - } - - /** - * Gets the value of the resultFileUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResultFileUrl() { - return resultFileUrl; - } - - /** - * Sets the value of the resultFileUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResultFileUrl(String value) { - this.resultFileUrl = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadStatusRequest.java b/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadStatusRequest.java deleted file mode 100644 index 3dd3cb922d..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadStatusRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "requestId" -}) -@XmlRootElement(name = "GetBulkUploadStatusRequest") -public class GetBulkUploadStatusRequest { - - @XmlElement(name = "RequestId", nillable = true) - protected String requestId; - - /** - * Gets the value of the requestId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestId() { - return requestId; - } - - /** - * Sets the value of the requestId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestId(String value) { - this.requestId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadStatusResponse.java b/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadStatusResponse.java deleted file mode 100644 index 2888a11f47..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadStatusResponse.java +++ /dev/null @@ -1,176 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Errors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfOperationError" minOccurs="0"/>
- *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
- *         <element name="PercentComplete" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="RequestStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ResultFileUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "errors", - "forwardCompatibilityMap", - "percentComplete", - "requestStatus", - "resultFileUrl" -}) -@XmlRootElement(name = "GetBulkUploadStatusResponse") -public class GetBulkUploadStatusResponse { - - @XmlElement(name = "Errors", nillable = true) - protected ArrayOfOperationError errors; - @XmlElement(name = "ForwardCompatibilityMap", nillable = true) - protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; - @XmlElement(name = "PercentComplete") - protected Integer percentComplete; - @XmlElement(name = "RequestStatus", nillable = true) - protected String requestStatus; - @XmlElement(name = "ResultFileUrl", nillable = true) - protected String resultFileUrl; - - /** - * Gets the value of the errors property. - * - * @return - * possible object is - * {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError getErrors() { - return errors; - } - - /** - * Sets the value of the errors property. - * - * @param value - * allowed object is - * {@link ArrayOfOperationError } - * - */ - public void setErrors(ArrayOfOperationError value) { - this.errors = value; - } - - /** - * Gets the value of the forwardCompatibilityMap property. - * - * @return - * possible object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { - return forwardCompatibilityMap; - } - - /** - * Sets the value of the forwardCompatibilityMap property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { - this.forwardCompatibilityMap = value; - } - - /** - * Gets the value of the percentComplete property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPercentComplete() { - return percentComplete; - } - - /** - * Sets the value of the percentComplete property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPercentComplete(Integer value) { - this.percentComplete = value; - } - - /** - * Gets the value of the requestStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestStatus() { - return requestStatus; - } - - /** - * Sets the value of the requestStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestStatus(String value) { - this.requestStatus = value; - } - - /** - * Gets the value of the resultFileUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResultFileUrl() { - return resultFileUrl; - } - - /** - * Sets the value of the resultFileUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResultFileUrl(String value) { - this.resultFileUrl = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadUrlRequest.java b/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadUrlRequest.java deleted file mode 100644 index 73290304e0..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadUrlRequest.java +++ /dev/null @@ -1,94 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ResponseMode" type="{https://bingads.microsoft.com/CampaignManagement/v12}ResponseMode" minOccurs="0"/>
- *         <element name="AccountId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "responseMode", - "accountId" -}) -@XmlRootElement(name = "GetBulkUploadUrlRequest") -public class GetBulkUploadUrlRequest { - - @XmlElement(name = "ResponseMode") - @XmlSchemaType(name = "string") - protected ResponseMode responseMode; - @XmlElement(name = "AccountId") - protected Long accountId; - - /** - * Gets the value of the responseMode property. - * - * @return - * possible object is - * {@link ResponseMode } - * - */ - public ResponseMode getResponseMode() { - return responseMode; - } - - /** - * Sets the value of the responseMode property. - * - * @param value - * allowed object is - * {@link ResponseMode } - * - */ - public void setResponseMode(ResponseMode value) { - this.responseMode = value; - } - - /** - * Gets the value of the accountId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAccountId(Long value) { - this.accountId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadUrlResponse.java b/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadUrlResponse.java deleted file mode 100644 index ae62af8093..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/GetBulkUploadUrlResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="UploadUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "requestId", - "uploadUrl" -}) -@XmlRootElement(name = "GetBulkUploadUrlResponse") -public class GetBulkUploadUrlResponse { - - @XmlElement(name = "RequestId", nillable = true) - protected String requestId; - @XmlElement(name = "UploadUrl", nillable = true) - protected String uploadUrl; - - /** - * Gets the value of the requestId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestId() { - return requestId; - } - - /** - * Sets the value of the requestId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestId(String value) { - this.requestId = value; - } - - /** - * Gets the value of the uploadUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUploadUrl() { - return uploadUrl; - } - - /** - * Sets the value of the uploadUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUploadUrl(String value) { - this.uploadUrl = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Guid.java b/proxies/com/microsoft/bingads/v12/bulk/Guid.java deleted file mode 100644 index a9623410b9..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Guid.java +++ /dev/null @@ -1,58 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for guid simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="guid">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "guid", namespace = "http://schemas.microsoft.com/2003/10/Serialization/", propOrder = { - "value" -}) -public class Guid { - - @XmlValue - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/IBulkService.java b/proxies/com/microsoft/bingads/v12/bulk/IBulkService.java deleted file mode 100644 index e76667a710..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/IBulkService.java +++ /dev/null @@ -1,234 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.concurrent.Future; -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.AsyncHandler; -import javax.xml.ws.Response; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebService(name = "IBulkService", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12") -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -@XmlSeeAlso({ - ObjectFactory.class -}) -public interface IBulkService { - - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "DownloadCampaignsByAccountIds", action = "DownloadCampaignsByAccountIds") - public Response downloadCampaignsByAccountIdsAsync( - @WebParam(name = "DownloadCampaignsByAccountIdsRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - DownloadCampaignsByAccountIdsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "DownloadCampaignsByAccountIds", action = "DownloadCampaignsByAccountIds") - public Future downloadCampaignsByAccountIdsAsync( - @WebParam(name = "DownloadCampaignsByAccountIdsRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - DownloadCampaignsByAccountIdsRequest parameters, - @WebParam(name = "DownloadCampaignsByAccountIdsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.bulk.DownloadCampaignsByAccountIdsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "DownloadCampaignsByAccountIds", action = "DownloadCampaignsByAccountIds") - @WebResult(name = "DownloadCampaignsByAccountIdsResponse", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - public DownloadCampaignsByAccountIdsResponse downloadCampaignsByAccountIds( - @WebParam(name = "DownloadCampaignsByAccountIdsRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - DownloadCampaignsByAccountIdsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "DownloadCampaignsByCampaignIds", action = "DownloadCampaignsByCampaignIds") - public Response downloadCampaignsByCampaignIdsAsync( - @WebParam(name = "DownloadCampaignsByCampaignIdsRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - DownloadCampaignsByCampaignIdsRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "DownloadCampaignsByCampaignIds", action = "DownloadCampaignsByCampaignIds") - public Future downloadCampaignsByCampaignIdsAsync( - @WebParam(name = "DownloadCampaignsByCampaignIdsRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - DownloadCampaignsByCampaignIdsRequest parameters, - @WebParam(name = "DownloadCampaignsByCampaignIdsResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.bulk.DownloadCampaignsByCampaignIdsResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "DownloadCampaignsByCampaignIds", action = "DownloadCampaignsByCampaignIds") - @WebResult(name = "DownloadCampaignsByCampaignIdsResponse", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - public DownloadCampaignsByCampaignIdsResponse downloadCampaignsByCampaignIds( - @WebParam(name = "DownloadCampaignsByCampaignIdsRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - DownloadCampaignsByCampaignIdsRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBulkDownloadStatus", action = "GetBulkDownloadStatus") - public Response getBulkDownloadStatusAsync( - @WebParam(name = "GetBulkDownloadStatusRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkDownloadStatusRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBulkDownloadStatus", action = "GetBulkDownloadStatus") - public Future getBulkDownloadStatusAsync( - @WebParam(name = "GetBulkDownloadStatusRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkDownloadStatusRequest parameters, - @WebParam(name = "GetBulkDownloadStatusResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.bulk.GetBulkDownloadStatusResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBulkDownloadStatus", action = "GetBulkDownloadStatus") - @WebResult(name = "GetBulkDownloadStatusResponse", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - public GetBulkDownloadStatusResponse getBulkDownloadStatus( - @WebParam(name = "GetBulkDownloadStatusRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkDownloadStatusRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBulkUploadUrl", action = "GetBulkUploadUrl") - public Response getBulkUploadUrlAsync( - @WebParam(name = "GetBulkUploadUrlRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkUploadUrlRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBulkUploadUrl", action = "GetBulkUploadUrl") - public Future getBulkUploadUrlAsync( - @WebParam(name = "GetBulkUploadUrlRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkUploadUrlRequest parameters, - @WebParam(name = "GetBulkUploadUrlResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.bulk.GetBulkUploadUrlResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBulkUploadUrl", action = "GetBulkUploadUrl") - @WebResult(name = "GetBulkUploadUrlResponse", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - public GetBulkUploadUrlResponse getBulkUploadUrl( - @WebParam(name = "GetBulkUploadUrlRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkUploadUrlRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - - /** - * - * @param parameters - * @return - * returns javax.xml.ws.Response - */ - @WebMethod(operationName = "GetBulkUploadStatus", action = "GetBulkUploadStatus") - public Response getBulkUploadStatusAsync( - @WebParam(name = "GetBulkUploadStatusRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkUploadStatusRequest parameters); - - /** - * - * @param asyncHandler - * @param parameters - * @return - * returns java.util.concurrent.Future - */ - @WebMethod(operationName = "GetBulkUploadStatus", action = "GetBulkUploadStatus") - public Future getBulkUploadStatusAsync( - @WebParam(name = "GetBulkUploadStatusRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkUploadStatusRequest parameters, - @WebParam(name = "GetBulkUploadStatusResponse", targetNamespace = "", partName = "asyncHandler") - AsyncHandler asyncHandler); - - /** - * - * @param parameters - * @return - * returns com.microsoft.bingads.v12.bulk.GetBulkUploadStatusResponse - * @throws ApiFaultDetail_Exception - * @throws AdApiFaultDetail_Exception - */ - @WebMethod(operationName = "GetBulkUploadStatus", action = "GetBulkUploadStatus") - @WebResult(name = "GetBulkUploadStatusResponse", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - public GetBulkUploadStatusResponse getBulkUploadStatus( - @WebParam(name = "GetBulkUploadStatusRequest", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12", partName = "parameters") - GetBulkUploadStatusRequest parameters) - throws AdApiFaultDetail_Exception, ApiFaultDetail_Exception - ; - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/IDREFS.java b/proxies/com/microsoft/bingads/v12/bulk/IDREFS.java deleted file mode 100644 index 8fc057f371..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/IDREFS.java +++ /dev/null @@ -1,72 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for IDREFS simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="IDREFS">
- *   <restriction>
- *     <simpleType>
- *       <list itemType="{http://www.w3.org/2001/XMLSchema}IDREF" />
- *     </simpleType>
- *     <minLength value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "IDREFS", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "values" -}) -public class IDREFS { - - @XmlValue - @XmlIDREF - @XmlSchemaType(name = "IDREFS") - protected List values; - - /** - * Gets the value of the values 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 JAXB object. - * This is why there is not a set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Object } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/KeyValuePairOfstringstring.java b/proxies/com/microsoft/bingads/v12/bulk/KeyValuePairOfstringstring.java deleted file mode 100644 index 1ee80a846b..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/KeyValuePairOfstringstring.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KeyValuePairOfstringstring complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KeyValuePairOfstringstring">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KeyValuePairOfstringstring", namespace = "http://schemas.datacontract.org/2004/07/System.Collections.Generic", propOrder = { - "key", - "value" -}) -public class KeyValuePairOfstringstring { - - @XmlElement(required = true, nillable = true) - protected String key; - @XmlElement(required = true, nillable = true) - protected String value; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Language.java b/proxies/com/microsoft/bingads/v12/bulk/Language.java deleted file mode 100644 index acb83c6a80..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Language.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for language simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="language">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
- *     <pattern value="([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{1,8})*"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "language", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class Language { - - @XmlValue - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "language") - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/NCName.java b/proxies/com/microsoft/bingads/v12/bulk/NCName.java deleted file mode 100644 index 5e3b86d94a..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/NCName.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for NCName simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="NCName">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}Name">
- *     <pattern value="[\i-[:]][\c-[:]]*"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NCName", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NCName { - - @XmlValue - @XmlSchemaType(name = "NCName") - protected Name value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link Name } - * - */ - public Name getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link Name } - * - */ - public void setValue(Name value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/NMTOKEN.java b/proxies/com/microsoft/bingads/v12/bulk/NMTOKEN.java deleted file mode 100644 index 3a4a6161a2..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/NMTOKEN.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for NMTOKEN simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="NMTOKEN">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
- *     <pattern value="\c+"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NMTOKEN", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NMTOKEN { - - @XmlValue - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "NMTOKEN") - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/NMTOKENS.java b/proxies/com/microsoft/bingads/v12/bulk/NMTOKENS.java deleted file mode 100644 index 94ae60ff31..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/NMTOKENS.java +++ /dev/null @@ -1,70 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for NMTOKENS simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="NMTOKENS">
- *   <restriction>
- *     <simpleType>
- *       <list itemType="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
- *     </simpleType>
- *     <minLength value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NMTOKENS", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "values" -}) -public class NMTOKENS { - - @XmlValue - @XmlSchemaType(name = "NMTOKENS") - protected List values; - - /** - * Gets the value of the values 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 JAXB object. - * This is why there is not a set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NMTOKEN } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/Name.java b/proxies/com/microsoft/bingads/v12/bulk/Name.java deleted file mode 100644 index 3fa28bcd7f..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/Name.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for Name simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="Name">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
- *     <pattern value="\i\c*"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Name", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class Name { - - @XmlValue - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlSchemaType(name = "Name") - protected String value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/NegativeInteger.java b/proxies/com/microsoft/bingads/v12/bulk/NegativeInteger.java deleted file mode 100644 index 37f6d18a5d..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/NegativeInteger.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for negativeInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="negativeInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}nonPositiveInteger">
- *     <maxInclusive value="-1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "negativeInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NegativeInteger { - - @XmlValue - @XmlSchemaType(name = "negativeInteger") - protected NonPositiveInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NonPositiveInteger } - * - */ - public NonPositiveInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NonPositiveInteger } - * - */ - public void setValue(NonPositiveInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/NonNegativeInteger.java b/proxies/com/microsoft/bingads/v12/bulk/NonNegativeInteger.java deleted file mode 100644 index bf13123bfe..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/NonNegativeInteger.java +++ /dev/null @@ -1,61 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for nonNegativeInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="nonNegativeInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
- *     <minInclusive value="0"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "nonNegativeInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NonNegativeInteger { - - @XmlValue - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setValue(BigInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/NonPositiveInteger.java b/proxies/com/microsoft/bingads/v12/bulk/NonPositiveInteger.java deleted file mode 100644 index 2da6d29d4e..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/NonPositiveInteger.java +++ /dev/null @@ -1,61 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for nonPositiveInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="nonPositiveInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
- *     <maxInclusive value="0"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "nonPositiveInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class NonPositiveInteger { - - @XmlValue - @XmlSchemaType(name = "nonPositiveInteger") - protected BigInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setValue(BigInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ObjectFactory.java b/proxies/com/microsoft/bingads/v12/bulk/ObjectFactory.java deleted file mode 100644 index b863dcae2d..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ObjectFactory.java +++ /dev/null @@ -1,949 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import java.math.BigDecimal; -import java.util.Calendar; -import java.util.Collection; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the com.microsoft.bingads.v12.bulk package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CompressionType_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "CompressionType"); - private final static QName _ApiFaultDetail_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ApiFaultDetail"); - private final static QName _DeveloperToken_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "DeveloperToken"); - private final static QName _CampaignScope_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "CampaignScope"); - private final static QName _Duration_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "duration"); - private final static QName _ArrayOflong_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/Arrays", "ArrayOflong"); - private final static QName _OperationError_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "OperationError"); - private final static QName _Date_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "Date"); - private final static QName _DownloadFileType_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "DownloadFileType"); - private final static QName _Long_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "long"); - private final static QName _ArrayOfAdApiError_QNAME = new QName("https://adapi.microsoft.com", "ArrayOfAdApiError"); - private final static QName _BatchError_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "BatchError"); - private final static QName _ReportTimePeriod_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ReportTimePeriod"); - private final static QName _DateTime_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "dateTime"); - private final static QName _UserName_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "UserName"); - private final static QName _ArrayOfBatchError_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ArrayOfBatchError"); - private final static QName _String_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "string"); - private final static QName _Password_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "Password"); - private final static QName _ArrayOfDownloadEntity_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ArrayOfDownloadEntity"); - private final static QName _UnsignedInt_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedInt"); - private final static QName _Char_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "char"); - private final static QName _Short_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "short"); - private final static QName _ArrayOfKeyValuePairOfstringstring_QNAME = new QName("http://schemas.datacontract.org/2004/07/System.Collections.Generic", "ArrayOfKeyValuePairOfstringstring"); - private final static QName _ArrayOfCampaignScope_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ArrayOfCampaignScope"); - private final static QName _CustomerAccountId_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "CustomerAccountId"); - private final static QName _DownloadEntity_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "DownloadEntity"); - private final static QName _Boolean_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "boolean"); - private final static QName _PerformanceStatsDateRange_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "PerformanceStatsDateRange"); - private final static QName _Int_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "int"); - private final static QName _ArrayOfKeyValueOfstringstring_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/Arrays", "ArrayOfKeyValueOfstringstring"); - private final static QName _ArrayOfOperationError_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ArrayOfOperationError"); - private final static QName _KeyValuePairOfstringstring_QNAME = new QName("http://schemas.datacontract.org/2004/07/System.Collections.Generic", "KeyValuePairOfstringstring"); - private final static QName _QName_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "QName"); - private final static QName _UnsignedLong_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedLong"); - private final static QName _UnsignedByte_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedByte"); - private final static QName _UnsignedShort_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "unsignedShort"); - private final static QName _ResponseMode_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ResponseMode"); - private final static QName _DataScope_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "DataScope"); - private final static QName _TrackingId_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "TrackingId"); - private final static QName _CustomerId_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "CustomerId"); - private final static QName _Float_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "float"); - private final static QName _AdApiError_QNAME = new QName("https://adapi.microsoft.com", "AdApiError"); - private final static QName _AnyType_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "anyType"); - private final static QName _Guid_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "guid"); - private final static QName _AdApiFaultDetail_QNAME = new QName("https://adapi.microsoft.com", "AdApiFaultDetail"); - private final static QName _ApplicationToken_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "ApplicationToken"); - private final static QName _Decimal_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "decimal"); - private final static QName _ApplicationFault_QNAME = new QName("https://adapi.microsoft.com", "ApplicationFault"); - private final static QName _Base64Binary_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "base64Binary"); - private final static QName _EditorialError_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "EditorialError"); - private final static QName _AnyURI_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "anyURI"); - private final static QName _AuthenticationToken_QNAME = new QName("https://bingads.microsoft.com/CampaignManagement/v12", "AuthenticationToken"); - private final static QName _Byte_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "byte"); - private final static QName _Double_QNAME = new QName("http://schemas.microsoft.com/2003/10/Serialization/", "double"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.microsoft.bingads.v12.bulk - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ArrayOfKeyValueOfstringstring } - * - */ - public ArrayOfKeyValueOfstringstring createArrayOfKeyValueOfstringstring() { - return new ArrayOfKeyValueOfstringstring(); - } - - /** - * Create an instance of {@link Language } - * - */ - public Language createLanguage() { - return new Language(); - } - - /** - * Create an instance of {@link NonNegativeInteger } - * - */ - public NonNegativeInteger createNonNegativeInteger() { - return new NonNegativeInteger(); - } - - /** - * Create an instance of {@link Name } - * - */ - public Name createName() { - return new Name(); - } - - /** - * Create an instance of {@link NCName } - * - */ - public NCName createNCName() { - return new NCName(); - } - - /** - * Create an instance of {@link ENTITY } - * - */ - public ENTITY createENTITY() { - return new ENTITY(); - } - - /** - * Create an instance of {@link NegativeInteger } - * - */ - public NegativeInteger createNegativeInteger() { - return new NegativeInteger(); - } - - /** - * Create an instance of {@link ENTITIES } - * - */ - public ENTITIES createENTITIES() { - return new ENTITIES(); - } - - /** - * Create an instance of {@link UnsignedLong } - * - */ - public UnsignedLong createUnsignedLong() { - return new UnsignedLong(); - } - - /** - * Create an instance of {@link IDREFS } - * - */ - public IDREFS createIDREFS() { - return new IDREFS(); - } - - /** - * Create an instance of {@link NonPositiveInteger } - * - */ - public NonPositiveInteger createNonPositiveInteger() { - return new NonPositiveInteger(); - } - - /** - * Create an instance of {@link NMTOKEN } - * - */ - public NMTOKEN createNMTOKEN() { - return new NMTOKEN(); - } - - /** - * Create an instance of {@link NMTOKENS } - * - */ - public NMTOKENS createNMTOKENS() { - return new NMTOKENS(); - } - - /** - * Create an instance of {@link PositiveInteger } - * - */ - public PositiveInteger createPositiveInteger() { - return new PositiveInteger(); - } - - /** - * Create an instance of {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError createArrayOfOperationError() { - return new ArrayOfOperationError(); - } - - /** - * Create an instance of {@link GetBulkUploadUrlRequest } - * - */ - public GetBulkUploadUrlRequest createGetBulkUploadUrlRequest() { - return new GetBulkUploadUrlRequest(); - } - - /** - * Create an instance of {@link EditorialError } - * - */ - public EditorialError createEditorialError() { - return new EditorialError(); - } - - /** - * Create an instance of {@link DownloadCampaignsByCampaignIdsRequest } - * - */ - public DownloadCampaignsByCampaignIdsRequest createDownloadCampaignsByCampaignIdsRequest() { - return new DownloadCampaignsByCampaignIdsRequest(); - } - - /** - * Create an instance of {@link ArrayOfCampaignScope } - * - */ - public ArrayOfCampaignScope createArrayOfCampaignScope() { - return new ArrayOfCampaignScope(); - } - - /** - * Create an instance of {@link ArrayOfDownloadEntity } - * - */ - public ArrayOfDownloadEntity createArrayOfDownloadEntity() { - return new ArrayOfDownloadEntity(); - } - - /** - * Create an instance of {@link PerformanceStatsDateRange } - * - */ - public PerformanceStatsDateRange createPerformanceStatsDateRange() { - return new PerformanceStatsDateRange(); - } - - /** - * Create an instance of {@link DownloadCampaignsByAccountIdsRequest } - * - */ - public DownloadCampaignsByAccountIdsRequest createDownloadCampaignsByAccountIdsRequest() { - return new DownloadCampaignsByAccountIdsRequest(); - } - - /** - * Create an instance of {@link ArrayOflong } - * - */ - public ArrayOflong createArrayOflong() { - return new ArrayOflong(); - } - - /** - * Create an instance of {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError createArrayOfBatchError() { - return new ArrayOfBatchError(); - } - - /** - * Create an instance of {@link GetBulkDownloadStatusResponse } - * - */ - public GetBulkDownloadStatusResponse createGetBulkDownloadStatusResponse() { - return new GetBulkDownloadStatusResponse(); - } - - /** - * Create an instance of {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring createArrayOfKeyValuePairOfstringstring() { - return new ArrayOfKeyValuePairOfstringstring(); - } - - /** - * Create an instance of {@link BatchError } - * - */ - public BatchError createBatchError() { - return new BatchError(); - } - - /** - * Create an instance of {@link GetBulkDownloadStatusRequest } - * - */ - public GetBulkDownloadStatusRequest createGetBulkDownloadStatusRequest() { - return new GetBulkDownloadStatusRequest(); - } - - /** - * Create an instance of {@link GetBulkUploadUrlResponse } - * - */ - public GetBulkUploadUrlResponse createGetBulkUploadUrlResponse() { - return new GetBulkUploadUrlResponse(); - } - - /** - * Create an instance of {@link Date } - * - */ - public Date createDate() { - return new Date(); - } - - /** - * Create an instance of {@link OperationError } - * - */ - public OperationError createOperationError() { - return new OperationError(); - } - - /** - * Create an instance of {@link GetBulkUploadStatusResponse } - * - */ - public GetBulkUploadStatusResponse createGetBulkUploadStatusResponse() { - return new GetBulkUploadStatusResponse(); - } - - /** - * Create an instance of {@link DownloadCampaignsByAccountIdsResponse } - * - */ - public DownloadCampaignsByAccountIdsResponse createDownloadCampaignsByAccountIdsResponse() { - return new DownloadCampaignsByAccountIdsResponse(); - } - - /** - * Create an instance of {@link CampaignScope } - * - */ - public CampaignScope createCampaignScope() { - return new CampaignScope(); - } - - /** - * Create an instance of {@link GetBulkUploadStatusRequest } - * - */ - public GetBulkUploadStatusRequest createGetBulkUploadStatusRequest() { - return new GetBulkUploadStatusRequest(); - } - - /** - * Create an instance of {@link DownloadCampaignsByCampaignIdsResponse } - * - */ - public DownloadCampaignsByCampaignIdsResponse createDownloadCampaignsByCampaignIdsResponse() { - return new DownloadCampaignsByCampaignIdsResponse(); - } - - /** - * Create an instance of {@link ApiFaultDetail } - * - */ - public ApiFaultDetail createApiFaultDetail() { - return new ApiFaultDetail(); - } - - /** - * Create an instance of {@link Duration } - * - */ - public Duration createDuration() { - return new Duration(); - } - - /** - * Create an instance of {@link Char } - * - */ - public Char createChar() { - return new Char(); - } - - /** - * Create an instance of {@link Guid } - * - */ - public Guid createGuid() { - return new Guid(); - } - - /** - * Create an instance of {@link ApplicationFault } - * - */ - public ApplicationFault createApplicationFault() { - return new ApplicationFault(); - } - - /** - * Create an instance of {@link AdApiError } - * - */ - public AdApiError createAdApiError() { - return new AdApiError(); - } - - /** - * Create an instance of {@link ArrayOfAdApiError } - * - */ - public ArrayOfAdApiError createArrayOfAdApiError() { - return new ArrayOfAdApiError(); - } - - /** - * Create an instance of {@link AdApiFaultDetail } - * - */ - public AdApiFaultDetail createAdApiFaultDetail() { - return new AdApiFaultDetail(); - } - - /** - * Create an instance of {@link KeyValuePairOfstringstring } - * - */ - public KeyValuePairOfstringstring createKeyValuePairOfstringstring() { - return new KeyValuePairOfstringstring(); - } - - /** - * Create an instance of {@link ArrayOfKeyValueOfstringstring.KeyValueOfstringstring } - * - */ - public ArrayOfKeyValueOfstringstring.KeyValueOfstringstring createArrayOfKeyValueOfstringstringKeyValueOfstringstring() { - return new ArrayOfKeyValueOfstringstring.KeyValueOfstringstring(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CompressionType }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "CompressionType") - public JAXBElement createCompressionType(CompressionType value) { - return new JAXBElement(_CompressionType_QNAME, CompressionType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ApiFaultDetail }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ApiFaultDetail") - public JAXBElement createApiFaultDetail(ApiFaultDetail value) { - return new JAXBElement(_ApiFaultDetail_QNAME, ApiFaultDetail.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "DeveloperToken") - public JAXBElement createDeveloperToken(String value) { - return new JAXBElement(_DeveloperToken_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CampaignScope }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "CampaignScope") - public JAXBElement createCampaignScope(CampaignScope value) { - return new JAXBElement(_CampaignScope_QNAME, CampaignScope.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Duration }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "duration") - public JAXBElement createDuration(Duration value) { - return new JAXBElement(_Duration_QNAME, Duration.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOflong }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", name = "ArrayOflong") - public JAXBElement createArrayOflong(ArrayOflong value) { - return new JAXBElement(_ArrayOflong_QNAME, ArrayOflong.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link OperationError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "OperationError") - public JAXBElement createOperationError(OperationError value) { - return new JAXBElement(_OperationError_QNAME, OperationError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Date }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "Date") - public JAXBElement createDate(Date value) { - return new JAXBElement(_Date_QNAME, Date.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DownloadFileType }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "DownloadFileType") - public JAXBElement createDownloadFileType(DownloadFileType value) { - return new JAXBElement(_DownloadFileType_QNAME, DownloadFileType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "long") - public JAXBElement createLong(Long value) { - return new JAXBElement(_Long_QNAME, Long.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfAdApiError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "ArrayOfAdApiError") - public JAXBElement createArrayOfAdApiError(ArrayOfAdApiError value) { - return new JAXBElement(_ArrayOfAdApiError_QNAME, ArrayOfAdApiError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BatchError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "BatchError") - public JAXBElement createBatchError(BatchError value) { - return new JAXBElement(_BatchError_QNAME, BatchError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ReportTimePeriod }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ReportTimePeriod") - public JAXBElement createReportTimePeriod(ReportTimePeriod value) { - return new JAXBElement(_ReportTimePeriod_QNAME, ReportTimePeriod.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Calendar }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "dateTime") - @XmlJavaTypeAdapter(Adapter1 .class) - public JAXBElement createDateTime(Calendar value) { - return new JAXBElement(_DateTime_QNAME, Calendar.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "UserName") - public JAXBElement createUserName(String value) { - return new JAXBElement(_UserName_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfBatchError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ArrayOfBatchError") - public JAXBElement createArrayOfBatchError(ArrayOfBatchError value) { - return new JAXBElement(_ArrayOfBatchError_QNAME, ArrayOfBatchError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "string") - public JAXBElement createString(String value) { - return new JAXBElement(_String_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "Password") - public JAXBElement createPassword(String value) { - return new JAXBElement(_Password_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfDownloadEntity }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ArrayOfDownloadEntity") - public JAXBElement createArrayOfDownloadEntity(ArrayOfDownloadEntity value) { - return new JAXBElement(_ArrayOfDownloadEntity_QNAME, ArrayOfDownloadEntity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedInt") - public JAXBElement createUnsignedInt(Long value) { - return new JAXBElement(_UnsignedInt_QNAME, Long.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Char }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "char") - public JAXBElement createChar(Char value) { - return new JAXBElement(_Char_QNAME, Char.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Short }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "short") - public JAXBElement createShort(Short value) { - return new JAXBElement(_Short_QNAME, Short.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeyValuePairOfstringstring }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/System.Collections.Generic", name = "ArrayOfKeyValuePairOfstringstring") - public JAXBElement createArrayOfKeyValuePairOfstringstring(ArrayOfKeyValuePairOfstringstring value) { - return new JAXBElement(_ArrayOfKeyValuePairOfstringstring_QNAME, ArrayOfKeyValuePairOfstringstring.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfCampaignScope }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ArrayOfCampaignScope") - public JAXBElement createArrayOfCampaignScope(ArrayOfCampaignScope value) { - return new JAXBElement(_ArrayOfCampaignScope_QNAME, ArrayOfCampaignScope.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "CustomerAccountId") - public JAXBElement createCustomerAccountId(String value) { - return new JAXBElement(_CustomerAccountId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DownloadEntity }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "DownloadEntity") - public JAXBElement createDownloadEntity(DownloadEntity value) { - return new JAXBElement(_DownloadEntity_QNAME, DownloadEntity.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "boolean") - public JAXBElement createBoolean(Boolean value) { - return new JAXBElement(_Boolean_QNAME, Boolean.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PerformanceStatsDateRange }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "PerformanceStatsDateRange") - public JAXBElement createPerformanceStatsDateRange(PerformanceStatsDateRange value) { - return new JAXBElement(_PerformanceStatsDateRange_QNAME, PerformanceStatsDateRange.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "int") - public JAXBElement createInt(Integer value) { - return new JAXBElement(_Int_QNAME, Integer.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfKeyValueOfstringstring }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", name = "ArrayOfKeyValueOfstringstring") - public JAXBElement createArrayOfKeyValueOfstringstring(ArrayOfKeyValueOfstringstring value) { - return new JAXBElement(_ArrayOfKeyValueOfstringstring_QNAME, ArrayOfKeyValueOfstringstring.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfOperationError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ArrayOfOperationError") - public JAXBElement createArrayOfOperationError(ArrayOfOperationError value) { - return new JAXBElement(_ArrayOfOperationError_QNAME, ArrayOfOperationError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeyValuePairOfstringstring }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/System.Collections.Generic", name = "KeyValuePairOfstringstring") - public JAXBElement createKeyValuePairOfstringstring(KeyValuePairOfstringstring value) { - return new JAXBElement(_KeyValuePairOfstringstring_QNAME, KeyValuePairOfstringstring.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link QName }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "QName") - public JAXBElement createQName(QName value) { - return new JAXBElement(_QName_QNAME, QName.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UnsignedLong }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedLong") - public JAXBElement createUnsignedLong(UnsignedLong value) { - return new JAXBElement(_UnsignedLong_QNAME, UnsignedLong.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Short }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedByte") - public JAXBElement createUnsignedByte(Short value) { - return new JAXBElement(_UnsignedByte_QNAME, Short.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "unsignedShort") - public JAXBElement createUnsignedShort(Integer value) { - return new JAXBElement(_UnsignedShort_QNAME, Integer.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ResponseMode }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ResponseMode") - public JAXBElement createResponseMode(ResponseMode value) { - return new JAXBElement(_ResponseMode_QNAME, ResponseMode.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Collection }{@code <}{@link DataScope }{@code >}{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "DataScope") - @XmlJavaTypeAdapter(Adapter2 .class) - public JAXBElement> createDataScope(Collection value) { - return new JAXBElement>(_DataScope_QNAME, ((Class) Collection.class), null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "TrackingId") - public JAXBElement createTrackingId(String value) { - return new JAXBElement(_TrackingId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "CustomerId") - public JAXBElement createCustomerId(String value) { - return new JAXBElement(_CustomerId_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Float }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "float") - public JAXBElement createFloat(Float value) { - return new JAXBElement(_Float_QNAME, Float.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdApiError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "AdApiError") - public JAXBElement createAdApiError(AdApiError value) { - return new JAXBElement(_AdApiError_QNAME, AdApiError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "anyType") - public JAXBElement createAnyType(Object value) { - return new JAXBElement(_AnyType_QNAME, Object.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Guid }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "guid") - public JAXBElement createGuid(Guid value) { - return new JAXBElement(_Guid_QNAME, Guid.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AdApiFaultDetail }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "AdApiFaultDetail") - public JAXBElement createAdApiFaultDetail(AdApiFaultDetail value) { - return new JAXBElement(_AdApiFaultDetail_QNAME, AdApiFaultDetail.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "ApplicationToken") - public JAXBElement createApplicationToken(String value) { - return new JAXBElement(_ApplicationToken_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigDecimal }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "decimal") - public JAXBElement createDecimal(BigDecimal value) { - return new JAXBElement(_Decimal_QNAME, BigDecimal.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ApplicationFault }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://adapi.microsoft.com", name = "ApplicationFault") - public JAXBElement createApplicationFault(ApplicationFault value) { - return new JAXBElement(_ApplicationFault_QNAME, ApplicationFault.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "base64Binary") - public JAXBElement createBase64Binary(byte[] value) { - return new JAXBElement(_Base64Binary_QNAME, byte[].class, null, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EditorialError }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "EditorialError") - public JAXBElement createEditorialError(EditorialError value) { - return new JAXBElement(_EditorialError_QNAME, EditorialError.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "anyURI") - public JAXBElement createAnyURI(String value) { - return new JAXBElement(_AnyURI_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", name = "AuthenticationToken") - public JAXBElement createAuthenticationToken(String value) { - return new JAXBElement(_AuthenticationToken_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Byte }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "byte") - public JAXBElement createByte(Byte value) { - return new JAXBElement(_Byte_QNAME, Byte.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Double }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schemas.microsoft.com/2003/10/Serialization/", name = "double") - public JAXBElement createDouble(Double value) { - return new JAXBElement(_Double_QNAME, Double.class, null, value); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/OperationError.java b/proxies/com/microsoft/bingads/v12/bulk/OperationError.java deleted file mode 100644 index 88585aa9bf..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/OperationError.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OperationError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OperationError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OperationError", propOrder = { - "code", - "details", - "errorCode", - "message" -}) -public class OperationError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Details", nillable = true) - protected String details; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "Message", nillable = true) - protected String message; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetails(String value) { - this.details = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/PerformanceStatsDateRange.java b/proxies/com/microsoft/bingads/v12/bulk/PerformanceStatsDateRange.java deleted file mode 100644 index 939488fc1b..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/PerformanceStatsDateRange.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PerformanceStatsDateRange complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PerformanceStatsDateRange">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CustomDateRangeEnd" type="{https://bingads.microsoft.com/CampaignManagement/v12}Date" minOccurs="0"/>
- *         <element name="CustomDateRangeStart" type="{https://bingads.microsoft.com/CampaignManagement/v12}Date" minOccurs="0"/>
- *         <element name="PredefinedTime" type="{https://bingads.microsoft.com/CampaignManagement/v12}ReportTimePeriod" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PerformanceStatsDateRange", propOrder = { - "customDateRangeEnd", - "customDateRangeStart", - "predefinedTime" -}) -public class PerformanceStatsDateRange { - - @XmlElement(name = "CustomDateRangeEnd", nillable = true) - protected Date customDateRangeEnd; - @XmlElement(name = "CustomDateRangeStart", nillable = true) - protected Date customDateRangeStart; - @XmlElement(name = "PredefinedTime", nillable = true) - @XmlSchemaType(name = "string") - protected ReportTimePeriod predefinedTime; - - /** - * Gets the value of the customDateRangeEnd property. - * - * @return - * possible object is - * {@link Date } - * - */ - public Date getCustomDateRangeEnd() { - return customDateRangeEnd; - } - - /** - * Sets the value of the customDateRangeEnd property. - * - * @param value - * allowed object is - * {@link Date } - * - */ - public void setCustomDateRangeEnd(Date value) { - this.customDateRangeEnd = value; - } - - /** - * Gets the value of the customDateRangeStart property. - * - * @return - * possible object is - * {@link Date } - * - */ - public Date getCustomDateRangeStart() { - return customDateRangeStart; - } - - /** - * Sets the value of the customDateRangeStart property. - * - * @param value - * allowed object is - * {@link Date } - * - */ - public void setCustomDateRangeStart(Date value) { - this.customDateRangeStart = value; - } - - /** - * Gets the value of the predefinedTime property. - * - * @return - * possible object is - * {@link ReportTimePeriod } - * - */ - public ReportTimePeriod getPredefinedTime() { - return predefinedTime; - } - - /** - * Sets the value of the predefinedTime property. - * - * @param value - * allowed object is - * {@link ReportTimePeriod } - * - */ - public void setPredefinedTime(ReportTimePeriod value) { - this.predefinedTime = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/PositiveInteger.java b/proxies/com/microsoft/bingads/v12/bulk/PositiveInteger.java deleted file mode 100644 index a188ffbfad..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/PositiveInteger.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for positiveInteger simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="positiveInteger">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
- *     <minInclusive value="1"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "positiveInteger", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class PositiveInteger { - - @XmlValue - @XmlSchemaType(name = "positiveInteger") - protected NonNegativeInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NonNegativeInteger } - * - */ - public NonNegativeInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NonNegativeInteger } - * - */ - public void setValue(NonNegativeInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ReportTimePeriod.java b/proxies/com/microsoft/bingads/v12/bulk/ReportTimePeriod.java deleted file mode 100644 index 9d5b589cec..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ReportTimePeriod.java +++ /dev/null @@ -1,81 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ReportTimePeriod. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ReportTimePeriod">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Today"/>
- *     <enumeration value="Yesterday"/>
- *     <enumeration value="LastSevenDays"/>
- *     <enumeration value="ThisWeek"/>
- *     <enumeration value="LastWeek"/>
- *     <enumeration value="LastFourWeeks"/>
- *     <enumeration value="ThisMonth"/>
- *     <enumeration value="LastMonth"/>
- *     <enumeration value="LastThreeMonths"/>
- *     <enumeration value="LastSixMonths"/>
- *     <enumeration value="ThisYear"/>
- *     <enumeration value="LastYear"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ReportTimePeriod") -@XmlEnum -public enum ReportTimePeriod { - - @XmlEnumValue("Today") - TODAY("Today"), - @XmlEnumValue("Yesterday") - YESTERDAY("Yesterday"), - @XmlEnumValue("LastSevenDays") - LAST_SEVEN_DAYS("LastSevenDays"), - @XmlEnumValue("ThisWeek") - THIS_WEEK("ThisWeek"), - @XmlEnumValue("LastWeek") - LAST_WEEK("LastWeek"), - @XmlEnumValue("LastFourWeeks") - LAST_FOUR_WEEKS("LastFourWeeks"), - @XmlEnumValue("ThisMonth") - THIS_MONTH("ThisMonth"), - @XmlEnumValue("LastMonth") - LAST_MONTH("LastMonth"), - @XmlEnumValue("LastThreeMonths") - LAST_THREE_MONTHS("LastThreeMonths"), - @XmlEnumValue("LastSixMonths") - LAST_SIX_MONTHS("LastSixMonths"), - @XmlEnumValue("ThisYear") - THIS_YEAR("ThisYear"), - @XmlEnumValue("LastYear") - LAST_YEAR("LastYear"); - private final String value; - - ReportTimePeriod(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ReportTimePeriod fromValue(String v) { - for (ReportTimePeriod c: ReportTimePeriod.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/ResponseMode.java b/proxies/com/microsoft/bingads/v12/bulk/ResponseMode.java deleted file mode 100644 index 9b1831e99b..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/ResponseMode.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ResponseMode. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ResponseMode">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ErrorsOnly"/>
- *     <enumeration value="ErrorsAndResults"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ResponseMode") -@XmlEnum -public enum ResponseMode { - - @XmlEnumValue("ErrorsOnly") - ERRORS_ONLY("ErrorsOnly"), - @XmlEnumValue("ErrorsAndResults") - ERRORS_AND_RESULTS("ErrorsAndResults"); - private final String value; - - ResponseMode(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ResponseMode fromValue(String v) { - for (ResponseMode c: ResponseMode.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/UnsignedLong.java b/proxies/com/microsoft/bingads/v12/bulk/UnsignedLong.java deleted file mode 100644 index 291a0e9d92..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/UnsignedLong.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.bulk; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for unsignedLong simple type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <simpleType name="unsignedLong">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
- *     <maxInclusive value="18446744073709551615"/>
- *   </restriction>
- * </simpleType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "unsignedLong", namespace = "http://www.w3.org/2001/XMLSchema", propOrder = { - "value" -}) -public class UnsignedLong { - - @XmlValue - @XmlSchemaType(name = "unsignedLong") - protected NonNegativeInteger value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link NonNegativeInteger } - * - */ - public NonNegativeInteger getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link NonNegativeInteger } - * - */ - public void setValue(NonNegativeInteger value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/bulk/package-info.java b/proxies/com/microsoft/bingads/v12/bulk/package-info.java deleted file mode 100644 index 42dc560457..0000000000 --- a/proxies/com/microsoft/bingads/v12/bulk/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "https://bingads.microsoft.com/CampaignManagement/v12", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package com.microsoft.bingads.v12.bulk; diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountMigrationStatusesInfo.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountMigrationStatusesInfo.java deleted file mode 100644 index 8e29f00472..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountMigrationStatusesInfo.java +++ /dev/null @@ -1,82 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountMigrationStatusesInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountMigrationStatusesInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountId" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="MigrationStatusInfos" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfMigrationStatusInfo" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountMigrationStatusesInfo", propOrder = { - "accountId", - "migrationStatusInfos" -}) -public class AccountMigrationStatusesInfo { - - @XmlElement(name = "AccountId") - protected long accountId; - @XmlElement(name = "MigrationStatusInfos", nillable = true) - protected ArrayOfMigrationStatusInfo migrationStatusInfos; - - /** - * Gets the value of the accountId property. - * - */ - public long getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - */ - public void setAccountId(long value) { - this.accountId = value; - } - - /** - * Gets the value of the migrationStatusInfos property. - * - * @return - * possible object is - * {@link ArrayOfMigrationStatusInfo } - * - */ - public ArrayOfMigrationStatusInfo getMigrationStatusInfos() { - return migrationStatusInfos; - } - - /** - * Sets the value of the migrationStatusInfos property. - * - * @param value - * allowed object is - * {@link ArrayOfMigrationStatusInfo } - * - */ - public void setMigrationStatusInfos(ArrayOfMigrationStatusInfo value) { - this.migrationStatusInfos = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountProperty.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountProperty.java deleted file mode 100644 index 79ba888de8..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountProperty.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountProperty complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountProperty">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{https://bingads.microsoft.com/CampaignManagement/v12}AccountPropertyName" minOccurs="0"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountProperty", propOrder = { - "name", - "value" -}) -public class AccountProperty { - - @XmlElement(name = "Name") - @XmlSchemaType(name = "string") - protected AccountPropertyName name; - @XmlElement(name = "Value", nillable = true) - protected String value; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link AccountPropertyName } - * - */ - public AccountPropertyName getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link AccountPropertyName } - * - */ - public void setName(AccountPropertyName value) { - this.name = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountPropertyName.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountPropertyName.java deleted file mode 100644 index 4155e65c96..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AccountPropertyName.java +++ /dev/null @@ -1,60 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountPropertyName. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AccountPropertyName">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="None"/>
- *     <enumeration value="TrackingUrlTemplate"/>
- *     <enumeration value="MSCLKIDAutoTaggingEnabled"/>
- *     <enumeration value="AdClickParallelTracking"/>
- *     <enumeration value="FinalUrlSuffix"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AccountPropertyName") -@XmlEnum -public enum AccountPropertyName { - - @XmlEnumValue("None") - NONE("None"), - @XmlEnumValue("TrackingUrlTemplate") - TRACKING_URL_TEMPLATE("TrackingUrlTemplate"), - @XmlEnumValue("MSCLKIDAutoTaggingEnabled") - MSCLKID_AUTO_TAGGING_ENABLED("MSCLKIDAutoTaggingEnabled"), - @XmlEnumValue("AdClickParallelTracking") - AD_CLICK_PARALLEL_TRACKING("AdClickParallelTracking"), - @XmlEnumValue("FinalUrlSuffix") - FINAL_URL_SUFFIX("FinalUrlSuffix"); - private final String value; - - AccountPropertyName(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AccountPropertyName fromValue(String v) { - for (AccountPropertyName c: AccountPropertyName.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ActionAdExtension.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ActionAdExtension.java deleted file mode 100644 index 9d86eb79e4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ActionAdExtension.java +++ /dev/null @@ -1,234 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ActionAdExtension complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ActionAdExtension">
- *   <complexContent>
- *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtension">
- *       <sequence>
- *         <element name="ActionType" type="{https://bingads.microsoft.com/CampaignManagement/v12}ActionAdExtensionActionType"/>
- *         <element name="FinalMobileUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="FinalUrlSuffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FinalUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="UrlCustomParameters" type="{https://bingads.microsoft.com/CampaignManagement/v12}CustomParameters" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ActionAdExtension", propOrder = { - "actionType", - "finalMobileUrls", - "finalUrlSuffix", - "finalUrls", - "language", - "trackingUrlTemplate", - "urlCustomParameters" -}) -public class ActionAdExtension - extends AdExtension -{ - - @XmlElement(name = "ActionType", required = true) - @XmlSchemaType(name = "string") - protected ActionAdExtensionActionType actionType; - @XmlElement(name = "FinalMobileUrls", nillable = true) - protected ArrayOfstring finalMobileUrls; - @XmlElement(name = "FinalUrlSuffix", nillable = true) - protected String finalUrlSuffix; - @XmlElement(name = "FinalUrls", nillable = true) - protected ArrayOfstring finalUrls; - @XmlElement(name = "Language", nillable = true) - protected String language; - @XmlElement(name = "TrackingUrlTemplate", nillable = true) - protected String trackingUrlTemplate; - @XmlElement(name = "UrlCustomParameters", nillable = true) - protected CustomParameters urlCustomParameters; - - /** - * Gets the value of the actionType property. - * - * @return - * possible object is - * {@link ActionAdExtensionActionType } - * - */ - public ActionAdExtensionActionType getActionType() { - return actionType; - } - - /** - * Sets the value of the actionType property. - * - * @param value - * allowed object is - * {@link ActionAdExtensionActionType } - * - */ - public void setActionType(ActionAdExtensionActionType value) { - this.actionType = value; - } - - /** - * Gets the value of the finalMobileUrls property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getFinalMobileUrls() { - return finalMobileUrls; - } - - /** - * Sets the value of the finalMobileUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setFinalMobileUrls(ArrayOfstring value) { - this.finalMobileUrls = value; - } - - /** - * Gets the value of the finalUrlSuffix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinalUrlSuffix() { - return finalUrlSuffix; - } - - /** - * Sets the value of the finalUrlSuffix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinalUrlSuffix(String value) { - this.finalUrlSuffix = value; - } - - /** - * Gets the value of the finalUrls property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getFinalUrls() { - return finalUrls; - } - - /** - * Sets the value of the finalUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setFinalUrls(ArrayOfstring value) { - this.finalUrls = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the trackingUrlTemplate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingUrlTemplate() { - return trackingUrlTemplate; - } - - /** - * Sets the value of the trackingUrlTemplate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingUrlTemplate(String value) { - this.trackingUrlTemplate = value; - } - - /** - * Gets the value of the urlCustomParameters property. - * - * @return - * possible object is - * {@link CustomParameters } - * - */ - public CustomParameters getUrlCustomParameters() { - return urlCustomParameters; - } - - /** - * Sets the value of the urlCustomParameters property. - * - * @param value - * allowed object is - * {@link CustomParameters } - * - */ - public void setUrlCustomParameters(CustomParameters value) { - this.urlCustomParameters = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ActionAdExtensionActionType.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ActionAdExtensionActionType.java deleted file mode 100644 index 563cd8cff4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ActionAdExtensionActionType.java +++ /dev/null @@ -1,255 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ActionAdExtensionActionType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ActionAdExtensionActionType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Unknown"/>
- *     <enumeration value="ActNow"/>
- *     <enumeration value="ApplyNow"/>
- *     <enumeration value="BetNow"/>
- *     <enumeration value="BidNow"/>
- *     <enumeration value="BookACar"/>
- *     <enumeration value="BookHotel"/>
- *     <enumeration value="BookNow"/>
- *     <enumeration value="Browse"/>
- *     <enumeration value="BuyNow"/>
- *     <enumeration value="ChatNow"/>
- *     <enumeration value="Compare"/>
- *     <enumeration value="ContactUs"/>
- *     <enumeration value="Coupon"/>
- *     <enumeration value="Donate"/>
- *     <enumeration value="Download"/>
- *     <enumeration value="EmailNow"/>
- *     <enumeration value="EnrollNow"/>
- *     <enumeration value="Explore"/>
- *     <enumeration value="FileNow"/>
- *     <enumeration value="FindJob"/>
- *     <enumeration value="FreePlay"/>
- *     <enumeration value="FreeQuote"/>
- *     <enumeration value="FreeTrial"/>
- *     <enumeration value="GetDeals"/>
- *     <enumeration value="GetOffer"/>
- *     <enumeration value="GetQuote"/>
- *     <enumeration value="JoinNow"/>
- *     <enumeration value="LearnMore"/>
- *     <enumeration value="ListenNow"/>
- *     <enumeration value="LogIn"/>
- *     <enumeration value="Message"/>
- *     <enumeration value="NewCars"/>
- *     <enumeration value="OrderNow"/>
- *     <enumeration value="PlayGame"/>
- *     <enumeration value="PlayNow"/>
- *     <enumeration value="PostJob"/>
- *     <enumeration value="Register"/>
- *     <enumeration value="RentACar"/>
- *     <enumeration value="RentNow"/>
- *     <enumeration value="Reserve"/>
- *     <enumeration value="Sale"/>
- *     <enumeration value="SaveNow"/>
- *     <enumeration value="Schedule"/>
- *     <enumeration value="SeeMenu"/>
- *     <enumeration value="SeeMore"/>
- *     <enumeration value="SeeOffer"/>
- *     <enumeration value="SellNow"/>
- *     <enumeration value="ShopNow"/>
- *     <enumeration value="Showtimes"/>
- *     <enumeration value="SignIn"/>
- *     <enumeration value="SignUp"/>
- *     <enumeration value="StartFree"/>
- *     <enumeration value="StartNow"/>
- *     <enumeration value="Subscribe"/>
- *     <enumeration value="TestDrive"/>
- *     <enumeration value="TryNow"/>
- *     <enumeration value="UsedCars"/>
- *     <enumeration value="ViewCars"/>
- *     <enumeration value="ViewNow"/>
- *     <enumeration value="ViewPlans"/>
- *     <enumeration value="VisitSite"/>
- *     <enumeration value="VoteNow"/>
- *     <enumeration value="Watch"/>
- *     <enumeration value="WatchMore"/>
- *     <enumeration value="WatchNow"/>
- *     <enumeration value="Directions"/>
- *     <enumeration value="FindStore"/>
- *     <enumeration value="SwitchNow"/>
- *     <enumeration value="VisitStore"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ActionAdExtensionActionType") -@XmlEnum -public enum ActionAdExtensionActionType { - - @XmlEnumValue("Unknown") - UNKNOWN("Unknown"), - @XmlEnumValue("ActNow") - ACT_NOW("ActNow"), - @XmlEnumValue("ApplyNow") - APPLY_NOW("ApplyNow"), - @XmlEnumValue("BetNow") - BET_NOW("BetNow"), - @XmlEnumValue("BidNow") - BID_NOW("BidNow"), - @XmlEnumValue("BookACar") - BOOK_A_CAR("BookACar"), - @XmlEnumValue("BookHotel") - BOOK_HOTEL("BookHotel"), - @XmlEnumValue("BookNow") - BOOK_NOW("BookNow"), - @XmlEnumValue("Browse") - BROWSE("Browse"), - @XmlEnumValue("BuyNow") - BUY_NOW("BuyNow"), - @XmlEnumValue("ChatNow") - CHAT_NOW("ChatNow"), - @XmlEnumValue("Compare") - COMPARE("Compare"), - @XmlEnumValue("ContactUs") - CONTACT_US("ContactUs"), - @XmlEnumValue("Coupon") - COUPON("Coupon"), - @XmlEnumValue("Donate") - DONATE("Donate"), - @XmlEnumValue("Download") - DOWNLOAD("Download"), - @XmlEnumValue("EmailNow") - EMAIL_NOW("EmailNow"), - @XmlEnumValue("EnrollNow") - ENROLL_NOW("EnrollNow"), - @XmlEnumValue("Explore") - EXPLORE("Explore"), - @XmlEnumValue("FileNow") - FILE_NOW("FileNow"), - @XmlEnumValue("FindJob") - FIND_JOB("FindJob"), - @XmlEnumValue("FreePlay") - FREE_PLAY("FreePlay"), - @XmlEnumValue("FreeQuote") - FREE_QUOTE("FreeQuote"), - @XmlEnumValue("FreeTrial") - FREE_TRIAL("FreeTrial"), - @XmlEnumValue("GetDeals") - GET_DEALS("GetDeals"), - @XmlEnumValue("GetOffer") - GET_OFFER("GetOffer"), - @XmlEnumValue("GetQuote") - GET_QUOTE("GetQuote"), - @XmlEnumValue("JoinNow") - JOIN_NOW("JoinNow"), - @XmlEnumValue("LearnMore") - LEARN_MORE("LearnMore"), - @XmlEnumValue("ListenNow") - LISTEN_NOW("ListenNow"), - @XmlEnumValue("LogIn") - LOG_IN("LogIn"), - @XmlEnumValue("Message") - MESSAGE("Message"), - @XmlEnumValue("NewCars") - NEW_CARS("NewCars"), - @XmlEnumValue("OrderNow") - ORDER_NOW("OrderNow"), - @XmlEnumValue("PlayGame") - PLAY_GAME("PlayGame"), - @XmlEnumValue("PlayNow") - PLAY_NOW("PlayNow"), - @XmlEnumValue("PostJob") - POST_JOB("PostJob"), - @XmlEnumValue("Register") - REGISTER("Register"), - @XmlEnumValue("RentACar") - RENT_A_CAR("RentACar"), - @XmlEnumValue("RentNow") - RENT_NOW("RentNow"), - @XmlEnumValue("Reserve") - RESERVE("Reserve"), - @XmlEnumValue("Sale") - SALE("Sale"), - @XmlEnumValue("SaveNow") - SAVE_NOW("SaveNow"), - @XmlEnumValue("Schedule") - SCHEDULE("Schedule"), - @XmlEnumValue("SeeMenu") - SEE_MENU("SeeMenu"), - @XmlEnumValue("SeeMore") - SEE_MORE("SeeMore"), - @XmlEnumValue("SeeOffer") - SEE_OFFER("SeeOffer"), - @XmlEnumValue("SellNow") - SELL_NOW("SellNow"), - @XmlEnumValue("ShopNow") - SHOP_NOW("ShopNow"), - @XmlEnumValue("Showtimes") - SHOWTIMES("Showtimes"), - @XmlEnumValue("SignIn") - SIGN_IN("SignIn"), - @XmlEnumValue("SignUp") - SIGN_UP("SignUp"), - @XmlEnumValue("StartFree") - START_FREE("StartFree"), - @XmlEnumValue("StartNow") - START_NOW("StartNow"), - @XmlEnumValue("Subscribe") - SUBSCRIBE("Subscribe"), - @XmlEnumValue("TestDrive") - TEST_DRIVE("TestDrive"), - @XmlEnumValue("TryNow") - TRY_NOW("TryNow"), - @XmlEnumValue("UsedCars") - USED_CARS("UsedCars"), - @XmlEnumValue("ViewCars") - VIEW_CARS("ViewCars"), - @XmlEnumValue("ViewNow") - VIEW_NOW("ViewNow"), - @XmlEnumValue("ViewPlans") - VIEW_PLANS("ViewPlans"), - @XmlEnumValue("VisitSite") - VISIT_SITE("VisitSite"), - @XmlEnumValue("VoteNow") - VOTE_NOW("VoteNow"), - @XmlEnumValue("Watch") - WATCH("Watch"), - @XmlEnumValue("WatchMore") - WATCH_MORE("WatchMore"), - @XmlEnumValue("WatchNow") - WATCH_NOW("WatchNow"), - @XmlEnumValue("Directions") - DIRECTIONS("Directions"), - @XmlEnumValue("FindStore") - FIND_STORE("FindStore"), - @XmlEnumValue("SwitchNow") - SWITCH_NOW("SwitchNow"), - @XmlEnumValue("VisitStore") - VISIT_STORE("VisitStore"); - private final String value; - - ActionAdExtensionActionType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ActionAdExtensionActionType fromValue(String v) { - for (ActionAdExtensionActionType c: ActionAdExtensionActionType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Ad.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Ad.java deleted file mode 100644 index ed79673d6d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Ad.java +++ /dev/null @@ -1,412 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Ad complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Ad">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdFormatPreference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="DevicePreference" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="EditorialStatus" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdEditorialStatus" minOccurs="0"/>
- *         <element name="FinalAppUrls" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAppUrl" minOccurs="0"/>
- *         <element name="FinalMobileUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="FinalUrlSuffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FinalUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Status" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdStatus" minOccurs="0"/>
- *         <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Type" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdType" minOccurs="0"/>
- *         <element name="UrlCustomParameters" type="{https://bingads.microsoft.com/CampaignManagement/v12}CustomParameters" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ad", propOrder = { - "adFormatPreference", - "devicePreference", - "editorialStatus", - "finalAppUrls", - "finalMobileUrls", - "finalUrlSuffix", - "finalUrls", - "forwardCompatibilityMap", - "id", - "status", - "trackingUrlTemplate", - "type", - "urlCustomParameters" -}) -@XmlSeeAlso({ - DynamicSearchAd.class, - ProductAd.class, - ResponsiveAd.class, - TextAd.class, - AppInstallAd.class, - ExpandedTextAd.class, - ResponsiveSearchAd.class -}) -public class Ad { - - @XmlElement(name = "AdFormatPreference", nillable = true) - protected String adFormatPreference; - @XmlElement(name = "DevicePreference", nillable = true) - protected Long devicePreference; - @XmlElement(name = "EditorialStatus", nillable = true) - @XmlSchemaType(name = "string") - protected AdEditorialStatus editorialStatus; - @XmlElement(name = "FinalAppUrls", nillable = true) - protected ArrayOfAppUrl finalAppUrls; - @XmlElement(name = "FinalMobileUrls", nillable = true) - protected ArrayOfstring finalMobileUrls; - @XmlElement(name = "FinalUrlSuffix", nillable = true) - protected String finalUrlSuffix; - @XmlElement(name = "FinalUrls", nillable = true) - protected ArrayOfstring finalUrls; - @XmlElement(name = "ForwardCompatibilityMap", nillable = true) - protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; - @XmlElement(name = "Id", nillable = true) - protected Long id; - @XmlElement(name = "Status", nillable = true) - @XmlSchemaType(name = "string") - protected AdStatus status; - @XmlElement(name = "TrackingUrlTemplate", nillable = true) - protected String trackingUrlTemplate; - @XmlElement(name = "Type", nillable = true) - @XmlSchemaType(name = "string") - protected AdType type; - @XmlElement(name = "UrlCustomParameters", nillable = true) - protected CustomParameters urlCustomParameters; - - /** - * Gets the value of the adFormatPreference property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdFormatPreference() { - return adFormatPreference; - } - - /** - * Sets the value of the adFormatPreference property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdFormatPreference(String value) { - this.adFormatPreference = value; - } - - /** - * Gets the value of the devicePreference property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getDevicePreference() { - return devicePreference; - } - - /** - * Sets the value of the devicePreference property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setDevicePreference(Long value) { - this.devicePreference = value; - } - - /** - * Gets the value of the editorialStatus property. - * - * @return - * possible object is - * {@link AdEditorialStatus } - * - */ - public AdEditorialStatus getEditorialStatus() { - return editorialStatus; - } - - /** - * Sets the value of the editorialStatus property. - * - * @param value - * allowed object is - * {@link AdEditorialStatus } - * - */ - public void setEditorialStatus(AdEditorialStatus value) { - this.editorialStatus = value; - } - - /** - * Gets the value of the finalAppUrls property. - * - * @return - * possible object is - * {@link ArrayOfAppUrl } - * - */ - public ArrayOfAppUrl getFinalAppUrls() { - return finalAppUrls; - } - - /** - * Sets the value of the finalAppUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfAppUrl } - * - */ - public void setFinalAppUrls(ArrayOfAppUrl value) { - this.finalAppUrls = value; - } - - /** - * Gets the value of the finalMobileUrls property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getFinalMobileUrls() { - return finalMobileUrls; - } - - /** - * Sets the value of the finalMobileUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setFinalMobileUrls(ArrayOfstring value) { - this.finalMobileUrls = value; - } - - /** - * Gets the value of the finalUrlSuffix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinalUrlSuffix() { - return finalUrlSuffix; - } - - /** - * Sets the value of the finalUrlSuffix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinalUrlSuffix(String value) { - this.finalUrlSuffix = value; - } - - /** - * Gets the value of the finalUrls property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getFinalUrls() { - return finalUrls; - } - - /** - * Sets the value of the finalUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setFinalUrls(ArrayOfstring value) { - this.finalUrls = value; - } - - /** - * Gets the value of the forwardCompatibilityMap property. - * - * @return - * possible object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { - return forwardCompatibilityMap; - } - - /** - * Sets the value of the forwardCompatibilityMap property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { - this.forwardCompatibilityMap = value; - } - - /** - * 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 status property. - * - * @return - * possible object is - * {@link AdStatus } - * - */ - public AdStatus getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link AdStatus } - * - */ - public void setStatus(AdStatus value) { - this.status = value; - } - - /** - * Gets the value of the trackingUrlTemplate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingUrlTemplate() { - return trackingUrlTemplate; - } - - /** - * Sets the value of the trackingUrlTemplate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingUrlTemplate(String value) { - this.trackingUrlTemplate = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link AdType } - * - */ - public AdType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link AdType } - * - */ - public void setType(AdType value) { - this.type = value; - } - - /** - * Gets the value of the urlCustomParameters property. - * - * @return - * possible object is - * {@link CustomParameters } - * - */ - public CustomParameters getUrlCustomParameters() { - return urlCustomParameters; - } - - /** - * Sets the value of the urlCustomParameters property. - * - * @param value - * allowed object is - * {@link CustomParameters } - * - */ - public void setUrlCustomParameters(CustomParameters value) { - this.urlCustomParameters = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdAdditionalField.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdAdditionalField.java deleted file mode 100644 index 78367c27d8..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdAdditionalField.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -/** - * Enum class for AdAdditionalField. - */ -public enum AdAdditionalField { - - TITLE_PART3("TitlePart3"), - TEXT_PART2("TextPart2"), - IMAGES("Images"), - FINAL_URL_SUFFIX("FinalUrlSuffix"), - TEXT_PART2_D_S_A("TextPart2DSA"); - - private final String value; - - AdAdditionalField(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdAdditionalField fromValue(String v) { - for (AdAdditionalField c : AdAdditionalField.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/v12/campaignmanagement/AdAdditionalFieldConverter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdAdditionalFieldConverter.java deleted file mode 100644 index ec01f44512..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdAdditionalFieldConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class AdAdditionalFieldConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(AdAdditionalField.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (AdAdditionalField 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/v12/campaignmanagement/AdApiError.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiError.java deleted file mode 100644 index 21c2299012..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiError.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdApiError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdApiError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Detail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdApiError", namespace = "https://adapi.microsoft.com", propOrder = { - "code", - "detail", - "errorCode", - "message" -}) -public class AdApiError { - - @XmlElement(name = "Code") - protected Integer code; - @XmlElement(name = "Detail", nillable = true) - protected String detail; - @XmlElement(name = "ErrorCode", nillable = true) - protected String errorCode; - @XmlElement(name = "Message", nillable = true) - protected String message; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCode(Integer value) { - this.code = value; - } - - /** - * Gets the value of the detail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetail() { - return detail; - } - - /** - * Sets the value of the detail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetail(String value) { - this.detail = value; - } - - /** - * Gets the value of the errorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErrorCode() { - return errorCode; - } - - /** - * Sets the value of the errorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErrorCode(String value) { - this.errorCode = value; - } - - /** - * Gets the value of the message property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessage() { - return message; - } - - /** - * Sets the value of the message property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessage(String value) { - this.message = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiFaultDetail.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiFaultDetail.java deleted file mode 100644 index c6c4fe8cde..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiFaultDetail.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdApiFaultDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdApiFaultDetail">
- *   <complexContent>
- *     <extension base="{https://adapi.microsoft.com}ApplicationFault">
- *       <sequence>
- *         <element name="Errors" type="{https://adapi.microsoft.com}ArrayOfAdApiError" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdApiFaultDetail", namespace = "https://adapi.microsoft.com", propOrder = { - "errors" -}) -public class AdApiFaultDetail - extends ApplicationFault -{ - - @XmlElement(name = "Errors", nillable = true) - protected ArrayOfAdApiError errors; - - /** - * Gets the value of the errors property. - * - * @return - * possible object is - * {@link ArrayOfAdApiError } - * - */ - public ArrayOfAdApiError getErrors() { - return errors; - } - - /** - * Sets the value of the errors property. - * - * @param value - * allowed object is - * {@link ArrayOfAdApiError } - * - */ - public void setErrors(ArrayOfAdApiError value) { - this.errors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiFaultDetail_Exception.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiFaultDetail_Exception.java deleted file mode 100644 index d645735fe3..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdApiFaultDetail_Exception.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebFault(name = "AdApiFaultDetail", targetNamespace = "https://adapi.microsoft.com") -public class AdApiFaultDetail_Exception - extends Exception -{ - - /** - * Java type that goes as soapenv:Fault detail element. - * - */ - private AdApiFaultDetail faultInfo; - - /** - * - * @param faultInfo - * @param message - */ - public AdApiFaultDetail_Exception(String message, AdApiFaultDetail faultInfo) { - super(message); - this.faultInfo = faultInfo; - } - - /** - * - * @param faultInfo - * @param cause - * @param message - */ - public AdApiFaultDetail_Exception(String message, AdApiFaultDetail faultInfo, Throwable cause) { - super(message, cause); - this.faultInfo = faultInfo; - } - - /** - * - * @return - * returns fault bean: com.microsoft.bingads.v12.campaignmanagement.AdApiFaultDetail - */ - public AdApiFaultDetail getFaultInfo() { - return faultInfo; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdEditorialStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdEditorialStatus.java deleted file mode 100644 index 066a95d350..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdEditorialStatus.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdEditorialStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdEditorialStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Active"/>
- *     <enumeration value="Disapproved"/>
- *     <enumeration value="Inactive"/>
- *     <enumeration value="ActiveLimited"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdEditorialStatus") -@XmlEnum -public enum AdEditorialStatus { - - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Disapproved") - DISAPPROVED("Disapproved"), - @XmlEnumValue("Inactive") - INACTIVE("Inactive"), - @XmlEnumValue("ActiveLimited") - ACTIVE_LIMITED("ActiveLimited"); - private final String value; - - AdEditorialStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdEditorialStatus fromValue(String v) { - for (AdEditorialStatus c: AdEditorialStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtension.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtension.java deleted file mode 100644 index e287b4d489..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtension.java +++ /dev/null @@ -1,245 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtension complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtension">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DevicePreference" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Scheduling" type="{https://bingads.microsoft.com/CampaignManagement/v12}Schedule" minOccurs="0"/>
- *         <element name="Status" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionStatus" minOccurs="0"/>
- *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Version" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtension", propOrder = { - "devicePreference", - "forwardCompatibilityMap", - "id", - "scheduling", - "status", - "type", - "version" -}) -@XmlSeeAlso({ - AppAdExtension.class, - CallAdExtension.class, - ImageAdExtension.class, - LocationAdExtension.class, - StructuredSnippetAdExtension.class, - PriceAdExtension.class, - CalloutAdExtension.class, - ReviewAdExtension.class, - SitelinkAdExtension.class, - ActionAdExtension.class -}) -public class AdExtension { - - @XmlElement(name = "DevicePreference", nillable = true) - protected Long devicePreference; - @XmlElement(name = "ForwardCompatibilityMap", nillable = true) - protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; - @XmlElement(name = "Id", nillable = true) - protected Long id; - @XmlElement(name = "Scheduling", nillable = true) - protected Schedule scheduling; - @XmlElement(name = "Status", nillable = true) - @XmlSchemaType(name = "string") - protected AdExtensionStatus status; - @XmlElement(name = "Type", nillable = true) - protected String type; - @XmlElement(name = "Version", nillable = true) - protected Integer version; - - /** - * Gets the value of the devicePreference property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getDevicePreference() { - return devicePreference; - } - - /** - * Sets the value of the devicePreference property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setDevicePreference(Long value) { - this.devicePreference = value; - } - - /** - * Gets the value of the forwardCompatibilityMap property. - * - * @return - * possible object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { - return forwardCompatibilityMap; - } - - /** - * Sets the value of the forwardCompatibilityMap property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { - this.forwardCompatibilityMap = value; - } - - /** - * 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 scheduling property. - * - * @return - * possible object is - * {@link Schedule } - * - */ - public Schedule getScheduling() { - return scheduling; - } - - /** - * Sets the value of the scheduling property. - * - * @param value - * allowed object is - * {@link Schedule } - * - */ - public void setScheduling(Schedule value) { - this.scheduling = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link AdExtensionStatus } - * - */ - public AdExtensionStatus getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link AdExtensionStatus } - * - */ - public void setStatus(AdExtensionStatus value) { - this.status = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the version property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setVersion(Integer value) { - this.version = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAdditionalField.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAdditionalField.java deleted file mode 100644 index 9ccddfc10a..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAdditionalField.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -/** - * Enum class for AdExtensionAdditionalField. - */ -public enum AdExtensionAdditionalField { - - FINAL_URL_SUFFIX("FinalUrlSuffix"), - ACTION_TYPES_PHASE2("ActionTypesPhase2"); - - private final String value; - - AdExtensionAdditionalField(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdExtensionAdditionalField fromValue(String v) { - for (AdExtensionAdditionalField c : AdExtensionAdditionalField.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/v12/campaignmanagement/AdExtensionAdditionalFieldConverter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAdditionalFieldConverter.java deleted file mode 100644 index 41eb594712..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAdditionalFieldConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class AdExtensionAdditionalFieldConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(AdExtensionAdditionalField.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (AdExtensionAdditionalField 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/v12/campaignmanagement/AdExtensionAssociation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAssociation.java deleted file mode 100644 index ebb7cb5223..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAssociation.java +++ /dev/null @@ -1,141 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionAssociation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtensionAssociation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtension" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtension" minOccurs="0"/>
- *         <element name="AssociationType" type="{https://bingads.microsoft.com/CampaignManagement/v12}AssociationType"/>
- *         <element name="EditorialStatus" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionEditorialStatus" minOccurs="0"/>
- *         <element name="EntityId" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtensionAssociation", propOrder = { - "adExtension", - "associationType", - "editorialStatus", - "entityId" -}) -public class AdExtensionAssociation { - - @XmlElement(name = "AdExtension", nillable = true) - protected AdExtension adExtension; - @XmlElement(name = "AssociationType", required = true) - @XmlSchemaType(name = "string") - protected AssociationType associationType; - @XmlElement(name = "EditorialStatus", nillable = true) - @XmlSchemaType(name = "string") - protected AdExtensionEditorialStatus editorialStatus; - @XmlElement(name = "EntityId") - protected long entityId; - - /** - * Gets the value of the adExtension property. - * - * @return - * possible object is - * {@link AdExtension } - * - */ - public AdExtension getAdExtension() { - return adExtension; - } - - /** - * Sets the value of the adExtension property. - * - * @param value - * allowed object is - * {@link AdExtension } - * - */ - public void setAdExtension(AdExtension value) { - this.adExtension = value; - } - - /** - * Gets the value of the associationType property. - * - * @return - * possible object is - * {@link AssociationType } - * - */ - public AssociationType getAssociationType() { - return associationType; - } - - /** - * Sets the value of the associationType property. - * - * @param value - * allowed object is - * {@link AssociationType } - * - */ - public void setAssociationType(AssociationType value) { - this.associationType = value; - } - - /** - * Gets the value of the editorialStatus property. - * - * @return - * possible object is - * {@link AdExtensionEditorialStatus } - * - */ - public AdExtensionEditorialStatus getEditorialStatus() { - return editorialStatus; - } - - /** - * Sets the value of the editorialStatus property. - * - * @param value - * allowed object is - * {@link AdExtensionEditorialStatus } - * - */ - public void setEditorialStatus(AdExtensionEditorialStatus value) { - this.editorialStatus = value; - } - - /** - * Gets the value of the entityId property. - * - */ - public long getEntityId() { - return entityId; - } - - /** - * Sets the value of the entityId property. - * - */ - public void setEntityId(long value) { - this.entityId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAssociationCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAssociationCollection.java deleted file mode 100644 index 84b52d695e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionAssociationCollection.java +++ /dev/null @@ -1,62 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionAssociationCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtensionAssociationCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionAssociations" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdExtensionAssociation" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtensionAssociationCollection", propOrder = { - "adExtensionAssociations" -}) -public class AdExtensionAssociationCollection { - - @XmlElement(name = "AdExtensionAssociations", nillable = true) - protected ArrayOfAdExtensionAssociation adExtensionAssociations; - - /** - * Gets the value of the adExtensionAssociations property. - * - * @return - * possible object is - * {@link ArrayOfAdExtensionAssociation } - * - */ - public ArrayOfAdExtensionAssociation getAdExtensionAssociations() { - return adExtensionAssociations; - } - - /** - * Sets the value of the adExtensionAssociations property. - * - * @param value - * allowed object is - * {@link ArrayOfAdExtensionAssociation } - * - */ - public void setAdExtensionAssociations(ArrayOfAdExtensionAssociation value) { - this.adExtensionAssociations = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialReason.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialReason.java deleted file mode 100644 index 2895283430..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialReason.java +++ /dev/null @@ -1,146 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionEditorialReason complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtensionEditorialReason">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PublisherCountries" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="ReasonCode" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Term" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtensionEditorialReason", propOrder = { - "location", - "publisherCountries", - "reasonCode", - "term" -}) -public class AdExtensionEditorialReason { - - @XmlElement(name = "Location", nillable = true) - protected String location; - @XmlElement(name = "PublisherCountries", nillable = true) - protected ArrayOfstring publisherCountries; - @XmlElement(name = "ReasonCode") - protected Integer reasonCode; - @XmlElement(name = "Term", nillable = true) - protected String term; - - /** - * Gets the value of the location property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocation() { - return location; - } - - /** - * Sets the value of the location property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocation(String value) { - this.location = value; - } - - /** - * Gets the value of the publisherCountries property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getPublisherCountries() { - return publisherCountries; - } - - /** - * Sets the value of the publisherCountries property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setPublisherCountries(ArrayOfstring value) { - this.publisherCountries = value; - } - - /** - * Gets the value of the reasonCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getReasonCode() { - return reasonCode; - } - - /** - * Sets the value of the reasonCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setReasonCode(Integer value) { - this.reasonCode = value; - } - - /** - * Gets the value of the term property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTerm() { - return term; - } - - /** - * Sets the value of the term property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTerm(String value) { - this.term = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialReasonCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialReasonCollection.java deleted file mode 100644 index 557025d69d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialReasonCollection.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionEditorialReasonCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtensionEditorialReasonCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Reasons" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdExtensionEditorialReason" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtensionEditorialReasonCollection", propOrder = { - "adExtensionId", - "reasons" -}) -public class AdExtensionEditorialReasonCollection { - - @XmlElement(name = "AdExtensionId") - protected Long adExtensionId; - @XmlElement(name = "Reasons", nillable = true) - protected ArrayOfAdExtensionEditorialReason reasons; - - /** - * Gets the value of the adExtensionId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAdExtensionId() { - return adExtensionId; - } - - /** - * Sets the value of the adExtensionId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAdExtensionId(Long value) { - this.adExtensionId = value; - } - - /** - * Gets the value of the reasons property. - * - * @return - * possible object is - * {@link ArrayOfAdExtensionEditorialReason } - * - */ - public ArrayOfAdExtensionEditorialReason getReasons() { - return reasons; - } - - /** - * Sets the value of the reasons property. - * - * @param value - * allowed object is - * {@link ArrayOfAdExtensionEditorialReason } - * - */ - public void setReasons(ArrayOfAdExtensionEditorialReason value) { - this.reasons = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialStatus.java deleted file mode 100644 index 79c88e2aaf..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionEditorialStatus.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionEditorialStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdExtensionEditorialStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Active"/>
- *     <enumeration value="Disapproved"/>
- *     <enumeration value="Inactive"/>
- *     <enumeration value="ActiveLimited"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdExtensionEditorialStatus") -@XmlEnum -public enum AdExtensionEditorialStatus { - - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Disapproved") - DISAPPROVED("Disapproved"), - @XmlEnumValue("Inactive") - INACTIVE("Inactive"), - @XmlEnumValue("ActiveLimited") - ACTIVE_LIMITED("ActiveLimited"); - private final String value; - - AdExtensionEditorialStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdExtensionEditorialStatus fromValue(String v) { - for (AdExtensionEditorialStatus c: AdExtensionEditorialStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionIdToEntityIdAssociation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionIdToEntityIdAssociation.java deleted file mode 100644 index 25e266a4fd..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionIdToEntityIdAssociation.java +++ /dev/null @@ -1,74 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionIdToEntityIdAssociation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtensionIdToEntityIdAssociation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionId" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="EntityId" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtensionIdToEntityIdAssociation", propOrder = { - "adExtensionId", - "entityId" -}) -public class AdExtensionIdToEntityIdAssociation { - - @XmlElement(name = "AdExtensionId") - protected long adExtensionId; - @XmlElement(name = "EntityId") - protected long entityId; - - /** - * Gets the value of the adExtensionId property. - * - */ - public long getAdExtensionId() { - return adExtensionId; - } - - /** - * Sets the value of the adExtensionId property. - * - */ - public void setAdExtensionId(long value) { - this.adExtensionId = value; - } - - /** - * Gets the value of the entityId property. - * - */ - public long getEntityId() { - return entityId; - } - - /** - * Sets the value of the entityId property. - * - */ - public void setEntityId(long value) { - this.entityId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionIdentity.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionIdentity.java deleted file mode 100644 index 2804f36cc6..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionIdentity.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionIdentity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdExtensionIdentity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Version" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdExtensionIdentity", propOrder = { - "id", - "version" -}) -public class AdExtensionIdentity { - - @XmlElement(name = "Id") - protected Long id; - @XmlElement(name = "Version", nillable = true) - protected Integer version; - - /** - * 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 version property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setVersion(Integer value) { - this.version = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionStatus.java deleted file mode 100644 index b62e00b160..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionStatus.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdExtensionStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdExtensionStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Active"/>
- *     <enumeration value="Deleted"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdExtensionStatus") -@XmlEnum -public enum AdExtensionStatus { - - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Deleted") - DELETED("Deleted"); - private final String value; - - AdExtensionStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdExtensionStatus fromValue(String v) { - for (AdExtensionStatus c: AdExtensionStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionsTypeFilter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionsTypeFilter.java deleted file mode 100644 index b8f7823f60..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionsTypeFilter.java +++ /dev/null @@ -1,37 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -/** - * Enum class for AdExtensionsTypeFilter. - */ -public enum AdExtensionsTypeFilter { - - LOCATION_AD_EXTENSION("LocationAdExtension"), - CALL_AD_EXTENSION("CallAdExtension"), - IMAGE_AD_EXTENSION("ImageAdExtension"), - APP_AD_EXTENSION("AppAdExtension"), - REVIEW_AD_EXTENSION("ReviewAdExtension"), - CALLOUT_AD_EXTENSION("CalloutAdExtension"), - SITELINK_AD_EXTENSION("SitelinkAdExtension"), - STRUCTURED_SNIPPET_AD_EXTENSION("StructuredSnippetAdExtension"), - PRICE_AD_EXTENSION("PriceAdExtension"), - ACTION_AD_EXTENSION("ActionAdExtension"); - - private final String value; - - AdExtensionsTypeFilter(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdExtensionsTypeFilter fromValue(String v) { - for (AdExtensionsTypeFilter c : AdExtensionsTypeFilter.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/v12/campaignmanagement/AdExtensionsTypeFilterConverter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionsTypeFilterConverter.java deleted file mode 100644 index a533f4c60c..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdExtensionsTypeFilterConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class AdExtensionsTypeFilterConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(AdExtensionsTypeFilter.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (AdExtensionsTypeFilter 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/v12/campaignmanagement/AdGroup.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroup.java deleted file mode 100644 index 35fc16ad89..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroup.java +++ /dev/null @@ -1,514 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroup">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdRotation" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdRotation" minOccurs="0"/>
- *         <element name="AudienceAdsBidAdjustment" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="BiddingScheme" type="{https://bingads.microsoft.com/CampaignManagement/v12}BiddingScheme" minOccurs="0"/>
- *         <element name="CpcBid" type="{https://bingads.microsoft.com/CampaignManagement/v12}Bid" minOccurs="0"/>
- *         <element name="EndDate" type="{https://bingads.microsoft.com/CampaignManagement/v12}Date" minOccurs="0"/>
- *         <element name="FinalUrlSuffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Network" type="{https://bingads.microsoft.com/CampaignManagement/v12}Network" minOccurs="0"/>
- *         <element name="PrivacyStatus" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupPrivacyStatus" minOccurs="0"/>
- *         <element name="Settings" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfSetting" minOccurs="0"/>
- *         <element name="StartDate" type="{https://bingads.microsoft.com/CampaignManagement/v12}Date" minOccurs="0"/>
- *         <element name="Status" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupStatus" minOccurs="0"/>
- *         <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="UrlCustomParameters" type="{https://bingads.microsoft.com/CampaignManagement/v12}CustomParameters" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroup", propOrder = { - "adRotation", - "audienceAdsBidAdjustment", - "biddingScheme", - "cpcBid", - "endDate", - "finalUrlSuffix", - "forwardCompatibilityMap", - "id", - "language", - "name", - "network", - "privacyStatus", - "settings", - "startDate", - "status", - "trackingUrlTemplate", - "urlCustomParameters" -}) -public class AdGroup { - - @XmlElement(name = "AdRotation", nillable = true) - protected AdRotation adRotation; - @XmlElement(name = "AudienceAdsBidAdjustment", nillable = true) - protected Integer audienceAdsBidAdjustment; - @XmlElement(name = "BiddingScheme", nillable = true) - protected BiddingScheme biddingScheme; - @XmlElement(name = "CpcBid", nillable = true) - protected Bid cpcBid; - @XmlElement(name = "EndDate", nillable = true) - protected Date endDate; - @XmlElement(name = "FinalUrlSuffix", nillable = true) - protected String finalUrlSuffix; - @XmlElement(name = "ForwardCompatibilityMap", nillable = true) - protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; - @XmlElement(name = "Id", nillable = true) - protected Long id; - @XmlElement(name = "Language", nillable = true) - protected String language; - @XmlElement(name = "Name", nillable = true) - protected String name; - @XmlElement(name = "Network", nillable = true) - @XmlSchemaType(name = "string") - protected Network network; - @XmlElement(name = "PrivacyStatus", nillable = true) - @XmlSchemaType(name = "string") - protected AdGroupPrivacyStatus privacyStatus; - @XmlElement(name = "Settings", nillable = true) - protected ArrayOfSetting settings; - @XmlElement(name = "StartDate", nillable = true) - protected Date startDate; - @XmlElement(name = "Status", nillable = true) - @XmlSchemaType(name = "string") - protected AdGroupStatus status; - @XmlElement(name = "TrackingUrlTemplate", nillable = true) - protected String trackingUrlTemplate; - @XmlElement(name = "UrlCustomParameters", nillable = true) - protected CustomParameters urlCustomParameters; - - /** - * Gets the value of the adRotation property. - * - * @return - * possible object is - * {@link AdRotation } - * - */ - public AdRotation getAdRotation() { - return adRotation; - } - - /** - * Sets the value of the adRotation property. - * - * @param value - * allowed object is - * {@link AdRotation } - * - */ - public void setAdRotation(AdRotation value) { - this.adRotation = value; - } - - /** - * Gets the value of the audienceAdsBidAdjustment property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAudienceAdsBidAdjustment() { - return audienceAdsBidAdjustment; - } - - /** - * Sets the value of the audienceAdsBidAdjustment property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAudienceAdsBidAdjustment(Integer value) { - this.audienceAdsBidAdjustment = value; - } - - /** - * Gets the value of the biddingScheme property. - * - * @return - * possible object is - * {@link BiddingScheme } - * - */ - public BiddingScheme getBiddingScheme() { - return biddingScheme; - } - - /** - * Sets the value of the biddingScheme property. - * - * @param value - * allowed object is - * {@link BiddingScheme } - * - */ - public void setBiddingScheme(BiddingScheme value) { - this.biddingScheme = value; - } - - /** - * Gets the value of the cpcBid property. - * - * @return - * possible object is - * {@link Bid } - * - */ - public Bid getCpcBid() { - return cpcBid; - } - - /** - * Sets the value of the cpcBid property. - * - * @param value - * allowed object is - * {@link Bid } - * - */ - public void setCpcBid(Bid value) { - this.cpcBid = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link Date } - * - */ - public Date getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link Date } - * - */ - public void setEndDate(Date value) { - this.endDate = value; - } - - /** - * Gets the value of the finalUrlSuffix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinalUrlSuffix() { - return finalUrlSuffix; - } - - /** - * Sets the value of the finalUrlSuffix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinalUrlSuffix(String value) { - this.finalUrlSuffix = value; - } - - /** - * Gets the value of the forwardCompatibilityMap property. - * - * @return - * possible object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { - return forwardCompatibilityMap; - } - - /** - * Sets the value of the forwardCompatibilityMap property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyValuePairOfstringstring } - * - */ - public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { - this.forwardCompatibilityMap = value; - } - - /** - * 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 language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the network property. - * - * @return - * possible object is - * {@link Network } - * - */ - public Network getNetwork() { - return network; - } - - /** - * Sets the value of the network property. - * - * @param value - * allowed object is - * {@link Network } - * - */ - public void setNetwork(Network value) { - this.network = value; - } - - /** - * Gets the value of the privacyStatus property. - * - * @return - * possible object is - * {@link AdGroupPrivacyStatus } - * - */ - public AdGroupPrivacyStatus getPrivacyStatus() { - return privacyStatus; - } - - /** - * Sets the value of the privacyStatus property. - * - * @param value - * allowed object is - * {@link AdGroupPrivacyStatus } - * - */ - public void setPrivacyStatus(AdGroupPrivacyStatus value) { - this.privacyStatus = value; - } - - /** - * Gets the value of the settings property. - * - * @return - * possible object is - * {@link ArrayOfSetting } - * - */ - public ArrayOfSetting getSettings() { - return settings; - } - - /** - * Sets the value of the settings property. - * - * @param value - * allowed object is - * {@link ArrayOfSetting } - * - */ - public void setSettings(ArrayOfSetting value) { - this.settings = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link Date } - * - */ - public Date getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link Date } - * - */ - public void setStartDate(Date value) { - this.startDate = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link AdGroupStatus } - * - */ - public AdGroupStatus getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link AdGroupStatus } - * - */ - public void setStatus(AdGroupStatus value) { - this.status = value; - } - - /** - * Gets the value of the trackingUrlTemplate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingUrlTemplate() { - return trackingUrlTemplate; - } - - /** - * Sets the value of the trackingUrlTemplate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingUrlTemplate(String value) { - this.trackingUrlTemplate = value; - } - - /** - * Gets the value of the urlCustomParameters property. - * - * @return - * possible object is - * {@link CustomParameters } - * - */ - public CustomParameters getUrlCustomParameters() { - return urlCustomParameters; - } - - /** - * Sets the value of the urlCustomParameters property. - * - * @param value - * allowed object is - * {@link CustomParameters } - * - */ - public void setUrlCustomParameters(CustomParameters value) { - this.urlCustomParameters = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupAdditionalField.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupAdditionalField.java deleted file mode 100644 index 040685b015..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupAdditionalField.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -/** - * Enum class for AdGroupAdditionalField. - */ -public enum AdGroupAdditionalField { - - FINAL_URL_SUFFIX("FinalUrlSuffix"); - - private final String value; - - AdGroupAdditionalField(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupAdditionalField fromValue(String v) { - for (AdGroupAdditionalField c : AdGroupAdditionalField.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/v12/campaignmanagement/AdGroupAdditionalFieldConverter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupAdditionalFieldConverter.java deleted file mode 100644 index 63076721ec..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupAdditionalFieldConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class AdGroupAdditionalFieldConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(AdGroupAdditionalField.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (AdGroupAdditionalField 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/v12/campaignmanagement/AdGroupCriterion.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterion.java deleted file mode 100644 index 90829724a6..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterion.java +++ /dev/null @@ -1,181 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupCriterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Criterion" type="{https://bingads.microsoft.com/CampaignManagement/v12}Criterion" minOccurs="0"/>
- *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Status" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupCriterionStatus" minOccurs="0"/>
- *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupCriterion", propOrder = { - "adGroupId", - "criterion", - "id", - "status", - "type" -}) -@XmlSeeAlso({ - NegativeAdGroupCriterion.class, - BiddableAdGroupCriterion.class -}) -public class AdGroupCriterion { - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "Criterion", nillable = true) - protected Criterion criterion; - @XmlElement(name = "Id", nillable = true) - protected Long id; - @XmlElement(name = "Status", nillable = true) - @XmlSchemaType(name = "string") - protected AdGroupCriterionStatus status; - @XmlElement(name = "Type", nillable = true) - protected String type; - - /** - * 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 criterion property. - * - * @return - * possible object is - * {@link Criterion } - * - */ - public Criterion getCriterion() { - return criterion; - } - - /** - * Sets the value of the criterion property. - * - * @param value - * allowed object is - * {@link Criterion } - * - */ - public void setCriterion(Criterion value) { - this.criterion = value; - } - - /** - * 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 status property. - * - * @return - * possible object is - * {@link AdGroupCriterionStatus } - * - */ - public AdGroupCriterionStatus getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link AdGroupCriterionStatus } - * - */ - public void setStatus(AdGroupCriterionStatus value) { - this.status = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAction.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAction.java deleted file mode 100644 index da2169d575..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAction.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupCriterionAction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupCriterionAction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Action" type="{https://bingads.microsoft.com/CampaignManagement/v12}ItemAction"/>
- *         <element name="AdGroupCriterion" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupCriterion" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupCriterionAction", propOrder = { - "action", - "adGroupCriterion" -}) -public class AdGroupCriterionAction { - - @XmlElement(name = "Action", required = true) - @XmlSchemaType(name = "string") - protected ItemAction action; - @XmlElement(name = "AdGroupCriterion", nillable = true) - protected AdGroupCriterion adGroupCriterion; - - /** - * Gets the value of the action property. - * - * @return - * possible object is - * {@link ItemAction } - * - */ - public ItemAction getAction() { - return action; - } - - /** - * Sets the value of the action property. - * - * @param value - * allowed object is - * {@link ItemAction } - * - */ - public void setAction(ItemAction value) { - this.action = value; - } - - /** - * Gets the value of the adGroupCriterion property. - * - * @return - * possible object is - * {@link AdGroupCriterion } - * - */ - public AdGroupCriterion getAdGroupCriterion() { - return adGroupCriterion; - } - - /** - * Sets the value of the adGroupCriterion property. - * - * @param value - * allowed object is - * {@link AdGroupCriterion } - * - */ - public void setAdGroupCriterion(AdGroupCriterion value) { - this.adGroupCriterion = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAdditionalField.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAdditionalField.java deleted file mode 100644 index 19dc8ee8d4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAdditionalField.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -/** - * Enum class for AdGroupCriterionAdditionalField. - */ -public enum AdGroupCriterionAdditionalField { - - FINAL_URL_SUFFIX("FinalUrlSuffix"); - - private final String value; - - AdGroupCriterionAdditionalField(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupCriterionAdditionalField fromValue(String v) { - for (AdGroupCriterionAdditionalField c : AdGroupCriterionAdditionalField.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/v12/campaignmanagement/AdGroupCriterionAdditionalFieldConverter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAdditionalFieldConverter.java deleted file mode 100644 index 9d3e9f2bb1..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionAdditionalFieldConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class AdGroupCriterionAdditionalFieldConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(AdGroupCriterionAdditionalField.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (AdGroupCriterionAdditionalField 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/v12/campaignmanagement/AdGroupCriterionEditorialStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionEditorialStatus.java deleted file mode 100644 index ede99adc94..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionEditorialStatus.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupCriterionEditorialStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdGroupCriterionEditorialStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Active"/>
- *     <enumeration value="Disapproved"/>
- *     <enumeration value="Inactive"/>
- *     <enumeration value="ActiveLimited"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdGroupCriterionEditorialStatus") -@XmlEnum -public enum AdGroupCriterionEditorialStatus { - - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Disapproved") - DISAPPROVED("Disapproved"), - @XmlEnumValue("Inactive") - INACTIVE("Inactive"), - @XmlEnumValue("ActiveLimited") - ACTIVE_LIMITED("ActiveLimited"); - private final String value; - - AdGroupCriterionEditorialStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupCriterionEditorialStatus fromValue(String v) { - for (AdGroupCriterionEditorialStatus c: AdGroupCriterionEditorialStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionStatus.java deleted file mode 100644 index a8379925db..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionStatus.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupCriterionStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdGroupCriterionStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Active"/>
- *     <enumeration value="Paused"/>
- *     <enumeration value="Deleted"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdGroupCriterionStatus") -@XmlEnum -public enum AdGroupCriterionStatus { - - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Paused") - PAUSED("Paused"), - @XmlEnumValue("Deleted") - DELETED("Deleted"); - private final String value; - - AdGroupCriterionStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupCriterionStatus fromValue(String v) { - for (AdGroupCriterionStatus c: AdGroupCriterionStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionType.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionType.java deleted file mode 100644 index 3f437d0ac6..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionType.java +++ /dev/null @@ -1,46 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -/** - * Enum class for AdGroupCriterionType. - */ -public enum AdGroupCriterionType { - - PRODUCT_PARTITION("ProductPartition"), - WEBPAGE("Webpage"), - TARGETS("Targets"), - AGE("Age"), - GENDER("Gender"), - DAY_TIME("DayTime"), - DEVICE("Device"), - LOCATION("Location"), - LOCATION_INTENT("LocationIntent"), - RADIUS("Radius"), - AUDIENCE("Audience"), - CUSTOM_AUDIENCE("CustomAudience"), - IN_MARKET_AUDIENCE("InMarketAudience"), - REMARKETING_LIST("RemarketingList"), - COMPANY_NAME("CompanyName"), - JOB_FUNCTION("JobFunction"), - INDUSTRY("Industry"), - PRODUCT_AUDIENCE("ProductAudience"), - SIMILAR_REMARKETING_LIST("SimilarRemarketingList"); - - private final String value; - - AdGroupCriterionType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupCriterionType fromValue(String v) { - for (AdGroupCriterionType c : AdGroupCriterionType.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/v12/campaignmanagement/AdGroupCriterionTypeConverter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionTypeConverter.java deleted file mode 100644 index 53df17a33d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupCriterionTypeConverter.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.Collection; - -/** - * Reserved for internal use. - */ -public class AdGroupCriterionTypeConverter { - - public static Collection convertToList(String enums) { - String[] values = enums.split(" "); - - Collection result = new ArrayList(); - - for (String value : values) { - result.add(AdGroupCriterionType.fromValue(value)); - } - - return result; - } - - public static String convertToString(Collection enums) { - String result = ""; - - for (AdGroupCriterionType 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/v12/campaignmanagement/AdGroupNegativeSites.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupNegativeSites.java deleted file mode 100644 index bd11c3928b..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupNegativeSites.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupNegativeSites complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdGroupNegativeSites">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="NegativeSites" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdGroupNegativeSites", propOrder = { - "adGroupId", - "negativeSites" -}) -public class AdGroupNegativeSites { - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "NegativeSites", nillable = true) - protected ArrayOfstring negativeSites; - - /** - * 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 negativeSites property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getNegativeSites() { - return negativeSites; - } - - /** - * Sets the value of the negativeSites property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setNegativeSites(ArrayOfstring value) { - this.negativeSites = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupPrivacyStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupPrivacyStatus.java deleted file mode 100644 index f18bd229b8..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupPrivacyStatus.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupPrivacyStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdGroupPrivacyStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Unknown"/>
- *     <enumeration value="Active"/>
- *     <enumeration value="TargetingTooNarrow"/>
- *     <enumeration value="Pending"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdGroupPrivacyStatus") -@XmlEnum -public enum AdGroupPrivacyStatus { - - @XmlEnumValue("Unknown") - UNKNOWN("Unknown"), - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("TargetingTooNarrow") - TARGETING_TOO_NARROW("TargetingTooNarrow"), - @XmlEnumValue("Pending") - PENDING("Pending"); - private final String value; - - AdGroupPrivacyStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupPrivacyStatus fromValue(String v) { - for (AdGroupPrivacyStatus c: AdGroupPrivacyStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupStatus.java deleted file mode 100644 index db879f456a..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdGroupStatus.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdGroupStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdGroupStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Active"/>
- *     <enumeration value="Paused"/>
- *     <enumeration value="Expired"/>
- *     <enumeration value="Deleted"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdGroupStatus") -@XmlEnum -public enum AdGroupStatus { - - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Paused") - PAUSED("Paused"), - @XmlEnumValue("Expired") - EXPIRED("Expired"), - @XmlEnumValue("Deleted") - DELETED("Deleted"); - private final String value; - - AdGroupStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdGroupStatus fromValue(String v) { - for (AdGroupStatus c: AdGroupStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdRotation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdRotation.java deleted file mode 100644 index 773acfa2e9..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdRotation.java +++ /dev/null @@ -1,126 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Calendar; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for AdRotation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AdRotation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EndDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="Type" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdRotationType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AdRotation", propOrder = { - "endDate", - "startDate", - "type" -}) -public class AdRotation { - - @XmlElement(name = "EndDate", type = String.class, nillable = true) - @XmlJavaTypeAdapter(Adapter1 .class) - @XmlSchemaType(name = "dateTime") - protected Calendar endDate; - @XmlElement(name = "StartDate", type = String.class, nillable = true) - @XmlJavaTypeAdapter(Adapter1 .class) - @XmlSchemaType(name = "dateTime") - protected Calendar startDate; - @XmlElement(name = "Type", nillable = true) - @XmlSchemaType(name = "string") - protected AdRotationType type; - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public Calendar getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndDate(Calendar value) { - this.endDate = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public Calendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartDate(Calendar value) { - this.startDate = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link AdRotationType } - * - */ - public AdRotationType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link AdRotationType } - * - */ - public void setType(AdRotationType value) { - this.type = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdRotationType.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdRotationType.java deleted file mode 100644 index 7c47927885..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdRotationType.java +++ /dev/null @@ -1,51 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdRotationType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdRotationType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OptimizeForClicks"/>
- *     <enumeration value="RotateAdsEvenly"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdRotationType") -@XmlEnum -public enum AdRotationType { - - @XmlEnumValue("OptimizeForClicks") - OPTIMIZE_FOR_CLICKS("OptimizeForClicks"), - @XmlEnumValue("RotateAdsEvenly") - ROTATE_ADS_EVENLY("RotateAdsEvenly"); - private final String value; - - AdRotationType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdRotationType fromValue(String v) { - for (AdRotationType c: AdRotationType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdStatus.java deleted file mode 100644 index ac64c679fa..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdStatus.java +++ /dev/null @@ -1,57 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Inactive"/>
- *     <enumeration value="Active"/>
- *     <enumeration value="Paused"/>
- *     <enumeration value="Deleted"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdStatus") -@XmlEnum -public enum AdStatus { - - @XmlEnumValue("Inactive") - INACTIVE("Inactive"), - @XmlEnumValue("Active") - ACTIVE("Active"), - @XmlEnumValue("Paused") - PAUSED("Paused"), - @XmlEnumValue("Deleted") - DELETED("Deleted"); - private final String value; - - AdStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdStatus fromValue(String v) { - for (AdStatus c: AdStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdType.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AdType.java deleted file mode 100644 index d3bf1ae10d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AdType.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AdType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AdType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Text"/>
- *     <enumeration value="Image"/>
- *     <enumeration value="Product"/>
- *     <enumeration value="AppInstall"/>
- *     <enumeration value="ExpandedText"/>
- *     <enumeration value="DynamicSearch"/>
- *     <enumeration value="ResponsiveAd"/>
- *     <enumeration value="ResponsiveSearch"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AdType") -@XmlEnum -public enum AdType { - - @XmlEnumValue("Text") - TEXT("Text"), - @XmlEnumValue("Image") - IMAGE("Image"), - @XmlEnumValue("Product") - PRODUCT("Product"), - @XmlEnumValue("AppInstall") - APP_INSTALL("AppInstall"), - @XmlEnumValue("ExpandedText") - EXPANDED_TEXT("ExpandedText"), - @XmlEnumValue("DynamicSearch") - DYNAMIC_SEARCH("DynamicSearch"), - @XmlEnumValue("ResponsiveAd") - RESPONSIVE_AD("ResponsiveAd"), - @XmlEnumValue("ResponsiveSearch") - RESPONSIVE_SEARCH("ResponsiveSearch"); - private final String value; - - AdType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AdType fromValue(String v) { - for (AdType c: AdType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter1.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter1.java deleted file mode 100644 index 412cf69589..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter1.java +++ /dev/null @@ -1,23 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Calendar; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter1 - extends XmlAdapter -{ - - - public Calendar unmarshal(String value) { - return (javax.xml.bind.DatatypeConverter.parseDateTime(value)); - } - - public String marshal(Calendar value) { - if (value == null) { - return null; - } - return (javax.xml.bind.DatatypeConverter.printDateTime(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter10.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter10.java deleted file mode 100644 index ac66a3db81..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter10.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter10 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AudienceTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AudienceTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter11.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter11.java deleted file mode 100644 index d829366c11..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter11.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter11 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdGroupCriterionTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdGroupCriterionTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter12.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter12.java deleted file mode 100644 index e553434ac3..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter12.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter12 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.ProductAudienceTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.ProductAudienceTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter13.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter13.java deleted file mode 100644 index c4de767f13..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter13.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter13 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.KeywordAdditionalFieldConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.KeywordAdditionalFieldConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter14.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter14.java deleted file mode 100644 index 49c4c056f3..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter14.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter14 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.ConversionGoalTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.ConversionGoalTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter15.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter15.java deleted file mode 100644 index 3a99d13ca3..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter15.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter15 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.ProfileTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.ProfileTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter16.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter16.java deleted file mode 100644 index f716db5067..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter16.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter16 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdAdditionalFieldConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdAdditionalFieldConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter2.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter2.java deleted file mode 100644 index a3d9a03a40..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter2.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter2 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdGroupAdditionalFieldConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdGroupAdditionalFieldConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter3.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter3.java deleted file mode 100644 index 1d959c2426..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter3.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter3 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.CampaignCriterionTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.CampaignCriterionTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter4.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter4.java deleted file mode 100644 index e4ebaab640..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter4.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter4 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.CampaignTypeConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.CampaignTypeConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter5.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter5.java deleted file mode 100644 index 14b2eb9af3..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter5.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter5 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.CampaignAdditionalFieldConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.CampaignAdditionalFieldConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter6.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter6.java deleted file mode 100644 index 5ff9bce37d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter6.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter6 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdGroupCriterionAdditionalFieldConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdGroupCriterionAdditionalFieldConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter7.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter7.java deleted file mode 100644 index 1d1dd9108b..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter7.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter7 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdExtensionsTypeFilterConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdExtensionsTypeFilterConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter8.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter8.java deleted file mode 100644 index 2b9db8d29f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter8.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter8 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdExtensionAdditionalFieldConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.AdExtensionAdditionalFieldConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter9.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter9.java deleted file mode 100644 index 7594762b2e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Adapter9.java +++ /dev/null @@ -1,20 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -public class Adapter9 - extends XmlAdapter> -{ - - - public Collection unmarshal(String value) { - return (com.microsoft.bingads.v12.campaignmanagement.MediaEnabledEntityFilterConverter.convertToList(value)); - } - - public String marshal(Collection value) { - return (com.microsoft.bingads.v12.campaignmanagement.MediaEnabledEntityFilterConverter.convertToString(value)); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdExtensionsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdExtensionsRequest.java deleted file mode 100644 index 0c009c01b6..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdExtensionsRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdExtensions" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdExtension" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "accountId", - "adExtensions" -}) -@XmlRootElement(name = "AddAdExtensionsRequest") -public class AddAdExtensionsRequest { - - @XmlElement(name = "AccountId") - protected Long accountId; - @XmlElement(name = "AdExtensions", nillable = true) - protected ArrayOfAdExtension adExtensions; - - /** - * Gets the value of the accountId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAccountId(Long value) { - this.accountId = value; - } - - /** - * Gets the value of the adExtensions property. - * - * @return - * possible object is - * {@link ArrayOfAdExtension } - * - */ - public ArrayOfAdExtension getAdExtensions() { - return adExtensions; - } - - /** - * Sets the value of the adExtensions property. - * - * @param value - * allowed object is - * {@link ArrayOfAdExtension } - * - */ - public void setAdExtensions(ArrayOfAdExtension value) { - this.adExtensions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdExtensionsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdExtensionsResponse.java deleted file mode 100644 index 253021c2ad..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdExtensionsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionIdentities" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdExtensionIdentity" minOccurs="0"/>
- *         <element name="NestedPartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchErrorCollection" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adExtensionIdentities", - "nestedPartialErrors" -}) -@XmlRootElement(name = "AddAdExtensionsResponse") -public class AddAdExtensionsResponse { - - @XmlElement(name = "AdExtensionIdentities", nillable = true) - protected ArrayOfAdExtensionIdentity adExtensionIdentities; - @XmlElement(name = "NestedPartialErrors", nillable = true) - protected ArrayOfBatchErrorCollection nestedPartialErrors; - - /** - * Gets the value of the adExtensionIdentities property. - * - * @return - * possible object is - * {@link ArrayOfAdExtensionIdentity } - * - */ - public ArrayOfAdExtensionIdentity getAdExtensionIdentities() { - return adExtensionIdentities; - } - - /** - * Sets the value of the adExtensionIdentities property. - * - * @param value - * allowed object is - * {@link ArrayOfAdExtensionIdentity } - * - */ - public void setAdExtensionIdentities(ArrayOfAdExtensionIdentity value) { - this.adExtensionIdentities = value; - } - - /** - * Gets the value of the nestedPartialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public ArrayOfBatchErrorCollection getNestedPartialErrors() { - return nestedPartialErrors; - } - - /** - * Sets the value of the nestedPartialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public void setNestedPartialErrors(ArrayOfBatchErrorCollection value) { - this.nestedPartialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupCriterionsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupCriterionsRequest.java deleted file mode 100644 index 38330e8b3c..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupCriterionsRequest.java +++ /dev/null @@ -1,95 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupCriterions" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdGroupCriterion" minOccurs="0"/>
- *         <element name="CriterionType" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupCriterionType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupCriterions", - "criterionType" -}) -@XmlRootElement(name = "AddAdGroupCriterionsRequest") -public class AddAdGroupCriterionsRequest { - - @XmlElement(name = "AdGroupCriterions", nillable = true) - protected ArrayOfAdGroupCriterion adGroupCriterions; - @XmlElement(name = "CriterionType", type = String.class) - @XmlJavaTypeAdapter(Adapter11 .class) - protected Collection criterionType; - - /** - * Gets the value of the adGroupCriterions property. - * - * @return - * possible object is - * {@link ArrayOfAdGroupCriterion } - * - */ - public ArrayOfAdGroupCriterion getAdGroupCriterions() { - return adGroupCriterions; - } - - /** - * Sets the value of the adGroupCriterions property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroupCriterion } - * - */ - public void setAdGroupCriterions(ArrayOfAdGroupCriterion value) { - this.adGroupCriterions = value; - } - - /** - * Gets the value of the criterionType property. - * - * @return - * possible object is - * {@link String } - * - */ - public Collection getCriterionType() { - return criterionType; - } - - /** - * Sets the value of the criterionType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriterionType(Collection value) { - this.criterionType = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupCriterionsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupCriterionsResponse.java deleted file mode 100644 index bb56799458..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupCriterionsResponse.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupCriterionIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="IsMigrated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="NestedPartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchErrorCollection" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupCriterionIds", - "isMigrated", - "nestedPartialErrors" -}) -@XmlRootElement(name = "AddAdGroupCriterionsResponse") -public class AddAdGroupCriterionsResponse { - - @XmlElement(name = "AdGroupCriterionIds", nillable = true) - protected ArrayOfNullableOflong adGroupCriterionIds; - @XmlElement(name = "IsMigrated") - protected Boolean isMigrated; - @XmlElement(name = "NestedPartialErrors", nillable = true) - protected ArrayOfBatchErrorCollection nestedPartialErrors; - - /** - * Gets the value of the adGroupCriterionIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getAdGroupCriterionIds() { - return adGroupCriterionIds; - } - - /** - * Sets the value of the adGroupCriterionIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setAdGroupCriterionIds(ArrayOfNullableOflong value) { - this.adGroupCriterionIds = value; - } - - /** - * Gets the value of the isMigrated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getIsMigrated() { - return isMigrated; - } - - /** - * Sets the value of the isMigrated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsMigrated(Boolean value) { - this.isMigrated = value; - } - - /** - * Gets the value of the nestedPartialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public ArrayOfBatchErrorCollection getNestedPartialErrors() { - return nestedPartialErrors; - } - - /** - * Sets the value of the nestedPartialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public void setNestedPartialErrors(ArrayOfBatchErrorCollection value) { - this.nestedPartialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupsRequest.java deleted file mode 100644 index ebe221e1a1..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupsRequest.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AdGroups" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdGroup" minOccurs="0"/>
- *         <element name="ReturnInheritedBidStrategyTypes" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignId", - "adGroups", - "returnInheritedBidStrategyTypes" -}) -@XmlRootElement(name = "AddAdGroupsRequest") -public class AddAdGroupsRequest { - - @XmlElement(name = "CampaignId") - protected Long campaignId; - @XmlElement(name = "AdGroups", nillable = true) - protected ArrayOfAdGroup adGroups; - @XmlElement(name = "ReturnInheritedBidStrategyTypes", nillable = true) - protected Boolean returnInheritedBidStrategyTypes; - - /** - * 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 adGroups property. - * - * @return - * possible object is - * {@link ArrayOfAdGroup } - * - */ - public ArrayOfAdGroup getAdGroups() { - return adGroups; - } - - /** - * Sets the value of the adGroups property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroup } - * - */ - public void setAdGroups(ArrayOfAdGroup value) { - this.adGroups = value; - } - - /** - * Gets the value of the returnInheritedBidStrategyTypes property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getReturnInheritedBidStrategyTypes() { - return returnInheritedBidStrategyTypes; - } - - /** - * Sets the value of the returnInheritedBidStrategyTypes property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setReturnInheritedBidStrategyTypes(Boolean value) { - this.returnInheritedBidStrategyTypes = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupsResponse.java deleted file mode 100644 index 07b3e2d8b4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdGroupsResponse.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="InheritedBidStrategyTypes" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupIds", - "inheritedBidStrategyTypes", - "partialErrors" -}) -@XmlRootElement(name = "AddAdGroupsResponse") -public class AddAdGroupsResponse { - - @XmlElement(name = "AdGroupIds", nillable = true) - protected ArrayOfNullableOflong adGroupIds; - @XmlElement(name = "InheritedBidStrategyTypes", nillable = true) - protected ArrayOfstring inheritedBidStrategyTypes; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the adGroupIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getAdGroupIds() { - return adGroupIds; - } - - /** - * Sets the value of the adGroupIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setAdGroupIds(ArrayOfNullableOflong value) { - this.adGroupIds = value; - } - - /** - * Gets the value of the inheritedBidStrategyTypes property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getInheritedBidStrategyTypes() { - return inheritedBidStrategyTypes; - } - - /** - * Sets the value of the inheritedBidStrategyTypes property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setInheritedBidStrategyTypes(ArrayOfstring value) { - this.inheritedBidStrategyTypes = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdsRequest.java deleted file mode 100644 index 31fd58536e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdsRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Ads" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAd" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupId", - "ads" -}) -@XmlRootElement(name = "AddAdsRequest") -public class AddAdsRequest { - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "Ads", nillable = true) - protected ArrayOfAd ads; - - /** - * 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 ads property. - * - * @return - * possible object is - * {@link ArrayOfAd } - * - */ - public ArrayOfAd getAds() { - return ads; - } - - /** - * Sets the value of the ads property. - * - * @param value - * allowed object is - * {@link ArrayOfAd } - * - */ - public void setAds(ArrayOfAd value) { - this.ads = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdsResponse.java deleted file mode 100644 index 729b396abc..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAdsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adIds", - "partialErrors" -}) -@XmlRootElement(name = "AddAdsResponse") -public class AddAdsResponse { - - @XmlElement(name = "AdIds", nillable = true) - protected ArrayOfNullableOflong adIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the adIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getAdIds() { - return adIds; - } - - /** - * Sets the value of the adIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setAdIds(ArrayOfNullableOflong value) { - this.adIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAudiencesRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAudiencesRequest.java deleted file mode 100644 index 238c947d4e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAudiencesRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Audiences" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAudience" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "audiences" -}) -@XmlRootElement(name = "AddAudiencesRequest") -public class AddAudiencesRequest { - - @XmlElement(name = "Audiences", nillable = true) - protected ArrayOfAudience audiences; - - /** - * Gets the value of the audiences property. - * - * @return - * possible object is - * {@link ArrayOfAudience } - * - */ - public ArrayOfAudience getAudiences() { - return audiences; - } - - /** - * Sets the value of the audiences property. - * - * @param value - * allowed object is - * {@link ArrayOfAudience } - * - */ - public void setAudiences(ArrayOfAudience value) { - this.audiences = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAudiencesResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAudiencesResponse.java deleted file mode 100644 index 9f1532092f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddAudiencesResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AudienceIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "audienceIds", - "partialErrors" -}) -@XmlRootElement(name = "AddAudiencesResponse") -public class AddAudiencesResponse { - - @XmlElement(name = "AudienceIds", nillable = true) - protected ArrayOfNullableOflong audienceIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the audienceIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getAudienceIds() { - return audienceIds; - } - - /** - * Sets the value of the audienceIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setAudienceIds(ArrayOfNullableOflong value) { - this.audienceIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddBudgetsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddBudgetsRequest.java deleted file mode 100644 index beb43cbe51..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddBudgetsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Budgets" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBudget" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "budgets" -}) -@XmlRootElement(name = "AddBudgetsRequest") -public class AddBudgetsRequest { - - @XmlElement(name = "Budgets", nillable = true) - protected ArrayOfBudget budgets; - - /** - * Gets the value of the budgets property. - * - * @return - * possible object is - * {@link ArrayOfBudget } - * - */ - public ArrayOfBudget getBudgets() { - return budgets; - } - - /** - * Sets the value of the budgets property. - * - * @param value - * allowed object is - * {@link ArrayOfBudget } - * - */ - public void setBudgets(ArrayOfBudget value) { - this.budgets = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddBudgetsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddBudgetsResponse.java deleted file mode 100644 index 37730a8fcc..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddBudgetsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BudgetIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "budgetIds", - "partialErrors" -}) -@XmlRootElement(name = "AddBudgetsResponse") -public class AddBudgetsResponse { - - @XmlElement(name = "BudgetIds", nillable = true) - protected ArrayOfNullableOflong budgetIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the budgetIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getBudgetIds() { - return budgetIds; - } - - /** - * Sets the value of the budgetIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setBudgetIds(ArrayOfNullableOflong value) { - this.budgetIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignCriterionsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignCriterionsRequest.java deleted file mode 100644 index d98f2f9b03..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignCriterionsRequest.java +++ /dev/null @@ -1,95 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignCriterions" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfCampaignCriterion" minOccurs="0"/>
- *         <element name="CriterionType" type="{https://bingads.microsoft.com/CampaignManagement/v12}CampaignCriterionType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignCriterions", - "criterionType" -}) -@XmlRootElement(name = "AddCampaignCriterionsRequest") -public class AddCampaignCriterionsRequest { - - @XmlElement(name = "CampaignCriterions", nillable = true) - protected ArrayOfCampaignCriterion campaignCriterions; - @XmlElement(name = "CriterionType", type = String.class) - @XmlJavaTypeAdapter(Adapter3 .class) - protected Collection criterionType; - - /** - * Gets the value of the campaignCriterions property. - * - * @return - * possible object is - * {@link ArrayOfCampaignCriterion } - * - */ - public ArrayOfCampaignCriterion getCampaignCriterions() { - return campaignCriterions; - } - - /** - * Sets the value of the campaignCriterions property. - * - * @param value - * allowed object is - * {@link ArrayOfCampaignCriterion } - * - */ - public void setCampaignCriterions(ArrayOfCampaignCriterion value) { - this.campaignCriterions = value; - } - - /** - * Gets the value of the criterionType property. - * - * @return - * possible object is - * {@link String } - * - */ - public Collection getCriterionType() { - return criterionType; - } - - /** - * Sets the value of the criterionType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriterionType(Collection value) { - this.criterionType = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignCriterionsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignCriterionsResponse.java deleted file mode 100644 index 91263585a7..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignCriterionsResponse.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignCriterionIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="IsMigrated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="NestedPartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchErrorCollection" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignCriterionIds", - "isMigrated", - "nestedPartialErrors" -}) -@XmlRootElement(name = "AddCampaignCriterionsResponse") -public class AddCampaignCriterionsResponse { - - @XmlElement(name = "CampaignCriterionIds", nillable = true) - protected ArrayOfNullableOflong campaignCriterionIds; - @XmlElement(name = "IsMigrated") - protected Boolean isMigrated; - @XmlElement(name = "NestedPartialErrors", nillable = true) - protected ArrayOfBatchErrorCollection nestedPartialErrors; - - /** - * Gets the value of the campaignCriterionIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getCampaignCriterionIds() { - return campaignCriterionIds; - } - - /** - * Sets the value of the campaignCriterionIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setCampaignCriterionIds(ArrayOfNullableOflong value) { - this.campaignCriterionIds = value; - } - - /** - * Gets the value of the isMigrated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getIsMigrated() { - return isMigrated; - } - - /** - * Sets the value of the isMigrated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsMigrated(Boolean value) { - this.isMigrated = value; - } - - /** - * Gets the value of the nestedPartialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public ArrayOfBatchErrorCollection getNestedPartialErrors() { - return nestedPartialErrors; - } - - /** - * Sets the value of the nestedPartialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public void setNestedPartialErrors(ArrayOfBatchErrorCollection value) { - this.nestedPartialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignsRequest.java deleted file mode 100644 index 83247257f5..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignsRequest.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Campaigns" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfCampaign" minOccurs="0"/>
- *         <element name="IncludeDynamicSearchAdsSource" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "accountId", - "campaigns", - "includeDynamicSearchAdsSource" -}) -@XmlRootElement(name = "AddCampaignsRequest") -public class AddCampaignsRequest { - - @XmlElement(name = "AccountId") - protected Long accountId; - @XmlElement(name = "Campaigns", nillable = true) - protected ArrayOfCampaign campaigns; - @XmlElement(name = "IncludeDynamicSearchAdsSource", nillable = true) - protected Boolean includeDynamicSearchAdsSource; - - /** - * Gets the value of the accountId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAccountId(Long value) { - this.accountId = value; - } - - /** - * Gets the value of the campaigns property. - * - * @return - * possible object is - * {@link ArrayOfCampaign } - * - */ - public ArrayOfCampaign getCampaigns() { - return campaigns; - } - - /** - * Sets the value of the campaigns property. - * - * @param value - * allowed object is - * {@link ArrayOfCampaign } - * - */ - public void setCampaigns(ArrayOfCampaign value) { - this.campaigns = value; - } - - /** - * Gets the value of the includeDynamicSearchAdsSource property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getIncludeDynamicSearchAdsSource() { - return includeDynamicSearchAdsSource; - } - - /** - * Sets the value of the includeDynamicSearchAdsSource property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIncludeDynamicSearchAdsSource(Boolean value) { - this.includeDynamicSearchAdsSource = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignsResponse.java deleted file mode 100644 index c4b7ededd3..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddCampaignsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "campaignIds", - "partialErrors" -}) -@XmlRootElement(name = "AddCampaignsResponse") -public class AddCampaignsResponse { - - @XmlElement(name = "CampaignIds", nillable = true) - protected ArrayOfNullableOflong campaignIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the campaignIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getCampaignIds() { - return campaignIds; - } - - /** - * Sets the value of the campaignIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setCampaignIds(ArrayOfNullableOflong value) { - this.campaignIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddConversionGoalsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddConversionGoalsRequest.java deleted file mode 100644 index 0b2d1d71d1..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddConversionGoalsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ConversionGoals" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfConversionGoal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "conversionGoals" -}) -@XmlRootElement(name = "AddConversionGoalsRequest") -public class AddConversionGoalsRequest { - - @XmlElement(name = "ConversionGoals", nillable = true) - protected ArrayOfConversionGoal conversionGoals; - - /** - * Gets the value of the conversionGoals property. - * - * @return - * possible object is - * {@link ArrayOfConversionGoal } - * - */ - public ArrayOfConversionGoal getConversionGoals() { - return conversionGoals; - } - - /** - * Sets the value of the conversionGoals property. - * - * @param value - * allowed object is - * {@link ArrayOfConversionGoal } - * - */ - public void setConversionGoals(ArrayOfConversionGoal value) { - this.conversionGoals = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddConversionGoalsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddConversionGoalsResponse.java deleted file mode 100644 index 58707a4980..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddConversionGoalsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ConversionGoalIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "conversionGoalIds", - "partialErrors" -}) -@XmlRootElement(name = "AddConversionGoalsResponse") -public class AddConversionGoalsResponse { - - @XmlElement(name = "ConversionGoalIds", nillable = true) - protected ArrayOfNullableOflong conversionGoalIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the conversionGoalIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getConversionGoalIds() { - return conversionGoalIds; - } - - /** - * Sets the value of the conversionGoalIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setConversionGoalIds(ArrayOfNullableOflong value) { - this.conversionGoalIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddExperimentsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddExperimentsRequest.java deleted file mode 100644 index bbd82d9a8a..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddExperimentsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Experiments" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfExperiment" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "experiments" -}) -@XmlRootElement(name = "AddExperimentsRequest") -public class AddExperimentsRequest { - - @XmlElement(name = "Experiments", nillable = true) - protected ArrayOfExperiment experiments; - - /** - * Gets the value of the experiments property. - * - * @return - * possible object is - * {@link ArrayOfExperiment } - * - */ - public ArrayOfExperiment getExperiments() { - return experiments; - } - - /** - * Sets the value of the experiments property. - * - * @param value - * allowed object is - * {@link ArrayOfExperiment } - * - */ - public void setExperiments(ArrayOfExperiment value) { - this.experiments = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddExperimentsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddExperimentsResponse.java deleted file mode 100644 index 0505d40e54..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddExperimentsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ExperimentIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "experimentIds", - "partialErrors" -}) -@XmlRootElement(name = "AddExperimentsResponse") -public class AddExperimentsResponse { - - @XmlElement(name = "ExperimentIds", nillable = true) - protected ArrayOfNullableOflong experimentIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the experimentIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getExperimentIds() { - return experimentIds; - } - - /** - * Sets the value of the experimentIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setExperimentIds(ArrayOfNullableOflong value) { - this.experimentIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddKeywordsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddKeywordsRequest.java deleted file mode 100644 index 61ab78d175..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddKeywordsRequest.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Keywords" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfKeyword" minOccurs="0"/>
- *         <element name="ReturnInheritedBidStrategyTypes" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupId", - "keywords", - "returnInheritedBidStrategyTypes" -}) -@XmlRootElement(name = "AddKeywordsRequest") -public class AddKeywordsRequest { - - @XmlElement(name = "AdGroupId") - protected Long adGroupId; - @XmlElement(name = "Keywords", nillable = true) - protected ArrayOfKeyword keywords; - @XmlElement(name = "ReturnInheritedBidStrategyTypes", nillable = true) - protected Boolean returnInheritedBidStrategyTypes; - - /** - * 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 keywords property. - * - * @return - * possible object is - * {@link ArrayOfKeyword } - * - */ - public ArrayOfKeyword getKeywords() { - return keywords; - } - - /** - * Sets the value of the keywords property. - * - * @param value - * allowed object is - * {@link ArrayOfKeyword } - * - */ - public void setKeywords(ArrayOfKeyword value) { - this.keywords = value; - } - - /** - * Gets the value of the returnInheritedBidStrategyTypes property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean getReturnInheritedBidStrategyTypes() { - return returnInheritedBidStrategyTypes; - } - - /** - * Sets the value of the returnInheritedBidStrategyTypes property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setReturnInheritedBidStrategyTypes(Boolean value) { - this.returnInheritedBidStrategyTypes = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddKeywordsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddKeywordsResponse.java deleted file mode 100644 index fddd700c74..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddKeywordsResponse.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InheritedBidStrategyTypes" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="KeywordIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "inheritedBidStrategyTypes", - "keywordIds", - "partialErrors" -}) -@XmlRootElement(name = "AddKeywordsResponse") -public class AddKeywordsResponse { - - @XmlElement(name = "InheritedBidStrategyTypes", nillable = true) - protected ArrayOfstring inheritedBidStrategyTypes; - @XmlElement(name = "KeywordIds", nillable = true) - protected ArrayOfNullableOflong keywordIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the inheritedBidStrategyTypes property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getInheritedBidStrategyTypes() { - return inheritedBidStrategyTypes; - } - - /** - * Sets the value of the inheritedBidStrategyTypes property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setInheritedBidStrategyTypes(ArrayOfstring value) { - this.inheritedBidStrategyTypes = value; - } - - /** - * Gets the value of the keywordIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getKeywordIds() { - return keywordIds; - } - - /** - * Sets the value of the keywordIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setKeywordIds(ArrayOfNullableOflong value) { - this.keywordIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddLabelsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddLabelsRequest.java deleted file mode 100644 index 65e4667545..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddLabelsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Labels" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfLabel" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "labels" -}) -@XmlRootElement(name = "AddLabelsRequest") -public class AddLabelsRequest { - - @XmlElement(name = "Labels", nillable = true) - protected ArrayOfLabel labels; - - /** - * Gets the value of the labels property. - * - * @return - * possible object is - * {@link ArrayOfLabel } - * - */ - public ArrayOfLabel getLabels() { - return labels; - } - - /** - * Sets the value of the labels property. - * - * @param value - * allowed object is - * {@link ArrayOfLabel } - * - */ - public void setLabels(ArrayOfLabel value) { - this.labels = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddLabelsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddLabelsResponse.java deleted file mode 100644 index 85bb0a031a..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddLabelsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LabelIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "labelIds", - "partialErrors" -}) -@XmlRootElement(name = "AddLabelsResponse") -public class AddLabelsResponse { - - @XmlElement(name = "LabelIds", nillable = true) - protected ArrayOfNullableOflong labelIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the labelIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getLabelIds() { - return labelIds; - } - - /** - * Sets the value of the labelIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setLabelIds(ArrayOfNullableOflong value) { - this.labelIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddListItemsToSharedListRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddListItemsToSharedListRequest.java deleted file mode 100644 index 252421df2b..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddListItemsToSharedListRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ListItems" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfSharedListItem" minOccurs="0"/>
- *         <element name="SharedList" type="{https://bingads.microsoft.com/CampaignManagement/v12}SharedList" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "listItems", - "sharedList" -}) -@XmlRootElement(name = "AddListItemsToSharedListRequest") -public class AddListItemsToSharedListRequest { - - @XmlElement(name = "ListItems", nillable = true) - protected ArrayOfSharedListItem listItems; - @XmlElement(name = "SharedList", nillable = true) - protected SharedList sharedList; - - /** - * Gets the value of the listItems property. - * - * @return - * possible object is - * {@link ArrayOfSharedListItem } - * - */ - public ArrayOfSharedListItem getListItems() { - return listItems; - } - - /** - * Sets the value of the listItems property. - * - * @param value - * allowed object is - * {@link ArrayOfSharedListItem } - * - */ - public void setListItems(ArrayOfSharedListItem value) { - this.listItems = value; - } - - /** - * Gets the value of the sharedList property. - * - * @return - * possible object is - * {@link SharedList } - * - */ - public SharedList getSharedList() { - return sharedList; - } - - /** - * Sets the value of the sharedList property. - * - * @param value - * allowed object is - * {@link SharedList } - * - */ - public void setSharedList(SharedList value) { - this.sharedList = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddListItemsToSharedListResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddListItemsToSharedListResponse.java deleted file mode 100644 index 07e5103564..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddListItemsToSharedListResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ListItemIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "listItemIds", - "partialErrors" -}) -@XmlRootElement(name = "AddListItemsToSharedListResponse") -public class AddListItemsToSharedListResponse { - - @XmlElement(name = "ListItemIds", nillable = true) - protected ArrayOflong listItemIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the listItemIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getListItemIds() { - return listItemIds; - } - - /** - * Sets the value of the listItemIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setListItemIds(ArrayOflong value) { - this.listItemIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddMediaRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddMediaRequest.java deleted file mode 100644 index 12917847af..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddMediaRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="Media" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfMedia" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "accountId", - "media" -}) -@XmlRootElement(name = "AddMediaRequest") -public class AddMediaRequest { - - @XmlElement(name = "AccountId") - protected Long accountId; - @XmlElement(name = "Media", nillable = true) - protected ArrayOfMedia media; - - /** - * Gets the value of the accountId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAccountId(Long value) { - this.accountId = value; - } - - /** - * Gets the value of the media property. - * - * @return - * possible object is - * {@link ArrayOfMedia } - * - */ - public ArrayOfMedia getMedia() { - return media; - } - - /** - * Sets the value of the media property. - * - * @param value - * allowed object is - * {@link ArrayOfMedia } - * - */ - public void setMedia(ArrayOfMedia value) { - this.media = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddMediaResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddMediaResponse.java deleted file mode 100644 index 5d574a2a8e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddMediaResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="MediaIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "mediaIds" -}) -@XmlRootElement(name = "AddMediaResponse") -public class AddMediaResponse { - - @XmlElement(name = "MediaIds", nillable = true) - protected ArrayOflong mediaIds; - - /** - * Gets the value of the mediaIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getMediaIds() { - return mediaIds; - } - - /** - * Sets the value of the mediaIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setMediaIds(ArrayOflong value) { - this.mediaIds = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddNegativeKeywordsToEntitiesRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddNegativeKeywordsToEntitiesRequest.java deleted file mode 100644 index c6ac0830b5..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddNegativeKeywordsToEntitiesRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EntityNegativeKeywords" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfEntityNegativeKeyword" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "entityNegativeKeywords" -}) -@XmlRootElement(name = "AddNegativeKeywordsToEntitiesRequest") -public class AddNegativeKeywordsToEntitiesRequest { - - @XmlElement(name = "EntityNegativeKeywords", nillable = true) - protected ArrayOfEntityNegativeKeyword entityNegativeKeywords; - - /** - * Gets the value of the entityNegativeKeywords property. - * - * @return - * possible object is - * {@link ArrayOfEntityNegativeKeyword } - * - */ - public ArrayOfEntityNegativeKeyword getEntityNegativeKeywords() { - return entityNegativeKeywords; - } - - /** - * Sets the value of the entityNegativeKeywords property. - * - * @param value - * allowed object is - * {@link ArrayOfEntityNegativeKeyword } - * - */ - public void setEntityNegativeKeywords(ArrayOfEntityNegativeKeyword value) { - this.entityNegativeKeywords = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddNegativeKeywordsToEntitiesResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddNegativeKeywordsToEntitiesResponse.java deleted file mode 100644 index 5f4d9cf7d1..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddNegativeKeywordsToEntitiesResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NegativeKeywordIds" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfIdCollection" minOccurs="0"/>
- *         <element name="NestedPartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchErrorCollection" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "negativeKeywordIds", - "nestedPartialErrors" -}) -@XmlRootElement(name = "AddNegativeKeywordsToEntitiesResponse") -public class AddNegativeKeywordsToEntitiesResponse { - - @XmlElement(name = "NegativeKeywordIds", nillable = true) - protected ArrayOfIdCollection negativeKeywordIds; - @XmlElement(name = "NestedPartialErrors", nillable = true) - protected ArrayOfBatchErrorCollection nestedPartialErrors; - - /** - * Gets the value of the negativeKeywordIds property. - * - * @return - * possible object is - * {@link ArrayOfIdCollection } - * - */ - public ArrayOfIdCollection getNegativeKeywordIds() { - return negativeKeywordIds; - } - - /** - * Sets the value of the negativeKeywordIds property. - * - * @param value - * allowed object is - * {@link ArrayOfIdCollection } - * - */ - public void setNegativeKeywordIds(ArrayOfIdCollection value) { - this.negativeKeywordIds = value; - } - - /** - * Gets the value of the nestedPartialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public ArrayOfBatchErrorCollection getNestedPartialErrors() { - return nestedPartialErrors; - } - - /** - * Sets the value of the nestedPartialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchErrorCollection } - * - */ - public void setNestedPartialErrors(ArrayOfBatchErrorCollection value) { - this.nestedPartialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddSharedEntityRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddSharedEntityRequest.java deleted file mode 100644 index 821bfb125d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddSharedEntityRequest.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SharedEntity" type="{https://bingads.microsoft.com/CampaignManagement/v12}SharedEntity" minOccurs="0"/>
- *         <element name="ListItems" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfSharedListItem" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "sharedEntity", - "listItems" -}) -@XmlRootElement(name = "AddSharedEntityRequest") -public class AddSharedEntityRequest { - - @XmlElement(name = "SharedEntity", nillable = true) - protected SharedEntity sharedEntity; - @XmlElement(name = "ListItems", nillable = true) - protected ArrayOfSharedListItem listItems; - - /** - * Gets the value of the sharedEntity property. - * - * @return - * possible object is - * {@link SharedEntity } - * - */ - public SharedEntity getSharedEntity() { - return sharedEntity; - } - - /** - * Sets the value of the sharedEntity property. - * - * @param value - * allowed object is - * {@link SharedEntity } - * - */ - public void setSharedEntity(SharedEntity value) { - this.sharedEntity = value; - } - - /** - * Gets the value of the listItems property. - * - * @return - * possible object is - * {@link ArrayOfSharedListItem } - * - */ - public ArrayOfSharedListItem getListItems() { - return listItems; - } - - /** - * Sets the value of the listItems property. - * - * @param value - * allowed object is - * {@link ArrayOfSharedListItem } - * - */ - public void setListItems(ArrayOfSharedListItem value) { - this.listItems = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddSharedEntityResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddSharedEntityResponse.java deleted file mode 100644 index e5907938aa..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddSharedEntityResponse.java +++ /dev/null @@ -1,120 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ListItemIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *         <element name="SharedEntityId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "listItemIds", - "partialErrors", - "sharedEntityId" -}) -@XmlRootElement(name = "AddSharedEntityResponse") -public class AddSharedEntityResponse { - - @XmlElement(name = "ListItemIds", nillable = true) - protected ArrayOflong listItemIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - @XmlElement(name = "SharedEntityId") - protected Long sharedEntityId; - - /** - * Gets the value of the listItemIds property. - * - * @return - * possible object is - * {@link ArrayOflong } - * - */ - public ArrayOflong getListItemIds() { - return listItemIds; - } - - /** - * Sets the value of the listItemIds property. - * - * @param value - * allowed object is - * {@link ArrayOflong } - * - */ - public void setListItemIds(ArrayOflong value) { - this.listItemIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - - /** - * Gets the value of the sharedEntityId property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getSharedEntityId() { - return sharedEntityId; - } - - /** - * Sets the value of the sharedEntityId property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setSharedEntityId(Long value) { - this.sharedEntityId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddUetTagsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddUetTagsRequest.java deleted file mode 100644 index 88129dd90f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddUetTagsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UetTags" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfUetTag" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "uetTags" -}) -@XmlRootElement(name = "AddUetTagsRequest") -public class AddUetTagsRequest { - - @XmlElement(name = "UetTags", nillable = true) - protected ArrayOfUetTag uetTags; - - /** - * Gets the value of the uetTags property. - * - * @return - * possible object is - * {@link ArrayOfUetTag } - * - */ - public ArrayOfUetTag getUetTags() { - return uetTags; - } - - /** - * Sets the value of the uetTags property. - * - * @param value - * allowed object is - * {@link ArrayOfUetTag } - * - */ - public void setUetTags(ArrayOfUetTag value) { - this.uetTags = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddUetTagsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AddUetTagsResponse.java deleted file mode 100644 index 4d80488164..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AddUetTagsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UetTags" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfUetTag" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "uetTags", - "partialErrors" -}) -@XmlRootElement(name = "AddUetTagsResponse") -public class AddUetTagsResponse { - - @XmlElement(name = "UetTags", nillable = true) - protected ArrayOfUetTag uetTags; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the uetTags property. - * - * @return - * possible object is - * {@link ArrayOfUetTag } - * - */ - public ArrayOfUetTag getUetTags() { - return uetTags; - } - - /** - * Sets the value of the uetTags property. - * - * @param value - * allowed object is - * {@link ArrayOfUetTag } - * - */ - public void setUetTags(ArrayOfUetTag value) { - this.uetTags = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/Address.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/Address.java deleted file mode 100644 index 60aff4f4b1..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/Address.java +++ /dev/null @@ -1,230 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Address complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Address">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CityName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="CountryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ProvinceCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ProvinceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="StreetAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="StreetAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Address", propOrder = { - "cityName", - "countryCode", - "postalCode", - "provinceCode", - "provinceName", - "streetAddress", - "streetAddress2" -}) -public class Address { - - @XmlElement(name = "CityName", nillable = true) - protected String cityName; - @XmlElement(name = "CountryCode", nillable = true) - protected String countryCode; - @XmlElement(name = "PostalCode", nillable = true) - protected String postalCode; - @XmlElement(name = "ProvinceCode", nillable = true) - protected String provinceCode; - @XmlElement(name = "ProvinceName", nillable = true) - protected String provinceName; - @XmlElement(name = "StreetAddress", nillable = true) - protected String streetAddress; - @XmlElement(name = "StreetAddress2", nillable = true) - protected String streetAddress2; - - /** - * Gets the value of the cityName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityName() { - return cityName; - } - - /** - * Sets the value of the cityName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityName(String value) { - this.cityName = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the provinceCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinceCode() { - return provinceCode; - } - - /** - * Sets the value of the provinceCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinceCode(String value) { - this.provinceCode = value; - } - - /** - * Gets the value of the provinceName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinceName() { - return provinceName; - } - - /** - * Sets the value of the provinceName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinceName(String value) { - this.provinceName = value; - } - - /** - * Gets the value of the streetAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetAddress() { - return streetAddress; - } - - /** - * Sets the value of the streetAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetAddress(String value) { - this.streetAddress = value; - } - - /** - * Gets the value of the streetAddress2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetAddress2() { - return streetAddress2; - } - - /** - * Sets the value of the streetAddress2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetAddress2(String value) { - this.streetAddress2 = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AgeCriterion.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AgeCriterion.java deleted file mode 100644 index 273c9132c2..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AgeCriterion.java +++ /dev/null @@ -1,66 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AgeCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AgeCriterion">
- *   <complexContent>
- *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v12}Criterion">
- *       <sequence>
- *         <element name="AgeRange" type="{https://bingads.microsoft.com/CampaignManagement/v12}AgeRange" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AgeCriterion", propOrder = { - "ageRange" -}) -public class AgeCriterion - extends Criterion -{ - - @XmlElement(name = "AgeRange", nillable = true) - @XmlSchemaType(name = "string") - protected AgeRange ageRange; - - /** - * Gets the value of the ageRange property. - * - * @return - * possible object is - * {@link AgeRange } - * - */ - public AgeRange getAgeRange() { - return ageRange; - } - - /** - * Sets the value of the ageRange property. - * - * @param value - * allowed object is - * {@link AgeRange } - * - */ - public void setAgeRange(AgeRange value) { - this.ageRange = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AgeRange.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AgeRange.java deleted file mode 100644 index 5482d3aa8f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AgeRange.java +++ /dev/null @@ -1,63 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AgeRange. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AgeRange">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Unknown"/>
- *     <enumeration value="EighteenToTwentyFour"/>
- *     <enumeration value="TwentyFiveToThirtyFour"/>
- *     <enumeration value="ThirtyFiveToFourtyNine"/>
- *     <enumeration value="FiftyToSixtyFour"/>
- *     <enumeration value="SixtyFiveAndAbove"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AgeRange") -@XmlEnum -public enum AgeRange { - - @XmlEnumValue("Unknown") - UNKNOWN("Unknown"), - @XmlEnumValue("EighteenToTwentyFour") - EIGHTEEN_TO_TWENTY_FOUR("EighteenToTwentyFour"), - @XmlEnumValue("TwentyFiveToThirtyFour") - TWENTY_FIVE_TO_THIRTY_FOUR("TwentyFiveToThirtyFour"), - @XmlEnumValue("ThirtyFiveToFourtyNine") - THIRTY_FIVE_TO_FOURTY_NINE("ThirtyFiveToFourtyNine"), - @XmlEnumValue("FiftyToSixtyFour") - FIFTY_TO_SIXTY_FOUR("FiftyToSixtyFour"), - @XmlEnumValue("SixtyFiveAndAbove") - SIXTY_FIVE_AND_ABOVE("SixtyFiveAndAbove"); - private final String value; - - AgeRange(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AgeRange fromValue(String v) { - for (AgeRange c: AgeRange.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApiFaultDetail.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApiFaultDetail.java deleted file mode 100644 index b94c3463a6..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApiFaultDetail.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ApiFaultDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ApiFaultDetail">
- *   <complexContent>
- *     <extension base="{https://adapi.microsoft.com}ApplicationFault">
- *       <sequence>
- *         <element name="BatchErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *         <element name="OperationErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfOperationError" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ApiFaultDetail", propOrder = { - "batchErrors", - "operationErrors" -}) -public class ApiFaultDetail - extends ApplicationFault -{ - - @XmlElement(name = "BatchErrors", nillable = true) - protected ArrayOfBatchError batchErrors; - @XmlElement(name = "OperationErrors", nillable = true) - protected ArrayOfOperationError operationErrors; - - /** - * Gets the value of the batchErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getBatchErrors() { - return batchErrors; - } - - /** - * Sets the value of the batchErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setBatchErrors(ArrayOfBatchError value) { - this.batchErrors = value; - } - - /** - * Gets the value of the operationErrors property. - * - * @return - * possible object is - * {@link ArrayOfOperationError } - * - */ - public ArrayOfOperationError getOperationErrors() { - return operationErrors; - } - - /** - * Sets the value of the operationErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfOperationError } - * - */ - public void setOperationErrors(ArrayOfOperationError value) { - this.operationErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApiFaultDetail_Exception.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApiFaultDetail_Exception.java deleted file mode 100644 index 8d540b571d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApiFaultDetail_Exception.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.ws.WebFault; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.1 - * - */ -@WebFault(name = "ApiFaultDetail", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v12") -public class ApiFaultDetail_Exception - extends Exception -{ - - /** - * Java type that goes as soapenv:Fault detail element. - * - */ - private ApiFaultDetail faultInfo; - - /** - * - * @param faultInfo - * @param message - */ - public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo) { - super(message); - this.faultInfo = faultInfo; - } - - /** - * - * @param faultInfo - * @param cause - * @param message - */ - public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo, Throwable cause) { - super(message, cause); - this.faultInfo = faultInfo; - } - - /** - * - * @return - * returns fault bean: com.microsoft.bingads.v12.campaignmanagement.ApiFaultDetail - */ - public ApiFaultDetail getFaultInfo() { - return faultInfo; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppAdExtension.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppAdExtension.java deleted file mode 100644 index 5c7f23a063..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppAdExtension.java +++ /dev/null @@ -1,316 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AppAdExtension complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AppAdExtension">
- *   <complexContent>
- *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtension">
- *       <sequence>
- *         <element name="AppPlatform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="AppStoreId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="DestinationUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="DisplayText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FinalAppUrls" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAppUrl" minOccurs="0"/>
- *         <element name="FinalMobileUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="FinalUrlSuffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FinalUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
- *         <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="UrlCustomParameters" type="{https://bingads.microsoft.com/CampaignManagement/v12}CustomParameters" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AppAdExtension", propOrder = { - "appPlatform", - "appStoreId", - "destinationUrl", - "displayText", - "finalAppUrls", - "finalMobileUrls", - "finalUrlSuffix", - "finalUrls", - "trackingUrlTemplate", - "urlCustomParameters" -}) -public class AppAdExtension - extends AdExtension -{ - - @XmlElement(name = "AppPlatform", nillable = true) - protected String appPlatform; - @XmlElement(name = "AppStoreId", nillable = true) - protected String appStoreId; - @XmlElement(name = "DestinationUrl", nillable = true) - protected String destinationUrl; - @XmlElement(name = "DisplayText", nillable = true) - protected String displayText; - @XmlElement(name = "FinalAppUrls", nillable = true) - protected ArrayOfAppUrl finalAppUrls; - @XmlElement(name = "FinalMobileUrls", nillable = true) - protected ArrayOfstring finalMobileUrls; - @XmlElement(name = "FinalUrlSuffix", nillable = true) - protected String finalUrlSuffix; - @XmlElement(name = "FinalUrls", nillable = true) - protected ArrayOfstring finalUrls; - @XmlElement(name = "TrackingUrlTemplate", nillable = true) - protected String trackingUrlTemplate; - @XmlElement(name = "UrlCustomParameters", nillable = true) - protected CustomParameters urlCustomParameters; - - /** - * Gets the value of the appPlatform property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAppPlatform() { - return appPlatform; - } - - /** - * Sets the value of the appPlatform property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAppPlatform(String value) { - this.appPlatform = value; - } - - /** - * Gets the value of the appStoreId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAppStoreId() { - return appStoreId; - } - - /** - * Sets the value of the appStoreId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAppStoreId(String value) { - this.appStoreId = value; - } - - /** - * Gets the value of the destinationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDestinationUrl() { - return destinationUrl; - } - - /** - * Sets the value of the destinationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDestinationUrl(String value) { - this.destinationUrl = value; - } - - /** - * Gets the value of the displayText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDisplayText() { - return displayText; - } - - /** - * Sets the value of the displayText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDisplayText(String value) { - this.displayText = value; - } - - /** - * Gets the value of the finalAppUrls property. - * - * @return - * possible object is - * {@link ArrayOfAppUrl } - * - */ - public ArrayOfAppUrl getFinalAppUrls() { - return finalAppUrls; - } - - /** - * Sets the value of the finalAppUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfAppUrl } - * - */ - public void setFinalAppUrls(ArrayOfAppUrl value) { - this.finalAppUrls = value; - } - - /** - * Gets the value of the finalMobileUrls property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getFinalMobileUrls() { - return finalMobileUrls; - } - - /** - * Sets the value of the finalMobileUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setFinalMobileUrls(ArrayOfstring value) { - this.finalMobileUrls = value; - } - - /** - * Gets the value of the finalUrlSuffix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinalUrlSuffix() { - return finalUrlSuffix; - } - - /** - * Sets the value of the finalUrlSuffix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinalUrlSuffix(String value) { - this.finalUrlSuffix = value; - } - - /** - * Gets the value of the finalUrls property. - * - * @return - * possible object is - * {@link ArrayOfstring } - * - */ - public ArrayOfstring getFinalUrls() { - return finalUrls; - } - - /** - * Sets the value of the finalUrls property. - * - * @param value - * allowed object is - * {@link ArrayOfstring } - * - */ - public void setFinalUrls(ArrayOfstring value) { - this.finalUrls = value; - } - - /** - * Gets the value of the trackingUrlTemplate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingUrlTemplate() { - return trackingUrlTemplate; - } - - /** - * Sets the value of the trackingUrlTemplate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingUrlTemplate(String value) { - this.trackingUrlTemplate = value; - } - - /** - * Gets the value of the urlCustomParameters property. - * - * @return - * possible object is - * {@link CustomParameters } - * - */ - public CustomParameters getUrlCustomParameters() { - return urlCustomParameters; - } - - /** - * Sets the value of the urlCustomParameters property. - * - * @param value - * allowed object is - * {@link CustomParameters } - * - */ - public void setUrlCustomParameters(CustomParameters value) { - this.urlCustomParameters = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppInstallAd.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppInstallAd.java deleted file mode 100644 index 9603dcbbe4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppInstallAd.java +++ /dev/null @@ -1,148 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AppInstallAd complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AppInstallAd">
- *   <complexContent>
- *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v12}Ad">
- *       <sequence>
- *         <element name="AppPlatform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="AppStoreId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AppInstallAd", propOrder = { - "appPlatform", - "appStoreId", - "text", - "title" -}) -public class AppInstallAd - extends Ad -{ - - @XmlElement(name = "AppPlatform", nillable = true) - protected String appPlatform; - @XmlElement(name = "AppStoreId", nillable = true) - protected String appStoreId; - @XmlElement(name = "Text", nillable = true) - protected String text; - @XmlElement(name = "Title", nillable = true) - protected String title; - - /** - * Gets the value of the appPlatform property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAppPlatform() { - return appPlatform; - } - - /** - * Sets the value of the appPlatform property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAppPlatform(String value) { - this.appPlatform = value; - } - - /** - * Gets the value of the appStoreId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAppStoreId() { - return appStoreId; - } - - /** - * Sets the value of the appStoreId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAppStoreId(String value) { - this.appStoreId = 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 title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppInstallGoal.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppInstallGoal.java deleted file mode 100644 index b4e937783d..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppInstallGoal.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AppInstallGoal complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AppInstallGoal">
- *   <complexContent>
- *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v12}ConversionGoal">
- *       <sequence>
- *         <element name="AppPlatform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="AppStoreId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AppInstallGoal", propOrder = { - "appPlatform", - "appStoreId" -}) -public class AppInstallGoal - extends ConversionGoal -{ - - @XmlElement(name = "AppPlatform", nillable = true) - protected String appPlatform; - @XmlElement(name = "AppStoreId", nillable = true) - protected String appStoreId; - - /** - * Gets the value of the appPlatform property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAppPlatform() { - return appPlatform; - } - - /** - * Sets the value of the appPlatform property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAppPlatform(String value) { - this.appPlatform = value; - } - - /** - * Gets the value of the appStoreId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAppStoreId() { - return appStoreId; - } - - /** - * Sets the value of the appStoreId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAppStoreId(String value) { - this.appStoreId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppUrl.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppUrl.java deleted file mode 100644 index 683d58076e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppUrl.java +++ /dev/null @@ -1,90 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AppUrl complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AppUrl">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OsType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AppUrl", propOrder = { - "osType", - "url" -}) -public class AppUrl { - - @XmlElement(name = "OsType", nillable = true) - protected String osType; - @XmlElement(name = "Url", nillable = true) - protected String url; - - /** - * Gets the value of the osType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOsType() { - return osType; - } - - /** - * Sets the value of the osType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOsType(String value) { - this.osType = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealEditorialRejectionsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealEditorialRejectionsRequest.java deleted file mode 100644 index 97a7e60f99..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealEditorialRejectionsRequest.java +++ /dev/null @@ -1,122 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EntityIdToParentIdAssociations" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfEntityIdToParentIdAssociation" minOccurs="0"/>
- *         <element name="EntityType" type="{https://bingads.microsoft.com/CampaignManagement/v12}EntityType" minOccurs="0"/>
- *         <element name="JustificationText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "entityIdToParentIdAssociations", - "entityType", - "justificationText" -}) -@XmlRootElement(name = "AppealEditorialRejectionsRequest") -public class AppealEditorialRejectionsRequest { - - @XmlElement(name = "EntityIdToParentIdAssociations", nillable = true) - protected ArrayOfEntityIdToParentIdAssociation entityIdToParentIdAssociations; - @XmlElement(name = "EntityType") - @XmlSchemaType(name = "string") - protected EntityType entityType; - @XmlElement(name = "JustificationText", nillable = true) - protected String justificationText; - - /** - * Gets the value of the entityIdToParentIdAssociations property. - * - * @return - * possible object is - * {@link ArrayOfEntityIdToParentIdAssociation } - * - */ - public ArrayOfEntityIdToParentIdAssociation getEntityIdToParentIdAssociations() { - return entityIdToParentIdAssociations; - } - - /** - * Sets the value of the entityIdToParentIdAssociations property. - * - * @param value - * allowed object is - * {@link ArrayOfEntityIdToParentIdAssociation } - * - */ - public void setEntityIdToParentIdAssociations(ArrayOfEntityIdToParentIdAssociation value) { - this.entityIdToParentIdAssociations = value; - } - - /** - * Gets the value of the entityType property. - * - * @return - * possible object is - * {@link EntityType } - * - */ - public EntityType getEntityType() { - return entityType; - } - - /** - * Sets the value of the entityType property. - * - * @param value - * allowed object is - * {@link EntityType } - * - */ - public void setEntityType(EntityType value) { - this.entityType = value; - } - - /** - * Gets the value of the justificationText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getJustificationText() { - return justificationText; - } - - /** - * Sets the value of the justificationText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setJustificationText(String value) { - this.justificationText = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealEditorialRejectionsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealEditorialRejectionsResponse.java deleted file mode 100644 index c8989081a2..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealEditorialRejectionsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "partialErrors" -}) -@XmlRootElement(name = "AppealEditorialRejectionsResponse") -public class AppealEditorialRejectionsResponse { - - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealStatus.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealStatus.java deleted file mode 100644 index 3f6d812e3c..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/AppealStatus.java +++ /dev/null @@ -1,54 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AppealStatus. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AppealStatus">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Appealable"/>
- *     <enumeration value="AppealPending"/>
- *     <enumeration value="NotAppealable"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "AppealStatus") -@XmlEnum -public enum AppealStatus { - - @XmlEnumValue("Appealable") - APPEALABLE("Appealable"), - @XmlEnumValue("AppealPending") - APPEAL_PENDING("AppealPending"), - @XmlEnumValue("NotAppealable") - NOT_APPEALABLE("NotAppealable"); - private final String value; - - AppealStatus(String v) { - value = v; - } - - public String value() { - return value; - } - - public static AppealStatus fromValue(String v) { - for (AppealStatus c: AppealStatus.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplicationFault.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplicationFault.java deleted file mode 100644 index 172d67559f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplicationFault.java +++ /dev/null @@ -1,68 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ApplicationFault complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ApplicationFault">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="TrackingId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ApplicationFault", namespace = "https://adapi.microsoft.com", propOrder = { - "trackingId" -}) -@XmlSeeAlso({ - EditorialApiFaultDetail.class, - ApiFaultDetail.class, - AdApiFaultDetail.class -}) -public class ApplicationFault { - - @XmlElement(name = "TrackingId", nillable = true) - protected String trackingId; - - /** - * Gets the value of the trackingId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrackingId() { - return trackingId; - } - - /** - * Sets the value of the trackingId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTrackingId(String value) { - this.trackingId = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyOfflineConversionsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyOfflineConversionsRequest.java deleted file mode 100644 index edbc3669ff..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyOfflineConversionsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="OfflineConversions" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfOfflineConversion" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "offlineConversions" -}) -@XmlRootElement(name = "ApplyOfflineConversionsRequest") -public class ApplyOfflineConversionsRequest { - - @XmlElement(name = "OfflineConversions", nillable = true) - protected ArrayOfOfflineConversion offlineConversions; - - /** - * Gets the value of the offlineConversions property. - * - * @return - * possible object is - * {@link ArrayOfOfflineConversion } - * - */ - public ArrayOfOfflineConversion getOfflineConversions() { - return offlineConversions; - } - - /** - * Sets the value of the offlineConversions property. - * - * @param value - * allowed object is - * {@link ArrayOfOfflineConversion } - * - */ - public void setOfflineConversions(ArrayOfOfflineConversion value) { - this.offlineConversions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyOfflineConversionsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyOfflineConversionsResponse.java deleted file mode 100644 index 64dad112c8..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyOfflineConversionsResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "partialErrors" -}) -@XmlRootElement(name = "ApplyOfflineConversionsResponse") -public class ApplyOfflineConversionsResponse { - - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyProductPartitionActionsRequest.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyProductPartitionActionsRequest.java deleted file mode 100644 index fed9911ecf..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyProductPartitionActionsRequest.java +++ /dev/null @@ -1,64 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CriterionActions" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfAdGroupCriterionAction" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "criterionActions" -}) -@XmlRootElement(name = "ApplyProductPartitionActionsRequest") -public class ApplyProductPartitionActionsRequest { - - @XmlElement(name = "CriterionActions", nillable = true) - protected ArrayOfAdGroupCriterionAction criterionActions; - - /** - * Gets the value of the criterionActions property. - * - * @return - * possible object is - * {@link ArrayOfAdGroupCriterionAction } - * - */ - public ArrayOfAdGroupCriterionAction getCriterionActions() { - return criterionActions; - } - - /** - * Sets the value of the criterionActions property. - * - * @param value - * allowed object is - * {@link ArrayOfAdGroupCriterionAction } - * - */ - public void setCriterionActions(ArrayOfAdGroupCriterionAction value) { - this.criterionActions = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyProductPartitionActionsResponse.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyProductPartitionActionsResponse.java deleted file mode 100644 index b6c2b4fa27..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ApplyProductPartitionActionsResponse.java +++ /dev/null @@ -1,92 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupCriterionIds" type="{http://schemas.datacontract.org/2004/07/System}ArrayOfNullableOflong" minOccurs="0"/>
- *         <element name="PartialErrors" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfBatchError" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "adGroupCriterionIds", - "partialErrors" -}) -@XmlRootElement(name = "ApplyProductPartitionActionsResponse") -public class ApplyProductPartitionActionsResponse { - - @XmlElement(name = "AdGroupCriterionIds", nillable = true) - protected ArrayOfNullableOflong adGroupCriterionIds; - @XmlElement(name = "PartialErrors", nillable = true) - protected ArrayOfBatchError partialErrors; - - /** - * Gets the value of the adGroupCriterionIds property. - * - * @return - * possible object is - * {@link ArrayOfNullableOflong } - * - */ - public ArrayOfNullableOflong getAdGroupCriterionIds() { - return adGroupCriterionIds; - } - - /** - * Sets the value of the adGroupCriterionIds property. - * - * @param value - * allowed object is - * {@link ArrayOfNullableOflong } - * - */ - public void setAdGroupCriterionIds(ArrayOfNullableOflong value) { - this.adGroupCriterionIds = value; - } - - /** - * Gets the value of the partialErrors property. - * - * @return - * possible object is - * {@link ArrayOfBatchError } - * - */ - public ArrayOfBatchError getPartialErrors() { - return partialErrors; - } - - /** - * Sets the value of the partialErrors property. - * - * @param value - * allowed object is - * {@link ArrayOfBatchError } - * - */ - public void setPartialErrors(ArrayOfBatchError value) { - this.partialErrors = value; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountMigrationStatusesInfo.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountMigrationStatusesInfo.java deleted file mode 100644 index 29ef782bdb..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountMigrationStatusesInfo.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAccountMigrationStatusesInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAccountMigrationStatusesInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountMigrationStatusesInfo" type="{https://bingads.microsoft.com/CampaignManagement/v12}AccountMigrationStatusesInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAccountMigrationStatusesInfo", propOrder = { - "accountMigrationStatusesInfos" -}) -public class ArrayOfAccountMigrationStatusesInfo { - - @XmlElement(name = "AccountMigrationStatusesInfo", nillable = true) - protected List accountMigrationStatusesInfos; - - /** - * Gets the value of the accountMigrationStatusesInfos 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 JAXB object. - * This is why there is not a set method for the accountMigrationStatusesInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountMigrationStatusesInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountMigrationStatusesInfo } - * - * - */ - public List getAccountMigrationStatusesInfos() { - if (accountMigrationStatusesInfos == null) { - accountMigrationStatusesInfos = new ArrayList(); - } - return this.accountMigrationStatusesInfos; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountProperty.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountProperty.java deleted file mode 100644 index 40f95d5268..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountProperty.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAccountProperty complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAccountProperty">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountProperty" type="{https://bingads.microsoft.com/CampaignManagement/v12}AccountProperty" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAccountProperty", propOrder = { - "accountProperties" -}) -public class ArrayOfAccountProperty { - - @XmlElement(name = "AccountProperty", nillable = true) - protected List accountProperties; - - /** - * Gets the value of the accountProperties 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 JAXB object. - * This is why there is not a set method for the accountProperties property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountProperties().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountProperty } - * - * - */ - public List getAccountProperties() { - if (accountProperties == null) { - accountProperties = new ArrayList(); - } - return this.accountProperties; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountPropertyName.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountPropertyName.java deleted file mode 100644 index b0a53c102f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAccountPropertyName.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAccountPropertyName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAccountPropertyName">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AccountPropertyName" type="{https://bingads.microsoft.com/CampaignManagement/v12}AccountPropertyName" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAccountPropertyName", propOrder = { - "accountPropertyNames" -}) -public class ArrayOfAccountPropertyName { - - @XmlElement(name = "AccountPropertyName") - @XmlSchemaType(name = "string") - protected List accountPropertyNames; - - /** - * Gets the value of the accountPropertyNames 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 JAXB object. - * This is why there is not a set method for the accountPropertyNames property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountPropertyNames().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountPropertyName } - * - * - */ - public List getAccountPropertyNames() { - if (accountPropertyNames == null) { - accountPropertyNames = new ArrayList(); - } - return this.accountPropertyNames; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAd.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAd.java deleted file mode 100644 index ab5e563b03..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAd.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAd complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAd">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Ad" type="{https://bingads.microsoft.com/CampaignManagement/v12}Ad" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAd", propOrder = { - "ads" -}) -public class ArrayOfAd { - - @XmlElement(name = "Ad", nillable = true) - protected List ads; - - /** - * Gets the value of the ads 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 JAXB object. - * This is why there is not a set method for the ads property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAds().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Ad } - * - * - */ - public List getAds() { - if (ads == null) { - ads = new ArrayList(); - } - return this.ads; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdApiError.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdApiError.java deleted file mode 100644 index b254b026f0..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdApiError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdApiError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdApiError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdApiError" type="{https://adapi.microsoft.com}AdApiError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdApiError", namespace = "https://adapi.microsoft.com", propOrder = { - "adApiErrors" -}) -public class ArrayOfAdApiError { - - @XmlElement(name = "AdApiError", nillable = true) - protected List adApiErrors; - - /** - * Gets the value of the adApiErrors 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 JAXB object. - * This is why there is not a set method for the adApiErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdApiErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdApiError } - * - * - */ - public List getAdApiErrors() { - if (adApiErrors == null) { - adApiErrors = new ArrayList(); - } - return this.adApiErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtension.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtension.java deleted file mode 100644 index a3c0cc086f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtension.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtension complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtension">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtension" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtension" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtension", propOrder = { - "adExtensions" -}) -public class ArrayOfAdExtension { - - @XmlElement(name = "AdExtension", nillable = true) - protected List adExtensions; - - /** - * Gets the value of the adExtensions 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 JAXB object. - * This is why there is not a set method for the adExtensions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtension } - * - * - */ - public List getAdExtensions() { - if (adExtensions == null) { - adExtensions = new ArrayList(); - } - return this.adExtensions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionAssociation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionAssociation.java deleted file mode 100644 index 8a21a3bd63..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionAssociation.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtensionAssociation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtensionAssociation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionAssociation" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionAssociation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtensionAssociation", propOrder = { - "adExtensionAssociations" -}) -public class ArrayOfAdExtensionAssociation { - - @XmlElement(name = "AdExtensionAssociation", nillable = true) - protected List adExtensionAssociations; - - /** - * Gets the value of the adExtensionAssociations 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 JAXB object. - * This is why there is not a set method for the adExtensionAssociations property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensionAssociations().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtensionAssociation } - * - * - */ - public List getAdExtensionAssociations() { - if (adExtensionAssociations == null) { - adExtensionAssociations = new ArrayList(); - } - return this.adExtensionAssociations; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionAssociationCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionAssociationCollection.java deleted file mode 100644 index 8a8e750369..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionAssociationCollection.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtensionAssociationCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtensionAssociationCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionAssociationCollection" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionAssociationCollection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtensionAssociationCollection", propOrder = { - "adExtensionAssociationCollections" -}) -public class ArrayOfAdExtensionAssociationCollection { - - @XmlElement(name = "AdExtensionAssociationCollection", nillable = true) - protected List adExtensionAssociationCollections; - - /** - * Gets the value of the adExtensionAssociationCollections 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 JAXB object. - * This is why there is not a set method for the adExtensionAssociationCollections property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensionAssociationCollections().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtensionAssociationCollection } - * - * - */ - public List getAdExtensionAssociationCollections() { - if (adExtensionAssociationCollections == null) { - adExtensionAssociationCollections = new ArrayList(); - } - return this.adExtensionAssociationCollections; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionEditorialReason.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionEditorialReason.java deleted file mode 100644 index df34cb3177..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionEditorialReason.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtensionEditorialReason complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtensionEditorialReason">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionEditorialReason" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionEditorialReason" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtensionEditorialReason", propOrder = { - "adExtensionEditorialReasons" -}) -public class ArrayOfAdExtensionEditorialReason { - - @XmlElement(name = "AdExtensionEditorialReason", nillable = true) - protected List adExtensionEditorialReasons; - - /** - * Gets the value of the adExtensionEditorialReasons 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 JAXB object. - * This is why there is not a set method for the adExtensionEditorialReasons property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensionEditorialReasons().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtensionEditorialReason } - * - * - */ - public List getAdExtensionEditorialReasons() { - if (adExtensionEditorialReasons == null) { - adExtensionEditorialReasons = new ArrayList(); - } - return this.adExtensionEditorialReasons; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionEditorialReasonCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionEditorialReasonCollection.java deleted file mode 100644 index fb1e866d7e..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionEditorialReasonCollection.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtensionEditorialReasonCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtensionEditorialReasonCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionEditorialReasonCollection" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionEditorialReasonCollection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtensionEditorialReasonCollection", propOrder = { - "adExtensionEditorialReasonCollections" -}) -public class ArrayOfAdExtensionEditorialReasonCollection { - - @XmlElement(name = "AdExtensionEditorialReasonCollection", nillable = true) - protected List adExtensionEditorialReasonCollections; - - /** - * Gets the value of the adExtensionEditorialReasonCollections 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 JAXB object. - * This is why there is not a set method for the adExtensionEditorialReasonCollections property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensionEditorialReasonCollections().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtensionEditorialReasonCollection } - * - * - */ - public List getAdExtensionEditorialReasonCollections() { - if (adExtensionEditorialReasonCollections == null) { - adExtensionEditorialReasonCollections = new ArrayList(); - } - return this.adExtensionEditorialReasonCollections; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionIdToEntityIdAssociation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionIdToEntityIdAssociation.java deleted file mode 100644 index 3f56f55991..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionIdToEntityIdAssociation.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtensionIdToEntityIdAssociation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtensionIdToEntityIdAssociation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionIdToEntityIdAssociation" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionIdToEntityIdAssociation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtensionIdToEntityIdAssociation", propOrder = { - "adExtensionIdToEntityIdAssociations" -}) -public class ArrayOfAdExtensionIdToEntityIdAssociation { - - @XmlElement(name = "AdExtensionIdToEntityIdAssociation", nillable = true) - protected List adExtensionIdToEntityIdAssociations; - - /** - * Gets the value of the adExtensionIdToEntityIdAssociations 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 JAXB object. - * This is why there is not a set method for the adExtensionIdToEntityIdAssociations property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensionIdToEntityIdAssociations().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtensionIdToEntityIdAssociation } - * - * - */ - public List getAdExtensionIdToEntityIdAssociations() { - if (adExtensionIdToEntityIdAssociations == null) { - adExtensionIdToEntityIdAssociations = new ArrayList(); - } - return this.adExtensionIdToEntityIdAssociations; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionIdentity.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionIdentity.java deleted file mode 100644 index bd470b5d49..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdExtensionIdentity.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdExtensionIdentity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdExtensionIdentity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdExtensionIdentity" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdExtensionIdentity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdExtensionIdentity", propOrder = { - "adExtensionIdentities" -}) -public class ArrayOfAdExtensionIdentity { - - @XmlElement(name = "AdExtensionIdentity", nillable = true) - protected List adExtensionIdentities; - - /** - * Gets the value of the adExtensionIdentities 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 JAXB object. - * This is why there is not a set method for the adExtensionIdentities property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdExtensionIdentities().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdExtensionIdentity } - * - * - */ - public List getAdExtensionIdentities() { - if (adExtensionIdentities == null) { - adExtensionIdentities = new ArrayList(); - } - return this.adExtensionIdentities; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroup.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroup.java deleted file mode 100644 index 230990913b..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroup.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroup">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroup" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroup" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroup", propOrder = { - "adGroups" -}) -public class ArrayOfAdGroup { - - @XmlElement(name = "AdGroup", nillable = true) - protected List adGroups; - - /** - * Gets the value of the adGroups 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 JAXB object. - * This is why there is not a set method for the adGroups property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroups().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroup } - * - * - */ - public List getAdGroups() { - if (adGroups == null) { - adGroups = new ArrayList(); - } - return this.adGroups; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupCriterion.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupCriterion.java deleted file mode 100644 index 74510f74d4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupCriterion.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupCriterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupCriterion" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupCriterion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupCriterion", propOrder = { - "adGroupCriterions" -}) -public class ArrayOfAdGroupCriterion { - - @XmlElement(name = "AdGroupCriterion", nillable = true) - protected List adGroupCriterions; - - /** - * Gets the value of the adGroupCriterions 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 JAXB object. - * This is why there is not a set method for the adGroupCriterions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupCriterions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupCriterion } - * - * - */ - public List getAdGroupCriterions() { - if (adGroupCriterions == null) { - adGroupCriterions = new ArrayList(); - } - return this.adGroupCriterions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupCriterionAction.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupCriterionAction.java deleted file mode 100644 index 3cc94fe46a..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupCriterionAction.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupCriterionAction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupCriterionAction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupCriterionAction" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupCriterionAction" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupCriterionAction", propOrder = { - "adGroupCriterionActions" -}) -public class ArrayOfAdGroupCriterionAction { - - @XmlElement(name = "AdGroupCriterionAction", nillable = true) - protected List adGroupCriterionActions; - - /** - * Gets the value of the adGroupCriterionActions 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 JAXB object. - * This is why there is not a set method for the adGroupCriterionActions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupCriterionActions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupCriterionAction } - * - * - */ - public List getAdGroupCriterionActions() { - if (adGroupCriterionActions == null) { - adGroupCriterionActions = new ArrayList(); - } - return this.adGroupCriterionActions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupNegativeSites.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupNegativeSites.java deleted file mode 100644 index 5064fec666..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdGroupNegativeSites.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdGroupNegativeSites complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdGroupNegativeSites">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdGroupNegativeSites" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdGroupNegativeSites" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdGroupNegativeSites", propOrder = { - "adGroupNegativeSites" -}) -public class ArrayOfAdGroupNegativeSites { - - @XmlElement(name = "AdGroupNegativeSites", nillable = true) - protected List adGroupNegativeSites; - - /** - * Gets the value of the adGroupNegativeSites 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 JAXB object. - * This is why there is not a set method for the adGroupNegativeSites property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdGroupNegativeSites().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdGroupNegativeSites } - * - * - */ - public List getAdGroupNegativeSites() { - if (adGroupNegativeSites == null) { - adGroupNegativeSites = new ArrayList(); - } - return this.adGroupNegativeSites; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdType.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdType.java deleted file mode 100644 index 20a5e4fa75..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAdType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAdType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAdType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AdType" type="{https://bingads.microsoft.com/CampaignManagement/v12}AdType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAdType", propOrder = { - "adTypes" -}) -public class ArrayOfAdType { - - @XmlElement(name = "AdType") - @XmlSchemaType(name = "string") - protected List adTypes; - - /** - * Gets the value of the adTypes 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 JAXB object. - * This is why there is not a set method for the adTypes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAdTypes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AdType } - * - * - */ - public List getAdTypes() { - if (adTypes == null) { - adTypes = new ArrayList(); - } - return this.adTypes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAppUrl.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAppUrl.java deleted file mode 100644 index 56fe7dfc80..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAppUrl.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAppUrl complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAppUrl">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AppUrl" type="{https://bingads.microsoft.com/CampaignManagement/v12}AppUrl" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAppUrl", propOrder = { - "appUrls" -}) -public class ArrayOfAppUrl { - - @XmlElement(name = "AppUrl", nillable = true) - protected List appUrls; - - /** - * Gets the value of the appUrls 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 JAXB object. - * This is why there is not a set method for the appUrls property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAppUrls().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AppUrl } - * - * - */ - public List getAppUrls() { - if (appUrls == null) { - appUrls = new ArrayList(); - } - return this.appUrls; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfArrayOfMediaAssociation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfArrayOfMediaAssociation.java deleted file mode 100644 index 64b8eba622..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfArrayOfMediaAssociation.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfArrayOfMediaAssociation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfArrayOfMediaAssociation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArrayOfMediaAssociation" type="{https://bingads.microsoft.com/CampaignManagement/v12}ArrayOfMediaAssociation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfArrayOfMediaAssociation", propOrder = { - "arrayOfMediaAssociations" -}) -public class ArrayOfArrayOfMediaAssociation { - - @XmlElement(name = "ArrayOfMediaAssociation", nillable = true) - protected List arrayOfMediaAssociations; - - /** - * Gets the value of the arrayOfMediaAssociations 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 JAXB object. - * This is why there is not a set method for the arrayOfMediaAssociations property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArrayOfMediaAssociations().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArrayOfMediaAssociation } - * - * - */ - public List getArrayOfMediaAssociations() { - if (arrayOfMediaAssociations == null) { - arrayOfMediaAssociations = new ArrayList(); - } - return this.arrayOfMediaAssociations; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAssetLink.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAssetLink.java deleted file mode 100644 index 34a00b32fe..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAssetLink.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAssetLink complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAssetLink">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="AssetLink" type="{https://bingads.microsoft.com/CampaignManagement/v12}AssetLink" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAssetLink", propOrder = { - "assetLinks" -}) -public class ArrayOfAssetLink { - - @XmlElement(name = "AssetLink", nillable = true) - protected List assetLinks; - - /** - * Gets the value of the assetLinks 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 JAXB object. - * This is why there is not a set method for the assetLinks property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssetLinks().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssetLink } - * - * - */ - public List getAssetLinks() { - if (assetLinks == null) { - assetLinks = new ArrayList(); - } - return this.assetLinks; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAudience.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAudience.java deleted file mode 100644 index a628405b26..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfAudience.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfAudience complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfAudience">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Audience" type="{https://bingads.microsoft.com/CampaignManagement/v12}Audience" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfAudience", propOrder = { - "audiences" -}) -public class ArrayOfAudience { - - @XmlElement(name = "Audience", nillable = true) - protected List audiences; - - /** - * Gets the value of the audiences 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 JAXB object. - * This is why there is not a set method for the audiences property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAudiences().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Audience } - * - * - */ - public List getAudiences() { - if (audiences == null) { - audiences = new ArrayList(); - } - return this.audiences; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBMCStore.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBMCStore.java deleted file mode 100644 index 65e141e8ad..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBMCStore.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBMCStore complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBMCStore">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BMCStore" type="{https://bingads.microsoft.com/CampaignManagement/v12}BMCStore" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBMCStore", propOrder = { - "bmcStores" -}) -public class ArrayOfBMCStore { - - @XmlElement(name = "BMCStore", nillable = true) - protected List bmcStores; - - /** - * Gets the value of the bmcStores 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 JAXB object. - * This is why there is not a set method for the bmcStores property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBMCStores().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BMCStore } - * - * - */ - public List getBMCStores() { - if (bmcStores == null) { - bmcStores = new ArrayList(); - } - return this.bmcStores; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBatchError.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBatchError.java deleted file mode 100644 index 9b3ca6c422..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBatchError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBatchError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBatchError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BatchError" type="{https://bingads.microsoft.com/CampaignManagement/v12}BatchError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBatchError", propOrder = { - "batchErrors" -}) -public class ArrayOfBatchError { - - @XmlElement(name = "BatchError", nillable = true) - protected List batchErrors; - - /** - * Gets the value of the batchErrors 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 JAXB object. - * This is why there is not a set method for the batchErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBatchErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BatchError } - * - * - */ - public List getBatchErrors() { - if (batchErrors == null) { - batchErrors = new ArrayList(); - } - return this.batchErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBatchErrorCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBatchErrorCollection.java deleted file mode 100644 index 5b789e46c6..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBatchErrorCollection.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBatchErrorCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBatchErrorCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="BatchErrorCollection" type="{https://bingads.microsoft.com/CampaignManagement/v12}BatchErrorCollection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBatchErrorCollection", propOrder = { - "batchErrorCollections" -}) -public class ArrayOfBatchErrorCollection { - - @XmlElement(name = "BatchErrorCollection", nillable = true) - protected List batchErrorCollections; - - /** - * Gets the value of the batchErrorCollections 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 JAXB object. - * This is why there is not a set method for the batchErrorCollections property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBatchErrorCollections().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BatchErrorCollection } - * - * - */ - public List getBatchErrorCollections() { - if (batchErrorCollections == null) { - batchErrorCollections = new ArrayList(); - } - return this.batchErrorCollections; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBudget.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBudget.java deleted file mode 100644 index e4c8ba4e75..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfBudget.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfBudget complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfBudget">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Budget" type="{https://bingads.microsoft.com/CampaignManagement/v12}Budget" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfBudget", propOrder = { - "budgets" -}) -public class ArrayOfBudget { - - @XmlElement(name = "Budget", nillable = true) - protected List budgets; - - /** - * Gets the value of the budgets 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 JAXB object. - * This is why there is not a set method for the budgets property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBudgets().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Budget } - * - * - */ - public List getBudgets() { - if (budgets == null) { - budgets = new ArrayList(); - } - return this.budgets; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaign.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaign.java deleted file mode 100644 index d10f26a314..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaign.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaign complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaign">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Campaign" type="{https://bingads.microsoft.com/CampaignManagement/v12}Campaign" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaign", propOrder = { - "campaigns" -}) -public class ArrayOfCampaign { - - @XmlElement(name = "Campaign", nillable = true) - protected List campaigns; - - /** - * Gets the value of the campaigns 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 JAXB object. - * This is why there is not a set method for the campaigns property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaigns().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Campaign } - * - * - */ - public List getCampaigns() { - if (campaigns == null) { - campaigns = new ArrayList(); - } - return this.campaigns; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignCriterion.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignCriterion.java deleted file mode 100644 index c593d07b8f..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignCriterion.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaignCriterion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaignCriterion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignCriterion" type="{https://bingads.microsoft.com/CampaignManagement/v12}CampaignCriterion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaignCriterion", propOrder = { - "campaignCriterions" -}) -public class ArrayOfCampaignCriterion { - - @XmlElement(name = "CampaignCriterion", nillable = true) - protected List campaignCriterions; - - /** - * Gets the value of the campaignCriterions 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 JAXB object. - * This is why there is not a set method for the campaignCriterions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaignCriterions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CampaignCriterion } - * - * - */ - public List getCampaignCriterions() { - if (campaignCriterions == null) { - campaignCriterions = new ArrayList(); - } - return this.campaignCriterions; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignNegativeSites.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignNegativeSites.java deleted file mode 100644 index 7cf8750f95..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignNegativeSites.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaignNegativeSites complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaignNegativeSites">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignNegativeSites" type="{https://bingads.microsoft.com/CampaignManagement/v12}CampaignNegativeSites" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaignNegativeSites", propOrder = { - "campaignNegativeSites" -}) -public class ArrayOfCampaignNegativeSites { - - @XmlElement(name = "CampaignNegativeSites", nillable = true) - protected List campaignNegativeSites; - - /** - * Gets the value of the campaignNegativeSites 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 JAXB object. - * This is why there is not a set method for the campaignNegativeSites property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaignNegativeSites().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CampaignNegativeSites } - * - * - */ - public List getCampaignNegativeSites() { - if (campaignNegativeSites == null) { - campaignNegativeSites = new ArrayList(); - } - return this.campaignNegativeSites; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignSize.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignSize.java deleted file mode 100644 index e386222741..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCampaignSize.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCampaignSize complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCampaignSize">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CampaignSize" type="{https://bingads.microsoft.com/CampaignManagement/v12}CampaignSize" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCampaignSize", propOrder = { - "campaignSizes" -}) -public class ArrayOfCampaignSize { - - @XmlElement(name = "CampaignSize", nillable = true) - protected List campaignSizes; - - /** - * Gets the value of the campaignSizes 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 JAXB object. - * This is why there is not a set method for the campaignSizes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCampaignSizes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CampaignSize } - * - * - */ - public List getCampaignSizes() { - if (campaignSizes == null) { - campaignSizes = new ArrayList(); - } - return this.campaignSizes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCompany.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCompany.java deleted file mode 100644 index c0fbc2e2b5..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCompany.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Company" type="{https://bingads.microsoft.com/CampaignManagement/v12}Company" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCompany", propOrder = { - "companies" -}) -public class ArrayOfCompany { - - @XmlElement(name = "Company", nillable = true) - protected List companies; - - /** - * Gets the value of the companies 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 JAXB object. - * This is why there is not a set method for the companies property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCompanies().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Company } - * - * - */ - public List getCompanies() { - if (companies == null) { - companies = new ArrayList(); - } - return this.companies; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfConversionGoal.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfConversionGoal.java deleted file mode 100644 index 1e313eb104..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfConversionGoal.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfConversionGoal complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfConversionGoal">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ConversionGoal" type="{https://bingads.microsoft.com/CampaignManagement/v12}ConversionGoal" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfConversionGoal", propOrder = { - "conversionGoals" -}) -public class ArrayOfConversionGoal { - - @XmlElement(name = "ConversionGoal", nillable = true) - protected List conversionGoals; - - /** - * Gets the value of the conversionGoals 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 JAXB object. - * This is why there is not a set method for the conversionGoals property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getConversionGoals().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ConversionGoal } - * - * - */ - public List getConversionGoals() { - if (conversionGoals == null) { - conversionGoals = new ArrayList(); - } - return this.conversionGoals; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCustomParameter.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCustomParameter.java deleted file mode 100644 index eacd30d90b..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfCustomParameter.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfCustomParameter complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfCustomParameter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CustomParameter" type="{https://bingads.microsoft.com/CampaignManagement/v12}CustomParameter" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfCustomParameter", propOrder = { - "customParameters" -}) -public class ArrayOfCustomParameter { - - @XmlElement(name = "CustomParameter", nillable = true) - protected List customParameters; - - /** - * Gets the value of the customParameters 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 JAXB object. - * This is why there is not a set method for the customParameters property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCustomParameters().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CustomParameter } - * - * - */ - public List getCustomParameters() { - if (customParameters == null) { - customParameters = new ArrayList(); - } - return this.customParameters; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfDayTime.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfDayTime.java deleted file mode 100644 index e080527c19..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfDayTime.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfDayTime complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfDayTime">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DayTime" type="{https://bingads.microsoft.com/CampaignManagement/v12}DayTime" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfDayTime", propOrder = { - "dayTimes" -}) -public class ArrayOfDayTime { - - @XmlElement(name = "DayTime", nillable = true) - protected List dayTimes; - - /** - * Gets the value of the dayTimes 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 JAXB object. - * This is why there is not a set method for the dayTimes property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDayTimes().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DayTime } - * - * - */ - public List getDayTimes() { - if (dayTimes == null) { - dayTimes = new ArrayList(); - } - return this.dayTimes; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialError.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialError.java deleted file mode 100644 index 63d6f809e4..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialError.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEditorialError complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEditorialError">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EditorialError" type="{https://bingads.microsoft.com/CampaignManagement/v12}EditorialError" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEditorialError", propOrder = { - "editorialErrors" -}) -public class ArrayOfEditorialError { - - @XmlElement(name = "EditorialError", nillable = true) - protected List editorialErrors; - - /** - * Gets the value of the editorialErrors 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 JAXB object. - * This is why there is not a set method for the editorialErrors property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEditorialErrors().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EditorialError } - * - * - */ - public List getEditorialErrors() { - if (editorialErrors == null) { - editorialErrors = new ArrayList(); - } - return this.editorialErrors; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialReason.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialReason.java deleted file mode 100644 index 1600fca874..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialReason.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEditorialReason complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEditorialReason">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EditorialReason" type="{https://bingads.microsoft.com/CampaignManagement/v12}EditorialReason" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEditorialReason", propOrder = { - "editorialReasons" -}) -public class ArrayOfEditorialReason { - - @XmlElement(name = "EditorialReason", nillable = true) - protected List editorialReasons; - - /** - * Gets the value of the editorialReasons 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 JAXB object. - * This is why there is not a set method for the editorialReasons property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEditorialReasons().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EditorialReason } - * - * - */ - public List getEditorialReasons() { - if (editorialReasons == null) { - editorialReasons = new ArrayList(); - } - return this.editorialReasons; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialReasonCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialReasonCollection.java deleted file mode 100644 index b5ae813676..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEditorialReasonCollection.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEditorialReasonCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEditorialReasonCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EditorialReasonCollection" type="{https://bingads.microsoft.com/CampaignManagement/v12}EditorialReasonCollection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEditorialReasonCollection", propOrder = { - "editorialReasonCollections" -}) -public class ArrayOfEditorialReasonCollection { - - @XmlElement(name = "EditorialReasonCollection", nillable = true) - protected List editorialReasonCollections; - - /** - * Gets the value of the editorialReasonCollections 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 JAXB object. - * This is why there is not a set method for the editorialReasonCollections property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEditorialReasonCollections().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EditorialReasonCollection } - * - * - */ - public List getEditorialReasonCollections() { - if (editorialReasonCollections == null) { - editorialReasonCollections = new ArrayList(); - } - return this.editorialReasonCollections; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEntityIdToParentIdAssociation.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEntityIdToParentIdAssociation.java deleted file mode 100644 index 3fe151b229..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEntityIdToParentIdAssociation.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEntityIdToParentIdAssociation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEntityIdToParentIdAssociation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EntityIdToParentIdAssociation" type="{https://bingads.microsoft.com/CampaignManagement/v12}EntityIdToParentIdAssociation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEntityIdToParentIdAssociation", propOrder = { - "entityIdToParentIdAssociations" -}) -public class ArrayOfEntityIdToParentIdAssociation { - - @XmlElement(name = "EntityIdToParentIdAssociation", nillable = true) - protected List entityIdToParentIdAssociations; - - /** - * Gets the value of the entityIdToParentIdAssociations 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 JAXB object. - * This is why there is not a set method for the entityIdToParentIdAssociations property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEntityIdToParentIdAssociations().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EntityIdToParentIdAssociation } - * - * - */ - public List getEntityIdToParentIdAssociations() { - if (entityIdToParentIdAssociations == null) { - entityIdToParentIdAssociations = new ArrayList(); - } - return this.entityIdToParentIdAssociations; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEntityNegativeKeyword.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEntityNegativeKeyword.java deleted file mode 100644 index 85044203ef..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfEntityNegativeKeyword.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfEntityNegativeKeyword complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfEntityNegativeKeyword">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="EntityNegativeKeyword" type="{https://bingads.microsoft.com/CampaignManagement/v12}EntityNegativeKeyword" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfEntityNegativeKeyword", propOrder = { - "entityNegativeKeywords" -}) -public class ArrayOfEntityNegativeKeyword { - - @XmlElement(name = "EntityNegativeKeyword", nillable = true) - protected List entityNegativeKeywords; - - /** - * Gets the value of the entityNegativeKeywords 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 JAXB object. - * This is why there is not a set method for the entityNegativeKeywords property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEntityNegativeKeywords().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EntityNegativeKeyword } - * - * - */ - public List getEntityNegativeKeywords() { - if (entityNegativeKeywords == null) { - entityNegativeKeywords = new ArrayList(); - } - return this.entityNegativeKeywords; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfExperiment.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfExperiment.java deleted file mode 100644 index ee49431b2a..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfExperiment.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfExperiment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfExperiment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Experiment" type="{https://bingads.microsoft.com/CampaignManagement/v12}Experiment" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfExperiment", propOrder = { - "experiments" -}) -public class ArrayOfExperiment { - - @XmlElement(name = "Experiment", nillable = true) - protected List experiments; - - /** - * Gets the value of the experiments 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 JAXB object. - * This is why there is not a set method for the experiments property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getExperiments().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Experiment } - * - * - */ - public List getExperiments() { - if (experiments == null) { - experiments = new ArrayList(); - } - return this.experiments; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfIdCollection.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfIdCollection.java deleted file mode 100644 index 1e8cf0dc87..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfIdCollection.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfIdCollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfIdCollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="IdCollection" type="{https://bingads.microsoft.com/CampaignManagement/v12}IdCollection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfIdCollection", propOrder = { - "idCollections" -}) -public class ArrayOfIdCollection { - - @XmlElement(name = "IdCollection", nillable = true) - protected List idCollections; - - /** - * Gets the value of the idCollections 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 JAXB object. - * This is why there is not a set method for the idCollections property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getIdCollections().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link IdCollection } - * - * - */ - public List getIdCollections() { - if (idCollections == null) { - idCollections = new ArrayList(); - } - return this.idCollections; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyValueOfstringstring.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyValueOfstringstring.java deleted file mode 100644 index 5d93c7f401..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyValueOfstringstring.java +++ /dev/null @@ -1,163 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeyValueOfstringstring complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeyValueOfstringstring">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeyValueOfstringstring" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                   <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeyValueOfstringstring", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", propOrder = { - "keyValueOfstringstrings" -}) -public class ArrayOfKeyValueOfstringstring { - - @XmlElement(name = "KeyValueOfstringstring") - protected List keyValueOfstringstrings; - - /** - * Gets the value of the keyValueOfstringstrings 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 JAXB object. - * This is why there is not a set method for the keyValueOfstringstrings property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeyValueOfstringstrings().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArrayOfKeyValueOfstringstring.KeyValueOfstringstring } - * - * - */ - public List getKeyValueOfstringstrings() { - if (keyValueOfstringstrings == null) { - keyValueOfstringstrings = new ArrayList(); - } - return this.keyValueOfstringstrings; - } - - - /** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "key", - "value" - }) - public static class KeyValueOfstringstring { - - @XmlElement(name = "Key", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", required = true, nillable = true) - protected String key; - @XmlElement(name = "Value", namespace = "http://schemas.microsoft.com/2003/10/Serialization/Arrays", required = true, nillable = true) - protected String value; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyValuePairOfstringstring.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyValuePairOfstringstring.java deleted file mode 100644 index a247cb68c8..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyValuePairOfstringstring.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeyValuePairOfstringstring complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeyValuePairOfstringstring">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KeyValuePairOfstringstring" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}KeyValuePairOfstringstring" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeyValuePairOfstringstring", namespace = "http://schemas.datacontract.org/2004/07/System.Collections.Generic", propOrder = { - "keyValuePairOfstringstrings" -}) -public class ArrayOfKeyValuePairOfstringstring { - - @XmlElement(name = "KeyValuePairOfstringstring") - protected List keyValuePairOfstringstrings; - - /** - * Gets the value of the keyValuePairOfstringstrings 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 JAXB object. - * This is why there is not a set method for the keyValuePairOfstringstrings property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeyValuePairOfstringstrings().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KeyValuePairOfstringstring } - * - * - */ - public List getKeyValuePairOfstringstrings() { - if (keyValuePairOfstringstrings == null) { - keyValuePairOfstringstrings = new ArrayList(); - } - return this.keyValuePairOfstringstrings; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyword.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyword.java deleted file mode 100644 index 7c588f1057..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfKeyword.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfKeyword complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfKeyword">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Keyword" type="{https://bingads.microsoft.com/CampaignManagement/v12}Keyword" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfKeyword", propOrder = { - "keywords" -}) -public class ArrayOfKeyword { - - @XmlElement(name = "Keyword", nillable = true) - protected List keywords; - - /** - * Gets the value of the keywords 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 JAXB object. - * This is why there is not a set method for the keywords property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKeywords().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Keyword } - * - * - */ - public List getKeywords() { - if (keywords == null) { - keywords = new ArrayList(); - } - return this.keywords; - } - -} diff --git a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfLabel.java b/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfLabel.java deleted file mode 100644 index 3eeec47247..0000000000 --- a/proxies/com/microsoft/bingads/v12/campaignmanagement/ArrayOfLabel.java +++ /dev/null @@ -1,69 +0,0 @@ - -package com.microsoft.bingads.v12.campaignmanagement; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ArrayOfLabel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ArrayOfLabel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Label" type="{https://bingads.microsoft.com/CampaignManagement/v12}Label" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArrayOfLabel", propOrder = { - "labels" -}) -public class ArrayOfLabel { - - @XmlElement(name = "Label", nillable = true) - protected List