Package com.adyen.model.binlookup
Class Recurring
- java.lang.Object
-
- com.adyen.model.binlookup.Recurring
-
public class Recurring extends Object
Recurring
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRecurring.ContractEnumThe type of recurring contract to be used.static classRecurring.TokenServiceEnumThe name of the token service.
-
Constructor Summary
Constructors Constructor Description Recurring()
-
Method Summary
-
-
-
Method Detail
-
contract
public Recurring contract(Recurring.ContractEnum contract)
-
getContract
public Recurring.ContractEnum getContract()
The type of recurring contract to be used. Possible values: * `ONECLICK` – Payment details can be used to initiate a one-click payment, where the shopper enters the [card security code (CVC/CVV)](https://docs.adyen.com/payment-glossary#cardsecuritycodecvccvvcid). * `RECURRING` – Payment details can be used without the card security code to initiate [card-not-present transactions](https://docs.adyen.com/payment-glossary#cardnotpresentcnp). * `ONECLICK,RECURRING` – Payment details can be used regardless of whether the shopper is on your site or not. * `PAYOUT` – Payment details can be used to [make a payout](https://docs.adyen.com/features/third-party-payouts).- Returns:
- contract
-
setContract
public void setContract(Recurring.ContractEnum contract)
-
getRecurringDetailName
public String getRecurringDetailName()
A descriptive name for this detail.- Returns:
- recurringDetailName
-
setRecurringDetailName
public void setRecurringDetailName(String recurringDetailName)
-
getRecurringExpiry
public Date getRecurringExpiry()
Date after which no further authorisations shall be performed. Only for 3D Secure 2.- Returns:
- recurringExpiry
-
setRecurringExpiry
public void setRecurringExpiry(Date recurringExpiry)
-
getRecurringFrequency
public String getRecurringFrequency()
Minimum number of days between authorisations. Only for 3D Secure 2.- Returns:
- recurringFrequency
-
setRecurringFrequency
public void setRecurringFrequency(String recurringFrequency)
-
tokenService
public Recurring tokenService(Recurring.TokenServiceEnum tokenService)
-
getTokenService
public Recurring.TokenServiceEnum getTokenService()
The name of the token service.- Returns:
- tokenService
-
setTokenService
public void setTokenService(Recurring.TokenServiceEnum tokenService)
-
-