Enum PayType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ONE_STEPОдностадийный. Платёж сразу списывается с карты в пользу продавца
TWO_STEPДвухстадийный. Деньги блокируются (холдируются) на карте клиента, для списания средств необходим вызов дополнительного метода или подтверждение платежа в Личном кабинете
-
Method Summary
Modifier and Type Method Description StringtoString()final PayTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<PayType>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<PayType>getEntries()Тип проведения платежа -
-
Method Detail
-
valueOf
final PayType valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<PayType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<PayType> getEntries()
Тип проведения платежа
-
-
-
-