All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v13.campaignmanagement.Audience Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 13.0.22.1
Show newest version

package com.microsoft.bingads.v13.campaignmanagement;

import java.util.Collection;
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.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for Audience complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Audience", propOrder = { "audienceNetworkSize", "customerShare", "description", "forwardCompatibilityMap", "id", "membershipDuration", "name", "parentId", "scope", "searchSize", "supportedCampaignTypes", "type" }) @XmlSeeAlso({ RemarketingList.class, CustomAudience.class, InMarketAudience.class, ProductAudience.class, SimilarRemarketingList.class, CombinedList.class, CustomerList.class, ImpressionBasedRemarketingList.class }) public class Audience { @XmlElement(name = "AudienceNetworkSize", nillable = true) protected Long audienceNetworkSize; @XmlElement(name = "CustomerShare", nillable = true) protected CustomerShare customerShare; @XmlElement(name = "Description", nillable = true) protected String description; @XmlElement(name = "ForwardCompatibilityMap", nillable = true) protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; @XmlElement(name = "Id", nillable = true) protected Long id; @XmlElement(name = "MembershipDuration", nillable = true) protected Integer membershipDuration; @XmlElement(name = "Name", nillable = true) protected String name; @XmlElement(name = "ParentId", nillable = true) protected Long parentId; @XmlElement(name = "Scope", nillable = true) @XmlSchemaType(name = "string") protected EntityScope scope; @XmlElement(name = "SearchSize", nillable = true) protected Long searchSize; @XmlElement(name = "SupportedCampaignTypes", nillable = true) protected ArrayOfstring supportedCampaignTypes; @XmlElement(name = "Type", type = String.class) @XmlJavaTypeAdapter(Adapter15 .class) protected Collection type; /** * Gets the value of the audienceNetworkSize property. * * @return * possible object is * {@link Long } * */ public Long getAudienceNetworkSize() { return audienceNetworkSize; } /** * Sets the value of the audienceNetworkSize property. * * @param value * allowed object is * {@link Long } * */ public void setAudienceNetworkSize(Long value) { this.audienceNetworkSize = value; } /** * Gets the value of the customerShare property. * * @return * possible object is * {@link CustomerShare } * */ public CustomerShare getCustomerShare() { return customerShare; } /** * Sets the value of the customerShare property. * * @param value * allowed object is * {@link CustomerShare } * */ public void setCustomerShare(CustomerShare value) { this.customerShare = 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 forwardCompatibilityMap property. * * @return * possible object is * {@link ArrayOfKeyValuePairOfstringstring } * */ public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { return forwardCompatibilityMap; } /** * Sets the value of the forwardCompatibilityMap property. * * @param value * allowed object is * {@link ArrayOfKeyValuePairOfstringstring } * */ public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { this.forwardCompatibilityMap = 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 membershipDuration property. * * @return * possible object is * {@link Integer } * */ public Integer getMembershipDuration() { return membershipDuration; } /** * Sets the value of the membershipDuration property. * * @param value * allowed object is * {@link Integer } * */ public void setMembershipDuration(Integer value) { this.membershipDuration = 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; } /** * Gets the value of the parentId property. * * @return * possible object is * {@link Long } * */ public Long getParentId() { return parentId; } /** * Sets the value of the parentId property. * * @param value * allowed object is * {@link Long } * */ public void setParentId(Long value) { this.parentId = value; } /** * Gets the value of the scope property. * * @return * possible object is * {@link EntityScope } * */ public EntityScope getScope() { return scope; } /** * Sets the value of the scope property. * * @param value * allowed object is * {@link EntityScope } * */ public void setScope(EntityScope value) { this.scope = value; } /** * Gets the value of the searchSize property. * * @return * possible object is * {@link Long } * */ public Long getSearchSize() { return searchSize; } /** * Sets the value of the searchSize property. * * @param value * allowed object is * {@link Long } * */ public void setSearchSize(Long value) { this.searchSize = value; } /** * Gets the value of the supportedCampaignTypes property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getSupportedCampaignTypes() { return supportedCampaignTypes; } /** * Sets the value of the supportedCampaignTypes property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setSupportedCampaignTypes(ArrayOfstring value) { this.supportedCampaignTypes = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public Collection getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(Collection value) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy