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

com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.NonSepaDirectDebitPaymentMethodSpecificInput 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;

import com.ingenico.connect.gateway.sdk.java.domain.definitions.AbstractPaymentMethodSpecificInput;

public class NonSepaDirectDebitPaymentMethodSpecificInput extends AbstractPaymentMethodSpecificInput {

	private String dateCollect = null;

	private String directDebitText = null;

	private Boolean isRecurring = null;

	private NonSepaDirectDebitPaymentProduct705SpecificInput paymentProduct705SpecificInput = null;

	private NonSepaDirectDebitPaymentProduct730SpecificInput paymentProduct730SpecificInput = null;

	private String recurringPaymentSequenceIndicator = null;

	private Boolean requiresApproval = null;

	private String token = null;

	private Boolean tokenize = null;

	/**
	 * Direct Debit payment collection date
* Format: YYYYMMDD */ public String getDateCollect() { return dateCollect; } /** * Direct Debit payment collection date
* Format: YYYYMMDD */ public void setDateCollect(String value) { this.dateCollect = value; } /** * Descriptor intended to identify the transaction on the customer's bank statement */ public String getDirectDebitText() { return directDebitText; } /** * Descriptor intended to identify the transaction on the customer's bank statement */ public void setDirectDebitText(String value) { this.directDebitText = value; } /** * Indicates if this transaction is of a one-off or a recurring type *
  • 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 *
  • true - This is recurring *
  • false - This is one-off *
*/ public void setIsRecurring(Boolean value) { this.isRecurring = value; } /** * Object containing UK Direct Debit specific details */ public NonSepaDirectDebitPaymentProduct705SpecificInput getPaymentProduct705SpecificInput() { return paymentProduct705SpecificInput; } /** * Object containing UK Direct Debit specific details */ public void setPaymentProduct705SpecificInput(NonSepaDirectDebitPaymentProduct705SpecificInput value) { this.paymentProduct705SpecificInput = value; } /** * Object containing ACH specific details */ public NonSepaDirectDebitPaymentProduct730SpecificInput getPaymentProduct730SpecificInput() { return paymentProduct730SpecificInput; } /** * Object containing ACH specific details */ public void setPaymentProduct730SpecificInput(NonSepaDirectDebitPaymentProduct730SpecificInput value) { this.paymentProduct730SpecificInput = value; } /** *
  • 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; } /** *
  • 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; } /** *
  • true - The payment requires approval before the funds will be captured using the Approve payment or Capture payment API. *
  • false - The payment does not require approval, and the funds will be captured automatically. *
*/ public Boolean getRequiresApproval() { return requiresApproval; } /** *
  • true - The payment requires approval before the funds will be captured using the Approve payment or Capture payment API. *
  • false - The payment does not require approval, and the funds will be captured automatically. *
*/ public void setRequiresApproval(Boolean value) { this.requiresApproval = value; } /** * ID of the stored token that contains the bank account details to be debited */ public String getToken() { return token; } /** * ID of the stored token that contains the bank account details to be debited */ public void setToken(String value) { this.token = value; } /** * Indicates if this transaction should be tokenized *
  • 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 *
  • 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