com.microsoft.bingads.v13.campaignmanagement.PriceTableRow Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
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.XmlType;
/**
* Java class for PriceTableRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PriceTableRow", propOrder = {
"currencyCode",
"description",
"finalMobileUrls",
"finalUrls",
"header",
"price",
"priceQualifier",
"priceUnit",
"termsAndConditions",
"termsAndConditionsUrl"
})
public class PriceTableRow {
@XmlElement(name = "CurrencyCode", nillable = true)
protected String currencyCode;
@XmlElement(name = "Description", nillable = true)
protected String description;
@XmlElement(name = "FinalMobileUrls", nillable = true)
protected ArrayOfstring finalMobileUrls;
@XmlElement(name = "FinalUrls", nillable = true)
protected ArrayOfstring finalUrls;
@XmlElement(name = "Header", 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;
@XmlElement(name = "TermsAndConditions", nillable = true)
protected String termsAndConditions;
@XmlElement(name = "TermsAndConditionsUrl", nillable = true)
protected String termsAndConditionsUrl;
/**
* 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;
}
/**
* Gets the value of the termsAndConditions property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTermsAndConditions() {
return termsAndConditions;
}
/**
* Sets the value of the termsAndConditions property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTermsAndConditions(String value) {
this.termsAndConditions = value;
}
/**
* Gets the value of the termsAndConditionsUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTermsAndConditionsUrl() {
return termsAndConditionsUrl;
}
/**
* Sets the value of the termsAndConditionsUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTermsAndConditionsUrl(String value) {
this.termsAndConditionsUrl = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy