package com.microsoft.bingads.v10.campaignmanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for RemarketingList complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RemarketingList"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/> * <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="MembershipDuration" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ParentId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="Rule" type="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10}RemarketingRule" minOccurs="0"/> * <element name="Scope" type="{https://bingads.microsoft.com/CampaignManagement/v10}EntityScope" minOccurs="0"/> * <element name="TagId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RemarketingList", propOrder = { "description", "forwardCompatibilityMap", "id", "membershipDuration", "name", "parentId", "rule", "scope", "tagId" }) public class RemarketingList { @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 = "Rule", nillable = true) protected RemarketingRule rule; @XmlElement(name = "Scope", nillable = true) @XmlSchemaType(name = "string") protected EntityScope scope; @XmlElement(name = "TagId", nillable = true) protected Long tagId; /** * 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 rule property. * * @return * possible object is * {@link RemarketingRule } * */ public RemarketingRule getRule() { return rule; } /** * Sets the value of the rule property. * * @param value * allowed object is * {@link RemarketingRule } * */ public void setRule(RemarketingRule value) { this.rule = 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 tagId property. * * @return * possible object is * {@link Long } * */ public Long getTagId() { return tagId; } /** * Sets the value of the tagId property. * * @param value * allowed object is * {@link Long } * */ public void setTagId(Long value) { this.tagId = value; } }