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 PriceTableRow complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PriceTableRow"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CurrencyCode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="FinalMobileUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring"/> * <element name="FinalUrls" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring"/> * <element name="Header" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Price" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="PriceQualifier" type="{https://bingads.microsoft.com/CampaignManagement/v11}PriceQualifier"/> * <element name="PriceUnit" type="{https://bingads.microsoft.com/CampaignManagement/v11}PriceUnit"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PriceTableRow", propOrder = { "currencyCode", "description", "finalMobileUrls", "finalUrls", "header", "price", "priceQualifier", "priceUnit" }) public class PriceTableRow { @XmlElement(name = "CurrencyCode", required = true, nillable = true) protected String currencyCode; @XmlElement(name = "Description", required = true, nillable = true) protected String description; @XmlElement(name = "FinalMobileUrls", required = true, nillable = true) protected ArrayOfstring finalMobileUrls; @XmlElement(name = "FinalUrls", required = true, nillable = true) protected ArrayOfstring finalUrls; @XmlElement(name = "Header", required = true, nillable = true) protected String header; @XmlElement(name = "Price") protected double price; @XmlElement(name = "PriceQualifier", required = true) @XmlSchemaType(name = "string") protected PriceQualifier priceQualifier; @XmlElement(name = "PriceUnit", required = true) @XmlSchemaType(name = "string") protected PriceUnit priceUnit; /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link String } * */ public String getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link String } * */ public void setCurrencyCode(String value) { this.currencyCode = 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 finalMobileUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getFinalMobileUrls() { return finalMobileUrls; } /** * Sets the value of the finalMobileUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setFinalMobileUrls(ArrayOfstring value) { this.finalMobileUrls = value; } /** * Gets the value of the finalUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getFinalUrls() { return finalUrls; } /** * Sets the value of the finalUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setFinalUrls(ArrayOfstring value) { this.finalUrls = value; } /** * Gets the value of the header property. * * @return * possible object is * {@link String } * */ public String getHeader() { return header; } /** * Sets the value of the header property. * * @param value * allowed object is * {@link String } * */ public void setHeader(String value) { this.header = value; } /** * Gets the value of the price property. * */ public double getPrice() { return price; } /** * Sets the value of the price property. * */ public void setPrice(double value) { this.price = value; } /** * Gets the value of the priceQualifier property. * * @return * possible object is * {@link PriceQualifier } * */ public PriceQualifier getPriceQualifier() { return priceQualifier; } /** * Sets the value of the priceQualifier property. * * @param value * allowed object is * {@link PriceQualifier } * */ public void setPriceQualifier(PriceQualifier value) { this.priceQualifier = value; } /** * Gets the value of the priceUnit property. * * @return * possible object is * {@link PriceUnit } * */ public PriceUnit getPriceUnit() { return priceUnit; } /** * Sets the value of the priceUnit property. * * @param value * allowed object is * {@link PriceUnit } * */ public void setPriceUnit(PriceUnit value) { this.priceUnit = value; } }