com.microsoft.bingads.v13.campaignmanagement.AdExtensionAssociation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
package com.microsoft.bingads.v13.campaignmanagement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AdExtensionAssociation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AdExtensionAssociation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AdExtension" type="{https://bingads.microsoft.com/CampaignManagement/v13}AdExtension" minOccurs="0"/>
* <element name="AssociationType" type="{https://bingads.microsoft.com/CampaignManagement/v13}AssociationType"/>
* <element name="EditorialStatus" type="{https://bingads.microsoft.com/CampaignManagement/v13}AdExtensionEditorialStatus" minOccurs="0"/>
* <element name="EntityId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdExtensionAssociation", propOrder = {
"adExtension",
"associationType",
"editorialStatus",
"entityId"
})
public class AdExtensionAssociation {
@XmlElement(name = "AdExtension", nillable = true)
protected AdExtension adExtension;
@XmlElement(name = "AssociationType", required = true)
@XmlSchemaType(name = "string")
protected AssociationType associationType;
@XmlElement(name = "EditorialStatus", nillable = true)
@XmlSchemaType(name = "string")
protected AdExtensionEditorialStatus editorialStatus;
@XmlElement(name = "EntityId")
protected long entityId;
/**
* Gets the value of the adExtension property.
*
* @return
* possible object is
* {@link AdExtension }
*
*/
public AdExtension getAdExtension() {
return adExtension;
}
/**
* Sets the value of the adExtension property.
*
* @param value
* allowed object is
* {@link AdExtension }
*
*/
public void setAdExtension(AdExtension value) {
this.adExtension = value;
}
/**
* Gets the value of the associationType property.
*
* @return
* possible object is
* {@link AssociationType }
*
*/
public AssociationType getAssociationType() {
return associationType;
}
/**
* Sets the value of the associationType property.
*
* @param value
* allowed object is
* {@link AssociationType }
*
*/
public void setAssociationType(AssociationType value) {
this.associationType = value;
}
/**
* Gets the value of the editorialStatus property.
*
* @return
* possible object is
* {@link AdExtensionEditorialStatus }
*
*/
public AdExtensionEditorialStatus getEditorialStatus() {
return editorialStatus;
}
/**
* Sets the value of the editorialStatus property.
*
* @param value
* allowed object is
* {@link AdExtensionEditorialStatus }
*
*/
public void setEditorialStatus(AdExtensionEditorialStatus value) {
this.editorialStatus = value;
}
/**
* Gets the value of the entityId property.
*
*/
public long getEntityId() {
return entityId;
}
/**
* Sets the value of the entityId property.
*
*/
public void setEntityId(long value) {
this.entityId = value;
}
}