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

com.ingenico.connect.gateway.sdk.java.domain.hostedmandatemanagement.CreateHostedMandateManagementResponse 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.hostedmandatemanagement;

public class CreateHostedMandateManagementResponse {

	private String RETURNMAC = null;

	private String hostedMandateManagementId = null;

	private String partialRedirectUrl = null;

	/**
	 * When the customer is returned to your site we will append this property and value to the query-string. You should store this data, so you can identify the returning customer.
	 */
	public String getRETURNMAC() {
		return RETURNMAC;
	}

	/**
	 * When the customer is returned to your site we will append this property and value to the query-string. You should store this data, so you can identify the returning customer.
	 */
	public void setRETURNMAC(String value) {
		this.RETURNMAC = value;
	}

	/**
	 * This is the ID under which the data for this mandate management can be retrieved.
	 */
	public String getHostedMandateManagementId() {
		return hostedMandateManagementId;
	}

	/**
	 * This is the ID under which the data for this mandate management can be retrieved.
	 */
	public void setHostedMandateManagementId(String value) {
		this.hostedMandateManagementId = value;
	}

	/**
	 * The partial URL as generated by our system. You will need to add the protocol and the relevant subdomain to this URL, before redirecting your customer to this URL. A special 'payment' subdomain will always work so you can always add 'https://payment.' at the beginning of this response value to view your hosted mandate management pages.
	 */
	public String getPartialRedirectUrl() {
		return partialRedirectUrl;
	}

	/**
	 * The partial URL as generated by our system. You will need to add the protocol and the relevant subdomain to this URL, before redirecting your customer to this URL. A special 'payment' subdomain will always work so you can always add 'https://payment.' at the beginning of this response value to view your hosted mandate management pages.
	 */
	public void setPartialRedirectUrl(String value) {
		this.partialRedirectUrl = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy