
com.microsoft.bingads.v13.campaignmanagement.MaxConversionValueBiddingScheme Maven / Gradle / Ivy
package com.microsoft.bingads.v13.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;
/**
* Java class for MaxConversionValueBiddingScheme complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MaxConversionValueBiddingScheme">
* <complexContent>
* <extension base="{https://bingads.microsoft.com/CampaignManagement/v13}BiddingScheme">
* <sequence>
* <element name="TargetRoas" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MaxConversionValueBiddingScheme", propOrder = {
"targetRoas"
})
public class MaxConversionValueBiddingScheme
extends BiddingScheme
{
@XmlElement(name = "TargetRoas", nillable = true)
protected Double targetRoas;
/**
* Gets the value of the targetRoas property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getTargetRoas() {
return targetRoas;
}
/**
* Sets the value of the targetRoas property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setTargetRoas(Double value) {
this.targetRoas = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy