public enum BillingSource extends Enum<BillingSource>
Java class for BillingSource.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BillingSource">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CONTRACTED"/>
<enumeration value="DFP_VOLUME"/>
<enumeration value="THIRD_PARTY_VOLUME"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CONTRACTED
Charge based on the quantity of impressions, clicks, or days booked, regardless of
what actually delivered.
|
DFP_VOLUME
Charge based on what actually delivered counted by DFP
|
THIRD_PARTY_VOLUME
Charge based on what actually delivered counted by third party ads server
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static BillingSource |
fromValue(String v) |
String |
value() |
static BillingSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BillingSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BillingSource CONTRACTED
public static final BillingSource DFP_VOLUME
public static final BillingSource THIRD_PARTY_VOLUME
public static final BillingSource UNKNOWN
public static BillingSource[] values()
for (BillingSource c : BillingSource.values()) System.out.println(c);
public static BillingSource valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static BillingSource fromValue(String v)
Copyright © 2018. All Rights Reserved.