package com.microsoft.bingads.v11.campaignmanagement; import java.math.BigDecimal; 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 ConversionGoalRevenue complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ConversionGoalRevenue"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CurrencyCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Type" type="{https://bingads.microsoft.com/CampaignManagement/v11}ConversionGoalRevenueType" minOccurs="0"/> * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConversionGoalRevenue", propOrder = { "currencyCode", "type", "value" }) public class ConversionGoalRevenue { @XmlElement(name = "CurrencyCode", nillable = true) protected String currencyCode; @XmlElement(name = "Type", nillable = true) @XmlSchemaType(name = "string") protected ConversionGoalRevenueType type; @XmlElement(name = "Value", nillable = true) protected BigDecimal value; /** * 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 type property. * * @return * possible object is * {@link ConversionGoalRevenueType } * */ public ConversionGoalRevenueType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link ConversionGoalRevenueType } * */ public void setType(ConversionGoalRevenueType value) { this.type = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setValue(BigDecimal value) { this.value = value; } }