com.microsoft.bingads.v13.campaignmanagement.GetAudienceGroupsByIdsRequest 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.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"audienceGroupIds"
})
@XmlRootElement(name = "GetAudienceGroupsByIdsRequest")
public class GetAudienceGroupsByIdsRequest {
@XmlElement(name = "AudienceGroupIds", nillable = true)
protected ArrayOflong audienceGroupIds;
/**
* Gets the value of the audienceGroupIds property.
*
* @return
* possible object is
* {@link ArrayOflong }
*
*/
public ArrayOflong getAudienceGroupIds() {
return audienceGroupIds;
}
/**
* Sets the value of the audienceGroupIds property.
*
* @param value
* allowed object is
* {@link ArrayOflong }
*
*/
public void setAudienceGroupIds(ArrayOflong value) {
this.audienceGroupIds = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy