package com.microsoft.bingads.v11.campaignmanagement; import java.util.Collection; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="AudienceIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/> * <element name="Type" type="{https://bingads.microsoft.com/CampaignManagement/v11}AudienceType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "audienceIds", "type" }) @XmlRootElement(name = "GetAudiencesByIdsRequest") public class GetAudiencesByIdsRequest { @XmlElement(name = "AudienceIds", nillable = true) protected ArrayOflong audienceIds; @XmlElement(name = "Type", type = String.class) @XmlJavaTypeAdapter(Adapter6 .class) protected Collection<AudienceType> type; /** * Gets the value of the audienceIds property. * * @return * possible object is * {@link ArrayOflong } * */ public ArrayOflong getAudienceIds() { return audienceIds; } /** * Sets the value of the audienceIds property. * * @param value * allowed object is * {@link ArrayOflong } * */ public void setAudienceIds(ArrayOflong value) { this.audienceIds = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public Collection<AudienceType> getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(Collection<AudienceType> value) { this.type = value; } }