Package com.adyen.model.storedvalue
Enum StoredValueBalanceMergeRequest.ShopperInteractionEnum
- java.lang.Object
-
- java.lang.Enum<StoredValueBalanceMergeRequest.ShopperInteractionEnum>
-
- com.adyen.model.storedvalue.StoredValueBalanceMergeRequest.ShopperInteractionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<StoredValueBalanceMergeRequest.ShopperInteractionEnum>
- Enclosing class:
- StoredValueBalanceMergeRequest
public static enum StoredValueBalanceMergeRequest.ShopperInteractionEnum extends Enum<StoredValueBalanceMergeRequest.ShopperInteractionEnum>
Specifies the sales channel, through which the shopper gives their card details, and whether the shopper is a returning customer. For the web service API, Adyen assumes Ecommerce shopper interaction by default. This field has the following possible values: * `Ecommerce` - Online transactions where the cardholder is present (online). For better authorisation rates, we recommend sending the card security code (CSC) along with the request. * `ContAuth` - Card on file and/or subscription transactions, where the cardholder is known to the merchant (returning customer). If the shopper is present (online), you can supply also the CSC to improve authorisation (one-click payment). * `Moto` - Mail-order and telephone-order transactions where the shopper is in contact with the merchant via email or telephone. * `POS` - Point-of-sale transactions where the shopper is physically present to make a payment using a secure payment terminal.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StoredValueBalanceMergeRequest.ShopperInteractionEnumfromValue(String value)StringgetValue()StringtoString()static StoredValueBalanceMergeRequest.ShopperInteractionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static StoredValueBalanceMergeRequest.ShopperInteractionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ECOMMERCE
public static final StoredValueBalanceMergeRequest.ShopperInteractionEnum ECOMMERCE
-
CONTAUTH
public static final StoredValueBalanceMergeRequest.ShopperInteractionEnum CONTAUTH
-
MOTO
public static final StoredValueBalanceMergeRequest.ShopperInteractionEnum MOTO
-
POS
public static final StoredValueBalanceMergeRequest.ShopperInteractionEnum POS
-
-
Method Detail
-
values
public static StoredValueBalanceMergeRequest.ShopperInteractionEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StoredValueBalanceMergeRequest.ShopperInteractionEnum c : StoredValueBalanceMergeRequest.ShopperInteractionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StoredValueBalanceMergeRequest.ShopperInteractionEnum valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<StoredValueBalanceMergeRequest.ShopperInteractionEnum>
-
fromValue
public static StoredValueBalanceMergeRequest.ShopperInteractionEnum fromValue(String value)
-
-