public static enum PaymentsRequest.RecurringProcessingModelEnum extends Enum<PaymentsRequest.RecurringProcessingModelEnum>
| Enum Constant and Description |
|---|
CARD_ON_FILE
Card details are stored to enable one-click or omnichannel journeys, or simply to streamline the checkout process.
|
SUBSCRIPTION
A transaction for a fixed or variable amount, which follows a fixed schedule.
|
UNSCHEDULED_CARD_ON_FILE
A transaction that occurs on a non-fixed schedule and/or have variable amounts.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PaymentsRequest.RecurringProcessingModelEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentsRequest.RecurringProcessingModelEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Subscription") public static final PaymentsRequest.RecurringProcessingModelEnum SUBSCRIPTION
@SerializedName(value="CardOnFile") public static final PaymentsRequest.RecurringProcessingModelEnum CARD_ON_FILE
@SerializedName(value="UnscheduledCardOnFile") public static final PaymentsRequest.RecurringProcessingModelEnum UNSCHEDULED_CARD_ON_FILE
public static PaymentsRequest.RecurringProcessingModelEnum[] values()
for (PaymentsRequest.RecurringProcessingModelEnum c : PaymentsRequest.RecurringProcessingModelEnum.values()) System.out.println(c);
public static PaymentsRequest.RecurringProcessingModelEnum 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 toString()
toString in class Enum<PaymentsRequest.RecurringProcessingModelEnum>Copyright © 2022. All rights reserved.