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.XmlType; /** * <p>Java class for MaxConversionsBiddingScheme complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MaxConversionsBiddingScheme"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v11}BiddingScheme"> * <sequence> * <element name="MaxCpc" type="{https://bingads.microsoft.com/CampaignManagement/v11}Bid" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MaxConversionsBiddingScheme", propOrder = { "maxCpc" }) public class MaxConversionsBiddingScheme extends BiddingScheme { @XmlElement(name = "MaxCpc", nillable = true) protected Bid maxCpc; /** * Gets the value of the maxCpc property. * * @return * possible object is * {@link Bid } * */ public Bid getMaxCpc() { return maxCpc; } /** * Sets the value of the maxCpc property. * * @param value * allowed object is * {@link Bid } * */ public void setMaxCpc(Bid value) { this.maxCpc = value; } }