com.microsoft.bingads.v13.campaignmanagement.AssetGroupListingGroup 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 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;
/**
* Java class for AssetGroupListingGroup complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AssetGroupListingGroup", propOrder = {
"assetGroupId",
"assetGroupListingType",
"dimension",
"id",
"isExcluded",
"parentListingGroupId"
})
public class AssetGroupListingGroup {
@XmlElement(name = "AssetGroupId")
protected Long assetGroupId;
@XmlElement(name = "AssetGroupListingType")
@XmlSchemaType(name = "string")
protected AssetGroupListingType assetGroupListingType;
@XmlElement(name = "Dimension", nillable = true)
protected ProductCondition dimension;
@XmlElement(name = "Id", nillable = true)
protected Long id;
@XmlElement(name = "IsExcluded")
protected Boolean isExcluded;
@XmlElement(name = "ParentListingGroupId", nillable = true)
protected Long parentListingGroupId;
/**
* Gets the value of the assetGroupId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getAssetGroupId() {
return assetGroupId;
}
/**
* Sets the value of the assetGroupId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setAssetGroupId(Long value) {
this.assetGroupId = value;
}
/**
* Gets the value of the assetGroupListingType property.
*
* @return
* possible object is
* {@link AssetGroupListingType }
*
*/
public AssetGroupListingType getAssetGroupListingType() {
return assetGroupListingType;
}
/**
* Sets the value of the assetGroupListingType property.
*
* @param value
* allowed object is
* {@link AssetGroupListingType }
*
*/
public void setAssetGroupListingType(AssetGroupListingType value) {
this.assetGroupListingType = value;
}
/**
* Gets the value of the dimension property.
*
* @return
* possible object is
* {@link ProductCondition }
*
*/
public ProductCondition getDimension() {
return dimension;
}
/**
* Sets the value of the dimension property.
*
* @param value
* allowed object is
* {@link ProductCondition }
*
*/
public void setDimension(ProductCondition value) {
this.dimension = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setId(Long value) {
this.id = value;
}
/**
* Gets the value of the isExcluded property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getIsExcluded() {
return isExcluded;
}
/**
* Sets the value of the isExcluded property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsExcluded(Boolean value) {
this.isExcluded = value;
}
/**
* Gets the value of the parentListingGroupId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getParentListingGroupId() {
return parentListingGroupId;
}
/**
* Sets the value of the parentListingGroupId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setParentListingGroupId(Long value) {
this.parentListingGroupId = value;
}
}