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

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

public class MobilePaymentProduct320SpecificInput {

	private String cardholderName = null;

	private GPayThreeDSecure threeDSecure = null;

	/**
	 * The card holder's name on the card.
* The encrypted payment data can be found in property paymentMethodData.tokenizationData.info.billingAddress.name of the PaymentData.toJson() result. */ public String getCardholderName() { return cardholderName; } /** * The card holder's name on the card.
* The encrypted payment data can be found in property paymentMethodData.tokenizationData.info.billingAddress.name of the PaymentData.toJson() result. */ public void setCardholderName(String value) { this.cardholderName = value; } /** * Object containing specific data regarding 3-D Secure */ public GPayThreeDSecure getThreeDSecure() { return threeDSecure; } /** * Object containing specific data regarding 3-D Secure */ public void setThreeDSecure(GPayThreeDSecure value) { this.threeDSecure = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy