package com.microsoft.bingads.v11.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 PriceAdExtension complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PriceAdExtension"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v11}AdExtension"> * <sequence> * <element name="Language" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="PriceExtensionType" type="{https://bingads.microsoft.com/CampaignManagement/v11}PriceExtensionType"/> * <element name="TableRows" type="{https://bingads.microsoft.com/CampaignManagement/v11}ArrayOfPriceTableRow"/> * <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="UrlCustomParameters" type="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V11}ArrayOfCustomParameter"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PriceAdExtension", propOrder = { "language", "priceExtensionType", "tableRows", "trackingUrlTemplate", "urlCustomParameters" }) public class PriceAdExtension extends AdExtension { @XmlElement(name = "Language", required = true, nillable = true) protected String language; @XmlElement(name = "PriceExtensionType", required = true) @XmlSchemaType(name = "string") protected PriceExtensionType priceExtensionType; @XmlElement(name = "TableRows", required = true, nillable = true) protected ArrayOfPriceTableRow tableRows; @XmlElement(name = "TrackingUrlTemplate", required = true, nillable = true) protected String trackingUrlTemplate; @XmlElement(name = "UrlCustomParameters", required = true, nillable = true) protected ArrayOfCustomParameter urlCustomParameters; /** * Gets the value of the language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the priceExtensionType property. * * @return * possible object is * {@link PriceExtensionType } * */ public PriceExtensionType getPriceExtensionType() { return priceExtensionType; } /** * Sets the value of the priceExtensionType property. * * @param value * allowed object is * {@link PriceExtensionType } * */ public void setPriceExtensionType(PriceExtensionType value) { this.priceExtensionType = value; } /** * Gets the value of the tableRows property. * * @return * possible object is * {@link ArrayOfPriceTableRow } * */ public ArrayOfPriceTableRow getTableRows() { return tableRows; } /** * Sets the value of the tableRows property. * * @param value * allowed object is * {@link ArrayOfPriceTableRow } * */ public void setTableRows(ArrayOfPriceTableRow value) { this.tableRows = value; } /** * Gets the value of the trackingUrlTemplate property. * * @return * possible object is * {@link String } * */ public String getTrackingUrlTemplate() { return trackingUrlTemplate; } /** * Sets the value of the trackingUrlTemplate property. * * @param value * allowed object is * {@link String } * */ public void setTrackingUrlTemplate(String value) { this.trackingUrlTemplate = value; } /** * Gets the value of the urlCustomParameters property. * * @return * possible object is * {@link ArrayOfCustomParameter } * */ public ArrayOfCustomParameter getUrlCustomParameters() { return urlCustomParameters; } /** * Sets the value of the urlCustomParameters property. * * @param value * allowed object is * {@link ArrayOfCustomParameter } * */ public void setUrlCustomParameters(ArrayOfCustomParameter value) { this.urlCustomParameters = value; } }