
com.google.api.ads.dfp.jaxws.v201505.BillingSchedule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
DFP specific AppEngine components.
package com.google.api.ads.dfp.jaxws.v201505;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for BillingSchedule.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="BillingSchedule">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="PREPAID"/>
* <enumeration value="END_OF_THE_CAMPAIGN"/>
* <enumeration value="STRAIGHTLINE"/>
* <enumeration value="PRORATED"/>
* <enumeration value="UNKNOWN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "BillingSchedule")
@XmlEnum
public enum BillingSchedule {
/**
*
* Charged based on the contracted value after the first month of the campaign.
*
*
*/
PREPAID,
/**
*
* Charged based on the contracted value after the last month of the campaign.
*
*
*/
END_OF_THE_CAMPAIGN,
/**
*
* Use a billing source of contracted with a billing schedule of straightline to bill your
* advertiser the same amount each month, regardless of the number of days in each month.
*
*
*/
STRAIGHTLINE,
/**
*
* Use a billing source of contracted with a billing schedule of prorated to bill your
* advertiser proportionally based on the amount of days in each month.
*
*
*/
PRORATED,
/**
*
* The value returned if the actual value is not exposed by the requested API version.
*
*
*/
UNKNOWN;
public String value() {
return name();
}
public static BillingSchedule fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy