Skip to content

Commit

Permalink
Merge pull request #204 from BingAds/v13.0.22
Browse files Browse the repository at this point in the history
v13.0.22
  • Loading branch information
xinyuwen2 authored Nov 6, 2024
2 parents cb09496 + a7b981b commit 6adc9e2
Show file tree
Hide file tree
Showing 342 changed files with 11,886 additions and 148 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Bing Ads Java SDK includes and depends on the microsoft.bingads Maven artifa
<dependency>
<groupId>com.microsoft.bingads</groupId>
<artifactId>microsoft.bingads</artifactId>
<version>13.0.21.2</version>
<version>13.0.22</version>
</dependency>
```
If you are not using a Maven project, you must include the correct version of each dependency. You can review the complete list of Bing Ads Java SDK dependencies at the [Maven Repository](http://mvnrepository.com/artifact/com.microsoft.bingads/microsoft.bingads/).
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.bingads</groupId>
<version>13.0.21.2</version>
<version>13.0.22</version>
<name>Bing Ads Java SDK</name>
<description>The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.</description>
<url>https://github.com/BingAds/BingAds-Java-SDK</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
public class AdApiFaultDetail
extends ApplicationFault
{
public AdApiFaultDetail() {
this.type = "AdApiFaultDetail";
}

@XmlElement(name = "Errors", nillable = true)
protected ArrayOfAdApiError errors;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
public class ApiFaultDetail
extends ApplicationFault
{
public ApiFaultDetail() {
this.type = "ApiFaultDetail";
}

@XmlElement(name = "BatchErrors", nillable = true)
protected ArrayOfBatchError batchErrors;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,20 @@
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApplicationFault", namespace = "https://adapi.microsoft.com", propOrder = {
"type",
"trackingId"
})
@XmlSeeAlso({
ApiFaultDetail.class,
AdApiFaultDetail.class
})
public class ApplicationFault {
protected String type;


public ApplicationFault() {
this.type = "ApplicationFault";
}
@XmlElement(name = "TrackingId", nillable = true)
protected String trackingId;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAdApiError complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAdApiError {

@XmlElement(name = "AdApiError", nillable = true)
protected List<AdApiError> adApiErrors;
public ArrayOfAdApiError()
{
this.adApiErrors = new ArrayList<AdApiError>();
}
@JsonCreator
public ArrayOfAdApiError(List<AdApiError> adapierrors)
{
this.adApiErrors = adapierrors;
}

/**
* Gets the value of the adApiErrors property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAdGroupBidLandscape complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAdGroupBidLandscape {

@XmlElement(name = "AdGroupBidLandscape", nillable = true)
protected List<AdGroupBidLandscape> adGroupBidLandscapes;
public ArrayOfAdGroupBidLandscape()
{
this.adGroupBidLandscapes = new ArrayList<AdGroupBidLandscape>();
}
@JsonCreator
public ArrayOfAdGroupBidLandscape(List<AdGroupBidLandscape> adgroupbidlandscapes)
{
this.adGroupBidLandscapes = adgroupbidlandscapes;
}

/**
* Gets the value of the adGroupBidLandscapes property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAdGroupBidLandscapeInput complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAdGroupBidLandscapeInput {

@XmlElement(name = "AdGroupBidLandscapeInput", nillable = true)
protected List<AdGroupBidLandscapeInput> adGroupBidLandscapeInputs;
public ArrayOfAdGroupBidLandscapeInput()
{
this.adGroupBidLandscapeInputs = new ArrayList<AdGroupBidLandscapeInput>();
}
@JsonCreator
public ArrayOfAdGroupBidLandscapeInput(List<AdGroupBidLandscapeInput> adgroupbidlandscapeinputs)
{
this.adGroupBidLandscapeInputs = adgroupbidlandscapeinputs;
}

/**
* Gets the value of the adGroupBidLandscapeInputs property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAdGroupEstimate complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAdGroupEstimate {

@XmlElement(name = "AdGroupEstimate", nillable = true)
protected List<AdGroupEstimate> adGroupEstimates;
public ArrayOfAdGroupEstimate()
{
this.adGroupEstimates = new ArrayList<AdGroupEstimate>();
}
@JsonCreator
public ArrayOfAdGroupEstimate(List<AdGroupEstimate> adgroupestimates)
{
this.adGroupEstimates = adgroupestimates;
}

/**
* Gets the value of the adGroupEstimates property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAdGroupEstimator complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAdGroupEstimator {

@XmlElement(name = "AdGroupEstimator", nillable = true)
protected List<AdGroupEstimator> adGroupEstimators;
public ArrayOfAdGroupEstimator()
{
this.adGroupEstimators = new ArrayList<AdGroupEstimator>();
}
@JsonCreator
public ArrayOfAdGroupEstimator(List<AdGroupEstimator> adgroupestimators)
{
this.adGroupEstimators = adgroupestimators;
}

/**
* Gets the value of the adGroupEstimators property.
Expand Down
11 changes: 10 additions & 1 deletion proxies/com/microsoft/bingads/v13/adinsight/ArrayOfAgeEnum.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlType;import com.fasterxml.jackson.annotation.JsonCreator;


/**
Expand Down Expand Up @@ -38,6 +38,15 @@ public class ArrayOfAgeEnum {
@XmlElement(name = "AgeEnum")
@XmlSchemaType(name = "string")
protected List<AgeEnum> ageEna;
public ArrayOfAgeEnum()
{
this.ageEna = new ArrayList<AgeEnum>();
}
@JsonCreator
public ArrayOfAgeEnum(List<AgeEnum> ageenums)
{
this.ageEna = ageenums;
}

/**
* Gets the value of the ageEna property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfApplyRecommendationEntity complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfApplyRecommendationEntity {

@XmlElement(name = "ApplyRecommendationEntity", nillable = true)
protected List<ApplyRecommendationEntity> applyRecommendationEntities;
public ArrayOfApplyRecommendationEntity()
{
this.applyRecommendationEntities = new ArrayList<ApplyRecommendationEntity>();
}
@JsonCreator
public ArrayOfApplyRecommendationEntity(List<ApplyRecommendationEntity> applyrecommendationentitys)
{
this.applyRecommendationEntities = applyrecommendationentitys;
}

/**
* Gets the value of the applyRecommendationEntities property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAuctionInsightEntry complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAuctionInsightEntry {

@XmlElement(name = "AuctionInsightEntry", nillable = true)
protected List<AuctionInsightEntry> auctionInsightEntries;
public ArrayOfAuctionInsightEntry()
{
this.auctionInsightEntries = new ArrayList<AuctionInsightEntry>();
}
@JsonCreator
public ArrayOfAuctionInsightEntry(List<AuctionInsightEntry> auctioninsightentrys)
{
this.auctionInsightEntries = auctioninsightentrys;
}

/**
* Gets the value of the auctionInsightEntries property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAuctionInsightKpi complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAuctionInsightKpi {

@XmlElement(name = "AuctionInsightKpi", nillable = true)
protected List<AuctionInsightKpi> auctionInsightKpis;
public ArrayOfAuctionInsightKpi()
{
this.auctionInsightKpis = new ArrayList<AuctionInsightKpi>();
}
@JsonCreator
public ArrayOfAuctionInsightKpi(List<AuctionInsightKpi> auctioninsightkpis)
{
this.auctionInsightKpis = auctioninsightkpis;
}

/**
* Gets the value of the auctionInsightKpis property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlType;import com.fasterxml.jackson.annotation.JsonCreator;


/**
Expand Down Expand Up @@ -38,6 +38,15 @@ public class ArrayOfAuctionSegment {
@XmlElement(name = "AuctionSegment")
@XmlSchemaType(name = "string")
protected List<AuctionSegment> auctionSegments;
public ArrayOfAuctionSegment()
{
this.auctionSegments = new ArrayList<AuctionSegment>();
}
@JsonCreator
public ArrayOfAuctionSegment(List<AuctionSegment> auctionsegments)
{
this.auctionSegments = auctionsegments;
}

/**
* Gets the value of the auctionSegments property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfAutoApplyRecommendationsInfo complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfAutoApplyRecommendationsInfo {

@XmlElement(name = "AutoApplyRecommendationsInfo", nillable = true)
protected List<AutoApplyRecommendationsInfo> autoApplyRecommendationsInfos;
public ArrayOfAutoApplyRecommendationsInfo()
{
this.autoApplyRecommendationsInfos = new ArrayList<AutoApplyRecommendationsInfo>();
}
@JsonCreator
public ArrayOfAutoApplyRecommendationsInfo(List<AutoApplyRecommendationsInfo> autoapplyrecommendationsinfos)
{
this.autoApplyRecommendationsInfos = autoapplyrecommendationsinfos;
}

/**
* Gets the value of the autoApplyRecommendationsInfos property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfBatchError complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfBatchError {

@XmlElement(name = "BatchError", nillable = true)
protected List<BatchError> batchErrors;
public ArrayOfBatchError()
{
this.batchErrors = new ArrayList<BatchError>();
}
@JsonCreator
public ArrayOfBatchError(List<BatchError> batcherrors)
{
this.batchErrors = batcherrors;
}

/**
* Gets the value of the batchErrors property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
* <p>Java class for ArrayOfBidLandscapePoint complex type.
Expand Down Expand Up @@ -36,6 +36,15 @@ public class ArrayOfBidLandscapePoint {

@XmlElement(name = "BidLandscapePoint", nillable = true)
protected List<BidLandscapePoint> bidLandscapePoints;
public ArrayOfBidLandscapePoint()
{
this.bidLandscapePoints = new ArrayList<BidLandscapePoint>();
}
@JsonCreator
public ArrayOfBidLandscapePoint(List<BidLandscapePoint> bidlandscapepoints)
{
this.bidLandscapePoints = bidlandscapepoints;
}

/**
* Gets the value of the bidLandscapePoints property.
Expand Down
Loading

0 comments on commit 6adc9e2

Please sign in to comment.