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

com.ingenico.direct.domain.MobilePaymentMethodSpecificOutput 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 the mobile payment method details
 */
public class MobilePaymentMethodSpecificOutput {

	private String authorisationCode = null;

	private CardFraudResults fraudResults = null;

	private String network = null;

	private MobilePaymentData paymentData = null;

	private Integer paymentProductId = null;

	private ThreeDSecureResults threeDSecureResults = null;

	/**
	 * Card Authorization code as returned by the acquirer
	 */
	public String getAuthorisationCode() {
		return authorisationCode;
	}

	/**
	 * Card Authorization code as returned by the acquirer
	 */
	public void setAuthorisationCode(String value) {
		this.authorisationCode = value;
	}

	/**
	 * Fraud results contained in the CardFraudResults object
	 */
	public CardFraudResults getFraudResults() {
		return fraudResults;
	}

	/**
	 * Fraud results contained in the CardFraudResults object
	 */
	public void setFraudResults(CardFraudResults value) {
		this.fraudResults = value;
	}

	/**
	 * Deprecated: This field is not used by any payment product
	 */
	public String getNetwork() {
		return network;
	}

	/**
	 * Deprecated: This field is not used by any payment product
	 */
	public void setNetwork(String value) {
		this.network = value;
	}

	/**
	 * Object containing payment details
	 */
	public MobilePaymentData getPaymentData() {
		return paymentData;
	}

	/**
	 * Object containing payment details
	 */
	public void setPaymentData(MobilePaymentData value) {
		this.paymentData = value;
	}

	/**
	 * Payment product identifier - Please see [payment products](https://support.direct.ingenico.com/documentation/api/reference/index.html#tag/Products) for a full overview of possible values.
	 */
	public Integer getPaymentProductId() {
		return paymentProductId;
	}

	/**
	 * Payment product identifier - Please see [payment products](https://support.direct.ingenico.com/documentation/api/reference/index.html#tag/Products) for a full overview of possible values.
	 */
	public void setPaymentProductId(Integer value) {
		this.paymentProductId = value;
	}

	/**
	 * 3D Secure results object
	 */
	public ThreeDSecureResults getThreeDSecureResults() {
		return threeDSecureResults;
	}

	/**
	 * 3D Secure results object
	 */
	public void setThreeDSecureResults(ThreeDSecureResults value) {
		this.threeDSecureResults = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy