com.ingenico.connect.gateway.sdk.java.domain.payment.CancelPaymentResponse 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.CancelPaymentCardPaymentMethodSpecificOutput;
import com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.CancelPaymentMobilePaymentMethodSpecificOutput;
import com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.Payment;
/**
* Response to the cancelation of a payment
*/
public class CancelPaymentResponse {
private CancelPaymentCardPaymentMethodSpecificOutput cardPaymentMethodSpecificOutput = null;
private CancelPaymentMobilePaymentMethodSpecificOutput mobilePaymentMethodSpecificOutput = null;
private Payment payment = null;
/**
* Object that holds specific information on cancelled card payments
*/
public CancelPaymentCardPaymentMethodSpecificOutput getCardPaymentMethodSpecificOutput() {
return cardPaymentMethodSpecificOutput;
}
/**
* Object that holds specific information on cancelled card payments
*/
public void setCardPaymentMethodSpecificOutput(CancelPaymentCardPaymentMethodSpecificOutput value) {
this.cardPaymentMethodSpecificOutput = value;
}
/**
* Object that holds specific information on cancelled mobile payments
*/
public CancelPaymentMobilePaymentMethodSpecificOutput getMobilePaymentMethodSpecificOutput() {
return mobilePaymentMethodSpecificOutput;
}
/**
* Object that holds specific information on cancelled mobile payments
*/
public void setMobilePaymentMethodSpecificOutput(CancelPaymentMobilePaymentMethodSpecificOutput value) {
this.mobilePaymentMethodSpecificOutput = value;
}
/**
* Object that holds the payment related properties
*/
public Payment getPayment() {
return payment;
}
/**
* Object that holds the payment related properties
*/
public void setPayment(Payment value) {
this.payment = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy