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

com.ingenico.direct.domain.CardRecurrenceDetails Maven / Gradle / Ivy

/*
 * This class was auto-generated from the API references found at
 * https://support.direct.ingenico.com/documentation/api/reference
 */
package com.ingenico.direct.domain;

/**
 * Object containing data related to recurring
 */
public class CardRecurrenceDetails {

	private String recurringPaymentSequenceIndicator = null;

	/**
	 * * 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