All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.SepaDirectDebitPaymentMethodSpecificInput Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
/*
 * This class was auto-generated from the API references found at
 * https://epayments-api.developer-ingenico.com/s2sapi/v1/
 */
package com.ingenico.connect.gateway.sdk.java.domain.payment.definitions;

public class SepaDirectDebitPaymentMethodSpecificInput extends AbstractSepaDirectDebitPaymentMethodSpecificInput {

	private String dateCollect = null;

	private String directDebitText = null;

	private Boolean isRecurring = null;

	private SepaDirectDebitPaymentProduct771SpecificInput paymentProduct771SpecificInput = null;

	private String recurringPaymentSequenceIndicator = null;

	private String token = null;

	private Boolean tokenize = null;

	/**
	 * Changed date for direct debit collection. Only relevant for legacy SEPA Direct Debit.
* Format: YYYYMMDD */ public String getDateCollect() { return dateCollect; } /** * Changed date for direct debit collection. Only relevant for legacy SEPA Direct Debit.
* Format: YYYYMMDD */ public void setDateCollect(String value) { this.dateCollect = value; } /** * Description of the transaction that will appear on the customer bank statement to aid the customer in recognizing the transaction. Only relevant for legacy SEPA Direct Debit. */ public String getDirectDebitText() { return directDebitText; } /** * Description of the transaction that will appear on the customer bank statement to aid the customer in recognizing the transaction. Only relevant for legacy SEPA Direct Debit. */ public void setDirectDebitText(String value) { this.directDebitText = value; } /** * Indicates if this transaction is of a one-off or a recurring type. Only relevant for legacy SEPA Direct Debit. *
  • true - This is recurring *
  • false - This is one-off *
*/ public Boolean getIsRecurring() { return isRecurring; } /** * Indicates if this transaction is of a one-off or a recurring type. Only relevant for legacy SEPA Direct Debit. *
  • true - This is recurring *
  • false - This is one-off *
*/ public void setIsRecurring(Boolean value) { this.isRecurring = value; } /** * Object containing information specific to SEPA Direct Debit */ public SepaDirectDebitPaymentProduct771SpecificInput getPaymentProduct771SpecificInput() { return paymentProduct771SpecificInput; } /** * Object containing information specific to SEPA Direct Debit */ public void setPaymentProduct771SpecificInput(SepaDirectDebitPaymentProduct771SpecificInput value) { this.paymentProduct771SpecificInput = value; } /** * Only relevant for legacy SEPA Direct Debit.
  • first = This transaction is the first of a series of recurring transactions *
  • recurring = This transaction is a subsequent transaction in a series of recurring transactions *
  • last = This transaction is the last transaction of a series of recurring transactions *
*/ public String getRecurringPaymentSequenceIndicator() { return recurringPaymentSequenceIndicator; } /** * Only relevant for legacy SEPA Direct Debit.
  • first = This transaction is the first of a series of recurring transactions *
  • recurring = This transaction is a subsequent transaction in a series of recurring transactions *
  • last = This transaction is the last transaction of a series of recurring transactions *
*/ public void setRecurringPaymentSequenceIndicator(String value) { this.recurringPaymentSequenceIndicator = value; } /** * ID of the token that holds previously stored SEPA Direct Debit account and mandate data. Only relevant for legacy SEPA Direct Debit. */ public String getToken() { return token; } /** * ID of the token that holds previously stored SEPA Direct Debit account and mandate data. Only relevant for legacy SEPA Direct Debit. */ public void setToken(String value) { this.token = value; } /** * Indicates if this transaction should be tokenized. Only relevant for legacy SEPA Direct Debit. *
  • true - Tokenize the transaction *
  • false - Do not tokenize the transaction, unless it would be tokenized by other means such as auto-tokenization of recurring payments. *
*/ public Boolean getTokenize() { return tokenize; } /** * Indicates if this transaction should be tokenized. Only relevant for legacy SEPA Direct Debit. *
  • true - Tokenize the transaction *
  • false - Do not tokenize the transaction, unless it would be tokenized by other means such as auto-tokenization of recurring payments. *
*/ public void setTokenize(Boolean value) { this.tokenize = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy