-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from BingAds/v13.0.19.1
v13.0.19.1
- Loading branch information
Showing
36 changed files
with
1,058 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
proxies/com/microsoft/bingads/v13/reporting/AccountThroughAssetGroupReportScope.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
|
||
package com.microsoft.bingads.v13.reporting; | ||
|
||
import jakarta.xml.bind.annotation.XmlAccessType; | ||
import jakarta.xml.bind.annotation.XmlAccessorType; | ||
import jakarta.xml.bind.annotation.XmlElement; | ||
import jakarta.xml.bind.annotation.XmlType; | ||
|
||
|
||
/** | ||
* <p>Java class for AccountThroughAssetGroupReportScope complex type. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* | ||
* <pre>{@code | ||
* <complexType name="AccountThroughAssetGroupReportScope"> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element name="AccountIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/> | ||
* <element name="AssetGroups" type="{https://bingads.microsoft.com/Reporting/v13}ArrayOfAssetGroupReportScope" minOccurs="0"/> | ||
* <element name="Campaigns" type="{https://bingads.microsoft.com/Reporting/v13}ArrayOfCampaignReportScope" minOccurs="0"/> | ||
* </sequence> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* }</pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "AccountThroughAssetGroupReportScope", propOrder = { | ||
"accountIds", | ||
"assetGroups", | ||
"campaigns" | ||
}) | ||
public class AccountThroughAssetGroupReportScope { | ||
|
||
@XmlElement(name = "AccountIds", nillable = true) | ||
protected ArrayOflong accountIds; | ||
@XmlElement(name = "AssetGroups", nillable = true) | ||
protected ArrayOfAssetGroupReportScope assetGroups; | ||
@XmlElement(name = "Campaigns", nillable = true) | ||
protected ArrayOfCampaignReportScope campaigns; | ||
|
||
/** | ||
* Gets the value of the accountIds property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link ArrayOflong } | ||
* | ||
*/ | ||
public ArrayOflong getAccountIds() { | ||
return accountIds; | ||
} | ||
|
||
/** | ||
* Sets the value of the accountIds property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link ArrayOflong } | ||
* | ||
*/ | ||
public void setAccountIds(ArrayOflong value) { | ||
this.accountIds = value; | ||
} | ||
|
||
/** | ||
* Gets the value of the assetGroups property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link ArrayOfAssetGroupReportScope } | ||
* | ||
*/ | ||
public ArrayOfAssetGroupReportScope getAssetGroups() { | ||
return assetGroups; | ||
} | ||
|
||
/** | ||
* Sets the value of the assetGroups property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link ArrayOfAssetGroupReportScope } | ||
* | ||
*/ | ||
public void setAssetGroups(ArrayOfAssetGroupReportScope value) { | ||
this.assetGroups = value; | ||
} | ||
|
||
/** | ||
* Gets the value of the campaigns property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link ArrayOfCampaignReportScope } | ||
* | ||
*/ | ||
public ArrayOfCampaignReportScope getCampaigns() { | ||
return campaigns; | ||
} | ||
|
||
/** | ||
* Sets the value of the campaigns property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link ArrayOfCampaignReportScope } | ||
* | ||
*/ | ||
public void setCampaigns(ArrayOfCampaignReportScope value) { | ||
this.campaigns = value; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
proxies/com/microsoft/bingads/v13/reporting/ArrayOfAssetGroupPerformanceReportColumn.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
|
||
package com.microsoft.bingads.v13.reporting; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import jakarta.xml.bind.annotation.XmlAccessType; | ||
import jakarta.xml.bind.annotation.XmlAccessorType; | ||
import jakarta.xml.bind.annotation.XmlElement; | ||
import jakarta.xml.bind.annotation.XmlSchemaType; | ||
import jakarta.xml.bind.annotation.XmlType;import com.fasterxml.jackson.annotation.JsonCreator; | ||
|
||
|
||
/** | ||
* <p>Java class for ArrayOfAssetGroupPerformanceReportColumn complex type. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* | ||
* <pre>{@code | ||
* <complexType name="ArrayOfAssetGroupPerformanceReportColumn"> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element name="AssetGroupPerformanceReportColumn" type="{https://bingads.microsoft.com/Reporting/v13}AssetGroupPerformanceReportColumn" maxOccurs="unbounded" minOccurs="0"/> | ||
* </sequence> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* }</pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "ArrayOfAssetGroupPerformanceReportColumn", propOrder = { | ||
"assetGroupPerformanceReportColumns" | ||
}) | ||
public class ArrayOfAssetGroupPerformanceReportColumn { | ||
|
||
@XmlElement(name = "AssetGroupPerformanceReportColumn") | ||
@XmlSchemaType(name = "string") | ||
protected List<AssetGroupPerformanceReportColumn> assetGroupPerformanceReportColumns; | ||
public ArrayOfAssetGroupPerformanceReportColumn() | ||
{ | ||
this.assetGroupPerformanceReportColumns = new ArrayList<AssetGroupPerformanceReportColumn>(); | ||
} | ||
@JsonCreator | ||
public ArrayOfAssetGroupPerformanceReportColumn(List<AssetGroupPerformanceReportColumn> assetgroupperformancereportcolumns) | ||
{ | ||
this.assetGroupPerformanceReportColumns = assetgroupperformancereportcolumns; | ||
} | ||
|
||
/** | ||
* Gets the value of the assetGroupPerformanceReportColumns property. | ||
* | ||
* <p> | ||
* This accessor method returns a reference to the live list, | ||
* not a snapshot. Therefore any modification you make to the | ||
* returned list will be present inside the Jakarta XML Binding object. | ||
* This is why there is not a {@code set} method for the assetGroupPerformanceReportColumns property. | ||
* | ||
* <p> | ||
* For example, to add a new item, do as follows: | ||
* <pre> | ||
* getAssetGroupPerformanceReportColumns().add(newItem); | ||
* </pre> | ||
* | ||
* | ||
* <p> | ||
* Objects of the following type(s) are allowed in the list | ||
* {@link AssetGroupPerformanceReportColumn } | ||
* | ||
* | ||
* @return | ||
* The value of the assetGroupPerformanceReportColumns property. | ||
*/ | ||
public List<AssetGroupPerformanceReportColumn> getAssetGroupPerformanceReportColumns() { | ||
if (assetGroupPerformanceReportColumns == null) { | ||
assetGroupPerformanceReportColumns = new ArrayList<>(); | ||
} | ||
return this.assetGroupPerformanceReportColumns; | ||
} | ||
|
||
} |
80 changes: 80 additions & 0 deletions
80
proxies/com/microsoft/bingads/v13/reporting/ArrayOfAssetGroupReportScope.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
|
||
package com.microsoft.bingads.v13.reporting; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import jakarta.xml.bind.annotation.XmlAccessType; | ||
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 ArrayOfAssetGroupReportScope complex type. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* | ||
* <pre>{@code | ||
* <complexType name="ArrayOfAssetGroupReportScope"> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element name="AssetGroupReportScope" type="{https://bingads.microsoft.com/Reporting/v13}AssetGroupReportScope" maxOccurs="unbounded" minOccurs="0"/> | ||
* </sequence> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* }</pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "ArrayOfAssetGroupReportScope", propOrder = { | ||
"assetGroupReportScopes" | ||
}) | ||
public class ArrayOfAssetGroupReportScope { | ||
|
||
@XmlElement(name = "AssetGroupReportScope", nillable = true) | ||
protected List<AssetGroupReportScope> assetGroupReportScopes; | ||
public ArrayOfAssetGroupReportScope() | ||
{ | ||
this.assetGroupReportScopes = new ArrayList<AssetGroupReportScope>(); | ||
} | ||
@JsonCreator | ||
public ArrayOfAssetGroupReportScope(List<AssetGroupReportScope> assetgroupreportscopes) | ||
{ | ||
this.assetGroupReportScopes = assetgroupreportscopes; | ||
} | ||
|
||
/** | ||
* Gets the value of the assetGroupReportScopes property. | ||
* | ||
* <p> | ||
* This accessor method returns a reference to the live list, | ||
* not a snapshot. Therefore any modification you make to the | ||
* returned list will be present inside the Jakarta XML Binding object. | ||
* This is why there is not a {@code set} method for the assetGroupReportScopes property. | ||
* | ||
* <p> | ||
* For example, to add a new item, do as follows: | ||
* <pre> | ||
* getAssetGroupReportScopes().add(newItem); | ||
* </pre> | ||
* | ||
* | ||
* <p> | ||
* Objects of the following type(s) are allowed in the list | ||
* {@link AssetGroupReportScope } | ||
* | ||
* | ||
* @return | ||
* The value of the assetGroupReportScopes property. | ||
*/ | ||
public List<AssetGroupReportScope> getAssetGroupReportScopes() { | ||
if (assetGroupReportScopes == null) { | ||
assetGroupReportScopes = new ArrayList<>(); | ||
} | ||
return this.assetGroupReportScopes; | ||
} | ||
|
||
} |
Oops, something went wrong.