package com.microsoft.bingads.v10.adinsight; 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; /** * <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="CategoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="LanguageCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "categoryName", "domainName", "languageCode" }) @XmlRootElement(name = "GetCategoryListRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service") public class GetCategoryListRequest { @XmlElement(name = "CategoryName", namespace = "Microsoft.Advertiser.AdInsight.Api.Service", nillable = true) protected String categoryName; @XmlElement(name = "DomainName", namespace = "Microsoft.Advertiser.AdInsight.Api.Service", nillable = true) protected String domainName; @XmlElement(name = "LanguageCode", namespace = "Microsoft.Advertiser.AdInsight.Api.Service", nillable = true) protected String languageCode; /** * Gets the value of the categoryName property. * * @return * possible object is * {@link String } * */ public String getCategoryName() { return categoryName; } /** * Sets the value of the categoryName property. * * @param value * allowed object is * {@link String } * */ public void setCategoryName(String value) { this.categoryName = value; } /** * Gets the value of the domainName property. * * @return * possible object is * {@link String } * */ public String getDomainName() { return domainName; } /** * Sets the value of the domainName property. * * @param value * allowed object is * {@link String } * */ public void setDomainName(String value) { this.domainName = value; } /** * Gets the value of the languageCode property. * * @return * possible object is * {@link String } * */ public String getLanguageCode() { return languageCode; } /** * Sets the value of the languageCode property. * * @param value * allowed object is * {@link String } * */ public void setLanguageCode(String value) { this.languageCode = value; } }