com.microsoft.bingads.v13.campaignmanagement.AudienceGroup Maven / Gradle / Ivy
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.XmlType;
/**
* Java class for AudienceGroup complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AudienceGroup", propOrder = {
"associationCount",
"description",
"dimensions",
"id",
"name"
})
public class AudienceGroup {
@XmlElement(name = "AssociationCount", nillable = true)
protected Integer associationCount;
@XmlElement(name = "Description", nillable = true)
protected String description;
@XmlElement(name = "Dimensions", nillable = true)
protected ArrayOfAudienceGroupDimension dimensions;
@XmlElement(name = "Id", nillable = true)
protected Long id;
@XmlElement(name = "Name", nillable = true)
protected String name;
/**
* Gets the value of the associationCount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAssociationCount() {
return associationCount;
}
/**
* Sets the value of the associationCount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAssociationCount(Integer value) {
this.associationCount = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the dimensions property.
*
* @return
* possible object is
* {@link ArrayOfAudienceGroupDimension }
*
*/
public ArrayOfAudienceGroupDimension getDimensions() {
return dimensions;
}
/**
* Sets the value of the dimensions property.
*
* @param value
* allowed object is
* {@link ArrayOfAudienceGroupDimension }
*
*/
public void setDimensions(ArrayOfAudienceGroupDimension value) {
this.dimensions = 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 name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy