public enum AvailableBillingErrorReason extends Enum<AvailableBillingErrorReason>
Java class for AvailableBillingError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AvailableBillingError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="BILLING_SOURCE_IS_NOT_AVAILABLE"/>
<enumeration value="BILLING_SCHEDULE_IS_NOT_AVAILABLE"/>
<enumeration value="BILLING_CAP_IS_NOT_AVAILABLE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BILLING_CAP_IS_NOT_AVAILABLE
The billing cap provided is not available in proposal network settings.
|
BILLING_SCHEDULE_IS_NOT_AVAILABLE
The billing schedule provided is not available in proposal network settings.
|
BILLING_SOURCE_IS_NOT_AVAILABLE
The billing source provided is not available in proposal network settings.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static AvailableBillingErrorReason |
fromValue(String v) |
String |
value() |
static AvailableBillingErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AvailableBillingErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AvailableBillingErrorReason BILLING_SOURCE_IS_NOT_AVAILABLE
public static final AvailableBillingErrorReason BILLING_SCHEDULE_IS_NOT_AVAILABLE
public static final AvailableBillingErrorReason BILLING_CAP_IS_NOT_AVAILABLE
public static final AvailableBillingErrorReason UNKNOWN
public static AvailableBillingErrorReason[] values()
for (AvailableBillingErrorReason c : AvailableBillingErrorReason.values()) System.out.println(c);
public static AvailableBillingErrorReason 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 AvailableBillingErrorReason fromValue(String v)
Copyright © 2018. All Rights Reserved.