Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v14.0.0-SNAPSHOT #180

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.19.1</version>
<version>14.0.0-SNAPSHOT</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/).
19 changes: 12 additions & 7 deletions 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.19.1</version>
<version>14.0.0-SNAPSHOT</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 Expand Up @@ -169,7 +169,17 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
</dependency>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-client</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-features-logging</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
Expand All @@ -180,11 +190,6 @@
<artifactId>httpclient</artifactId>
<version>${http.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>4.1.5</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 4 additions & 0 deletions proxies/com/microsoft/bingads/v13/bulk/ApplicationFault.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public class ApplicationFault {
@XmlElement(name = "Type", nillable = true)
protected String type;


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

Expand Down
4 changes: 4 additions & 0 deletions proxies/com/microsoft/bingads/v13/bulk/BatchError.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ public class BatchError {
@XmlElement(name = "Type", nillable = true)
protected String type;

public BatchError() {
this.type = "BatchError";
}

/**
* Gets the value of the code property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ public class AdExtension {
protected AdExtensionStatus status;
@XmlElement(name = "Type", nillable = true)
protected String type;

public AdExtension() {
this.type = "AdExtension";
}
@XmlElement(name = "Version", nillable = true)
protected Integer version;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ public class AdGroupCriterion {
@XmlElement(name = "Type", nillable = true)
protected String type;

public AdGroupCriterion() {
this.type = "AdGroupCriterion";
}

/**
* Gets the value of the adGroupId property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public class ApplicationFault {
@XmlElement(name = "Type", nillable = true)
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 @@ -49,6 +49,10 @@ public class Asset {
@XmlElement(name = "Type", nillable = true)
protected String type;

public Asset() {
this.type = "Asset";
}

/**
* Gets the value of the id property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ public class BatchError {
@XmlElement(name = "Type", nillable = true)
protected String type;

public BatchError() {
this.type = "BatchError";
}

/**
* Gets the value of the code property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ public class BatchErrorCollection {
@XmlElement(name = "Type", nillable = true)
protected String type;

public BatchErrorCollection() {
this.type = "BatchErrorCollection";
}

/**
* Gets the value of the batchErrors property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ public class BiddingScheme {
@XmlElement(name = "Type", nillable = true)
protected String type;

public BiddingScheme() {
this.type = "BiddingScheme";
}

/**
* Gets the value of the type property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ public class CampaignCriterion {
@XmlElement(name = "Type", nillable = true)
protected String type;

public CampaignCriterion() {
this.type = "CampaignCriterion";
}

/**
* Gets the value of the campaignId property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ public class Criterion {
@XmlElement(name = "Type", nillable = true)
protected String type;

public Criterion() {
this.type = "Criterion";
}

/**
* Gets the value of the type property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public class CriterionBid {
@XmlElement(name = "Type", nillable = true)
protected String type;

public CriterionBid() {
this.type = "CriterionBid";
}

/**
* Gets the value of the type property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ public class CriterionCashback {
@XmlElement(name = "Type", nillable = true)
protected String type;

public CriterionCashback() {
this.type = "CriterionCashback";
}

/**
* Gets the value of the type property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
* <element name="NewAudienceTargets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NewCallAdExtensions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NewCalloutAdExtensions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NewConversionGoals" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NewDemographicTargets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NewDeviceTargets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NewEntities" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
Expand Down Expand Up @@ -92,6 +93,7 @@
* <element name="UpdateCampaignAdGroupLanguages" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="UpdateCampaignBudgets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="UpdateCampaignNames" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="UpdateConversionGoals" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="UpdateDemographicTargets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="UpdateDeviceTargets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="UpdateEntities" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
Expand Down Expand Up @@ -147,6 +149,7 @@
"newAudienceTargets",
"newCallAdExtensions",
"newCalloutAdExtensions",
"newConversionGoals",
"newDemographicTargets",
"newDeviceTargets",
"newEntities",
Expand Down Expand Up @@ -202,6 +205,7 @@
"updateCampaignAdGroupLanguages",
"updateCampaignBudgets",
"updateCampaignNames",
"updateConversionGoals",
"updateDemographicTargets",
"updateDeviceTargets",
"updateEntities",
Expand Down Expand Up @@ -275,6 +279,8 @@ public GoogleImportOption() {
protected Boolean newCallAdExtensions;
@XmlElement(name = "NewCalloutAdExtensions", nillable = true)
protected Boolean newCalloutAdExtensions;
@XmlElement(name = "NewConversionGoals", nillable = true)
protected Boolean newConversionGoals;
@XmlElement(name = "NewDemographicTargets", nillable = true)
protected Boolean newDemographicTargets;
@XmlElement(name = "NewDeviceTargets", nillable = true)
Expand Down Expand Up @@ -385,6 +391,8 @@ public GoogleImportOption() {
protected Boolean updateCampaignBudgets;
@XmlElement(name = "UpdateCampaignNames", nillable = true)
protected Boolean updateCampaignNames;
@XmlElement(name = "UpdateConversionGoals", nillable = true)
protected Boolean updateConversionGoals;
@XmlElement(name = "UpdateDemographicTargets", nillable = true)
protected Boolean updateDemographicTargets;
@XmlElement(name = "UpdateDeviceTargets", nillable = true)
Expand Down Expand Up @@ -916,6 +924,30 @@ public void setNewCalloutAdExtensions(Boolean value) {
this.newCalloutAdExtensions = value;
}

/**
* Gets the value of the newConversionGoals property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getNewConversionGoals() {
return newConversionGoals;
}

/**
* Sets the value of the newConversionGoals property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNewConversionGoals(Boolean value) {
this.newConversionGoals = value;
}

/**
* Gets the value of the newDemographicTargets property.
*
Expand Down Expand Up @@ -2236,6 +2268,30 @@ public void setUpdateCampaignNames(Boolean value) {
this.updateCampaignNames = value;
}

/**
* Gets the value of the updateConversionGoals property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getUpdateConversionGoals() {
return updateConversionGoals;
}

/**
* Sets the value of the updateConversionGoals property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUpdateConversionGoals(Boolean value) {
this.updateConversionGoals = value;
}

/**
* Gets the value of the updateDemographicTargets property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ public enum ImportAdditionalField {
UPDATE_LEAD_FORM_AD_EXTENSIONS("UpdateLeadFormAdExtensions"),
NEW_ACCOUNT_NEGATIVE_KEYWORDS("NewAccountNegativeKeywords"),
UPDATE_ACCOUNT_NEGATIVE_KEYWORDS("UpdateAccountNegativeKeywords"),
UPDATE_AD_CUSTOMIZER_ATTRIBUTES("UpdateAdCustomizerAttributes");
UPDATE_AD_CUSTOMIZER_ATTRIBUTES("UpdateAdCustomizerAttributes"),
NEW_CONVERSION_GOALS("NewConversionGoals"),
UPDATE_CONVERSION_GOALS("UpdateConversionGoals");

private final String value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ public class ImportJob {
@XmlElement(name = "Type", nillable = true)
protected String type;

public ImportJob() {
this.type = "ImportJob";
}

/**
* Gets the value of the createdByUserId property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ public class ImportOption {
@XmlElement(name = "Type", nillable = true)
protected String type;

public ImportOption() {
this.type = "ImportOption";
}

/**
* Gets the value of the forwardCompatibilityMap property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ public class Media {
@XmlElement(name = "Type", nillable = true)
protected String type;

public Media() {
this.type = "Media";
}

/**
* Gets the value of the id property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ public class MediaRepresentation {
protected String name;
@XmlElement(name = "Type", nillable = true)
protected String type;

public MediaRepresentation() {
this.type = "MediaRepresentation";
}
@XmlElement(name = "Url", nillable = true)
protected String url;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public class RemarketingRule {
@XmlElement(name = "Type", nillable = true)
protected String type;

public RemarketingRule() {
this.type = "RemarketingRule";
}

/**
* Gets the value of the type property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public class RuleItem {
@XmlElement(name = "Type", nillable = true)
protected String type;

public RuleItem() {
this.type = "RuleItem";
}

/**
* Gets the value of the type property.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ public class Setting {
@XmlElement(name = "Type", nillable = true)
protected String type;

public Setting() {
this.type = "Setting";
}

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