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
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
- * 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 Java class for ArrayOfAdGroupBidLandscape complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AdGroupBidLandscape }
- *
- *
- */
- public List Java class for ArrayOfAdGroupBidLandscapeInput complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AdGroupBidLandscapeInput }
- *
- *
- */
- public List Java class for ArrayOfAdGroupEstimate complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AdGroupEstimate }
- *
- *
- */
- public List Java class for ArrayOfAdGroupEstimator complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AdGroupEstimator }
- *
- *
- */
- public List Java class for ArrayOfAuctionInsightEntry complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AuctionInsightEntry }
- *
- *
- */
- public List Java class for ArrayOfAuctionInsightKpi complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AuctionInsightKpi }
- *
- *
- */
- public List Java class for ArrayOfAuctionSegment complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AuctionSegment }
- *
- *
- */
- public List Java class for ArrayOfBatchError complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BatchError }
- *
- *
- */
- public List Java class for ArrayOfBidLandscapePoint complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BidLandscapePoint }
- *
- *
- */
- public List Java class for ArrayOfBidOpportunity complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BidOpportunity }
- *
- *
- */
- public List Java class for ArrayOfBroadMatchSearchQueryKPI complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BroadMatchSearchQueryKPI }
- *
- *
- */
- public List Java class for ArrayOfBudgetOpportunity complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BudgetOpportunity }
- *
- *
- */
- public List Java class for ArrayOfBudgetPoint complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BudgetPoint }
- *
- *
- */
- public List Java class for ArrayOfCampaignEstimate complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link CampaignEstimate }
- *
- *
- */
- public List Java class for ArrayOfCampaignEstimator complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link CampaignEstimator }
- *
- *
- */
- public List Java class for ArrayOfCompetitionLevel complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link CompetitionLevel }
- *
- *
- */
- public List Java class for ArrayOfCriterion complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Criterion }
- *
- *
- */
- public List Java class for ArrayOfDomainCategory complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link DomainCategory }
- *
- *
- */
- public List Java class for ArrayOfEstimatedBidAndTraffic complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link EstimatedBidAndTraffic }
- *
- *
- */
- public List Java class for ArrayOfEstimatedPositionAndTraffic complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link EstimatedPositionAndTraffic }
- *
- *
- */
- public List Java class for ArrayOfHistoricalSearchCountPeriodic complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link HistoricalSearchCountPeriodic }
- *
- *
- */
- public List Java class for ArrayOfKeyword complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Keyword }
- *
- *
- */
- public List Java class for ArrayOfKeywordAndConfidence complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordAndConfidence }
- *
- *
- */
- public List Java class for ArrayOfKeywordAndMatchType complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordAndMatchType }
- *
- *
- */
- public List Java class for ArrayOfKeywordBidLandscape complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordBidLandscape }
- *
- *
- */
- public List Java class for ArrayOfKeywordCategory complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordCategory }
- *
- *
- */
- public List Java class for ArrayOfKeywordCategoryResult complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordCategoryResult }
- *
- *
- */
- public List Java class for ArrayOfKeywordDemographic complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordDemographic }
- *
- *
- */
- public List Java class for ArrayOfKeywordDemographicResult complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordDemographicResult }
- *
- *
- */
- public List Java class for ArrayOfKeywordEstimate complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordEstimate }
- *
- *
- */
- public List Java class for ArrayOfKeywordEstimatedBid complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordEstimatedBid }
- *
- *
- */
- public List Java class for ArrayOfKeywordEstimatedPosition complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordEstimatedPosition }
- *
- *
- */
- public List Java class for ArrayOfKeywordEstimator complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordEstimator }
- *
- *
- */
- public List Java class for ArrayOfKeywordHistoricalPerformance complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordHistoricalPerformance }
- *
- *
- */
- public List Java class for ArrayOfKeywordIdEstimatedBid complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordIdEstimatedBid }
- *
- *
- */
- public List Java class for ArrayOfKeywordIdEstimatedPosition complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordIdEstimatedPosition }
- *
- *
- */
- public List Java class for ArrayOfKeywordIdea complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordIdea }
- *
- *
- */
- public List Java class for ArrayOfKeywordIdeaAttribute complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordIdeaAttribute }
- *
- *
- */
- public List Java class for ArrayOfKeywordIdeaCategory complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordIdeaCategory }
- *
- *
- */
- public List Java class for ArrayOfKeywordKPI complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordKPI }
- *
- *
- */
- public List Java class for ArrayOfKeywordLocation complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordLocation }
- *
- *
- */
- public List Java class for ArrayOfKeywordLocationResult complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordLocationResult }
- *
- *
- */
- public List Java class for ArrayOfKeywordOpportunity complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordOpportunity }
- *
- *
- */
- public List Java class for ArrayOfKeywordSearchCount complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordSearchCount }
- *
- *
- */
- public List Java class for ArrayOfKeywordSuggestion complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link KeywordSuggestion }
- *
- *
- */
- public List Java class for ArrayOfLanguageCriterion complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link LanguageCriterion }
- *
- *
- */
- public List Java class for ArrayOfLocationCriterion complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link LocationCriterion }
- *
- *
- */
- public List Java class for ArrayOfMatchType complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link MatchType }
- *
- *
- */
- public List Java class for ArrayOfMetricData complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link MetricData }
- *
- *
- */
- public List Java class for ArrayOfNegativeKeyword complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link NegativeKeyword }
- *
- *
- */
- public List Java class for ArrayOfOperationError complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link OperationError }
- *
- *
- */
- public List Java class for ArrayOfSearchCountsByAttributes complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link SearchCountsByAttributes }
- *
- *
- */
- public List Java class for ArrayOfSearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link SearchParameter }
- *
- *
- */
- public List Java class for ArrayOflong complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Long }
- *
- *
- */
- public List Java class for AuctionInsightEntry complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for AuctionInsightKpi complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for AuctionInsightResult complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for AuctionSegment.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for AuctionSegmentSearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BatchError complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BidLandscapePoint complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BidOpportunity complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BroadMatchKeywordOpportunity complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BroadMatchSearchQueryKPI complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BudgetLimitType.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BudgetOpportunity complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BudgetPoint complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for BudgetPointType.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for CampaignEstimate complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for CampaignEstimator complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for CategorySearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for char simple type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for CompetitionLevel.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for CompetitionSearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for Criterion complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for CurrencyCode.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for DateRangeSearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for DayMonthAndYear complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for DeviceCriterion complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for DeviceSearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for DomainCategory complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for duration simple type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for ENTITIES simple type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * 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
- * For example, to add a new item, do as follows:
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ENTITY }
- *
- *
- */
- public List Java class for ENTITY simple type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for EntityType.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for EstimatedBidAndTraffic complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for EstimatedPositionAndTraffic complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for ExcludeAccountKeywordsSearchParameter complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for guid simple type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- * Java class for HistoricalSearchCountPeriodic 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 Listset
method for the adGroupBidLandscapes property.
- *
- *
- * getAdGroupBidLandscapes().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the adGroupBidLandscapeInputs property.
- *
- *
- * getAdGroupBidLandscapeInputs().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the adGroupEstimates property.
- *
- *
- * getAdGroupEstimates().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the adGroupEstimators property.
- *
- *
- * getAdGroupEstimators().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the auctionInsightEntries property.
- *
- *
- * getAuctionInsightEntries().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the auctionInsightKpis property.
- *
- *
- * getAuctionInsightKpis().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the auctionSegments property.
- *
- *
- * getAuctionSegments().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the batchErrors property.
- *
- *
- * getBatchErrors().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the bidLandscapePoints property.
- *
- *
- * getBidLandscapePoints().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the bidOpportunities property.
- *
- *
- * getBidOpportunities().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the broadMatchSearchQueryKPIs property.
- *
- *
- * getBroadMatchSearchQueryKPIs().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the budgetOpportunities property.
- *
- *
- * getBudgetOpportunities().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the budgetPoints property.
- *
- *
- * getBudgetPoints().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the campaignEstimates property.
- *
- *
- * getCampaignEstimates().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the campaignEstimators property.
- *
- *
- * getCampaignEstimators().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the competitionLevels property.
- *
- *
- * getCompetitionLevels().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the criterions property.
- *
- *
- * getCriterions().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the domainCategories property.
- *
- *
- * getDomainCategories().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the estimatedBidAndTraffics property.
- *
- *
- * getEstimatedBidAndTraffics().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the estimatedPositionAndTraffics property.
- *
- *
- * getEstimatedPositionAndTraffics().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the historicalSearchCountPeriodics property.
- *
- *
- * getHistoricalSearchCountPeriodics().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywords property.
- *
- *
- * getKeywords().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordAndConfidences property.
- *
- *
- * getKeywordAndConfidences().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordAndMatchTypes property.
- *
- *
- * getKeywordAndMatchTypes().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordBidLandscapes property.
- *
- *
- * getKeywordBidLandscapes().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordCategories property.
- *
- *
- * getKeywordCategories().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordCategoryResults property.
- *
- *
- * getKeywordCategoryResults().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordDemographics property.
- *
- *
- * getKeywordDemographics().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordDemographicResults property.
- *
- *
- * getKeywordDemographicResults().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordEstimates property.
- *
- *
- * getKeywordEstimates().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordEstimatedBids property.
- *
- *
- * getKeywordEstimatedBids().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordEstimatedPositions property.
- *
- *
- * getKeywordEstimatedPositions().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordEstimators property.
- *
- *
- * getKeywordEstimators().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordHistoricalPerformances property.
- *
- *
- * getKeywordHistoricalPerformances().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordIdEstimatedBids property.
- *
- *
- * getKeywordIdEstimatedBids().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordIdEstimatedPositions property.
- *
- *
- * getKeywordIdEstimatedPositions().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordIdeas property.
- *
- *
- * getKeywordIdeas().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordIdeaAttributes property.
- *
- *
- * getKeywordIdeaAttributes().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordIdeaCategories property.
- *
- *
- * getKeywordIdeaCategories().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordKPIs property.
- *
- *
- * getKeywordKPIs().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordLocations property.
- *
- *
- * getKeywordLocations().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordLocationResults property.
- *
- *
- * getKeywordLocationResults().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordOpportunities property.
- *
- *
- * getKeywordOpportunities().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordSearchCounts property.
- *
- *
- * getKeywordSearchCounts().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the keywordSuggestions property.
- *
- *
- * getKeywordSuggestions().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the languageCriterions property.
- *
- *
- * getLanguageCriterions().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the locationCriterions property.
- *
- *
- * getLocationCriterions().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the matchTypes property.
- *
- *
- * getMatchTypes().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the metricDatas property.
- *
- *
- * getMetricDatas().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the negativeKeywords property.
- *
- *
- * getNegativeKeywords().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the operationErrors property.
- *
- *
- * getOperationErrors().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the searchCountsByAttributes property.
- *
- *
- * getSearchCountsByAttributes().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the searchParameters property.
- *
- *
- * getSearchParameters().add(newItem);
- *
- *
- *
- *
- * <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 Listset
method for the longs property.
- *
- *
- * getLongs().add(newItem);
- *
- *
- *
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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 Listset
method for the values property.
- *
- *
- * getValues().add(newItem);
- *
- *
- *
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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;
-
-
-/**
- *
- * <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