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

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

	private String endDate = null;

	private Integer minFrequency = null;

	private String recurringPaymentSequenceIndicator = null;

	/**
	 * Date in YYYYMMDD after which there will be no further charges.
	 */
	public String getEndDate() {
		return endDate;
	}

	/**
	 * Date in YYYYMMDD after which there will be no further charges.
	 */
	public void setEndDate(String value) {
		this.endDate = value;
	}

	/**
	 * Minimum number of days between authorizations.
	 */
	public Integer getMinFrequency() {
		return minFrequency;
	}

	/**
	 * Minimum number of days between authorizations.
	 */
	public void setMinFrequency(Integer value) {
		this.minFrequency = 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 *

* Note: For any first of a recurring the system will automatically create a token as you will need to use a token for any subsequent recurring transactions. In case a token already exists this is indicated in the response with a value of False for the isNewToken property in the response. */ 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 *

* Note: For any first of a recurring the system will automatically create a token as you will need to use a token for any subsequent recurring transactions. In case a token already exists this is indicated in the response with a value of False for the isNewToken property in the response. */ public void setRecurringPaymentSequenceIndicator(String value) { this.recurringPaymentSequenceIndicator = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy