com.ingenico.connect.gateway.sdk.java.domain.payment.PaymentApprovalResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
/*
* 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;
import com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.ApprovePaymentCardPaymentMethodSpecificOutput;
import com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.ApprovePaymentMobilePaymentMethodSpecificOutput;
import com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.Payment;
public class PaymentApprovalResponse {
private ApprovePaymentCardPaymentMethodSpecificOutput cardPaymentMethodSpecificOutput = null;
private ApprovePaymentMobilePaymentMethodSpecificOutput mobilePaymentMethodSpecificOutput = null;
private Payment payment = null;
private ApprovePaymentCardPaymentMethodSpecificOutput paymentMethodSpecificOutput = null;
/**
* Object containing additional card payment method specific details
*/
public ApprovePaymentCardPaymentMethodSpecificOutput getCardPaymentMethodSpecificOutput() {
return cardPaymentMethodSpecificOutput;
}
/**
* Object containing additional card payment method specific details
*/
public void setCardPaymentMethodSpecificOutput(ApprovePaymentCardPaymentMethodSpecificOutput value) {
this.cardPaymentMethodSpecificOutput = value;
}
/**
* Object containing additional mobile payment method specific details
*/
public ApprovePaymentMobilePaymentMethodSpecificOutput getMobilePaymentMethodSpecificOutput() {
return mobilePaymentMethodSpecificOutput;
}
/**
* Object containing additional mobile payment method specific details
*/
public void setMobilePaymentMethodSpecificOutput(ApprovePaymentMobilePaymentMethodSpecificOutput value) {
this.mobilePaymentMethodSpecificOutput = value;
}
/**
* Object that holds the payment data
*/
public Payment getPayment() {
return payment;
}
/**
* Object that holds the payment data
*/
public void setPayment(Payment value) {
this.payment = value;
}
/**
* Object containing additional payment method specific details
* Deprecated: this property does not support different outputs for payment methods other than cards. Please use cardPaymentMethodSpecificOutput instead.
*
* @deprecated Use cardPaymentMethodSpecificOutput instead
*/
@Deprecated
public ApprovePaymentCardPaymentMethodSpecificOutput getPaymentMethodSpecificOutput() {
return paymentMethodSpecificOutput;
}
/**
* Object containing additional payment method specific details
* Deprecated: this property does not support different outputs for payment methods other than cards. Please use cardPaymentMethodSpecificOutput instead.
*
* @deprecated Use cardPaymentMethodSpecificOutput instead
*/
@Deprecated
public void setPaymentMethodSpecificOutput(ApprovePaymentCardPaymentMethodSpecificOutput value) {
this.paymentMethodSpecificOutput = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy