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

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

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

/**
 * Please find below specific input fields for payment product 4101 (UPI)
 */
public class RedirectPaymentProduct4101SpecificInput {

	private String displayName = null;

	private String integrationType = null;

	private String virtualPaymentAddress = null;

	/**
	 * The merchant name as shown to the customer in some payment applications.
	 */
	public String getDisplayName() {
		return displayName;
	}

	/**
	 * The merchant name as shown to the customer in some payment applications.
	 */
	public void setDisplayName(String value) {
		this.displayName = value;
	}

	/**
	 * The value of this property must be 'vpa', 'desktopQRCode', or 'urlIntent'.
	 */
	public String getIntegrationType() {
		return integrationType;
	}

	/**
	 * The value of this property must be 'vpa', 'desktopQRCode', or 'urlIntent'.
	 */
	public void setIntegrationType(String value) {
		this.integrationType = value;
	}

	/**
	 * The Virtual Payment Address (VPA) of the customer. The '+' character is not allowed in this property for transactions that are processed by TechProcess Payment Platform.
	 */
	public String getVirtualPaymentAddress() {
		return virtualPaymentAddress;
	}

	/**
	 * The Virtual Payment Address (VPA) of the customer. The '+' character is not allowed in this property for transactions that are processed by TechProcess Payment Platform.
	 */
	public void setVirtualPaymentAddress(String value) {
		this.virtualPaymentAddress = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy