public static enum CreditNote.ReasonCode extends Enum<CreditNote.ReasonCode>
| Enum Constant and Description |
|---|
_UNKNOWN |
CHARGEBACK |
FRAUDULENT |
ORDER_CANCELLATION |
ORDER_CHANGE |
OTHER |
PRODUCT_UNSATISFACTORY |
SERVICE_UNSATISFACTORY |
SUBSCRIPTION_CANCELLATION |
SUBSCRIPTION_CHANGE |
SUBSCRIPTION_PAUSE |
WAIVER |
WRITE_OFF |
| Modifier and Type | Method and Description |
|---|---|
static CreditNote.ReasonCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreditNote.ReasonCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreditNote.ReasonCode WRITE_OFF
public static final CreditNote.ReasonCode SUBSCRIPTION_CHANGE
public static final CreditNote.ReasonCode SUBSCRIPTION_CANCELLATION
public static final CreditNote.ReasonCode SUBSCRIPTION_PAUSE
public static final CreditNote.ReasonCode CHARGEBACK
public static final CreditNote.ReasonCode PRODUCT_UNSATISFACTORY
public static final CreditNote.ReasonCode SERVICE_UNSATISFACTORY
public static final CreditNote.ReasonCode ORDER_CHANGE
public static final CreditNote.ReasonCode ORDER_CANCELLATION
public static final CreditNote.ReasonCode WAIVER
public static final CreditNote.ReasonCode OTHER
public static final CreditNote.ReasonCode FRAUDULENT
public static final CreditNote.ReasonCode _UNKNOWN
public static CreditNote.ReasonCode[] values()
for (CreditNote.ReasonCode c : CreditNote.ReasonCode.values()) System.out.println(c);
public static CreditNote.ReasonCode 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 nullCopyright © 2023 ChargeBee. All rights reserved.