Package com.adyen.model.nexo
Class BalanceInquiryResponse
- java.lang.Object
-
- com.adyen.model.nexo.BalanceInquiryResponse
-
public class BalanceInquiryResponse extends Object
Definition: Content of the Balance Inquiry Response messageType. -- Usage: It conveys the balance and the identification of the associated payment, loyalty or stored value account.Java class for BalanceInquiryResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BalanceInquiryResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="PaymentAccountStatus" type="{}PaymentAccountStatus" minOccurs="0"/> <element name="LoyaltyAccountStatus" type="{}LoyaltyAccountStatus" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected LoyaltyAccountStatusloyaltyAccountStatusThe Loyalty account status.protected PaymentAccountStatuspaymentAccountStatusThe Payment account status.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description BalanceInquiryResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LoyaltyAccountStatusgetLoyaltyAccountStatus()Gets the value of the loyaltyAccountStatus property.PaymentAccountStatusgetPaymentAccountStatus()Gets the value of the paymentAccountStatus property.ResponsegetResponse()Gets the value of the response property.voidsetLoyaltyAccountStatus(LoyaltyAccountStatus value)Sets the value of the loyaltyAccountStatus property.voidsetPaymentAccountStatus(PaymentAccountStatus value)Sets the value of the paymentAccountStatus property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
paymentAccountStatus
protected PaymentAccountStatus paymentAccountStatus
The Payment account status.
-
loyaltyAccountStatus
protected LoyaltyAccountStatus loyaltyAccountStatus
The Loyalty account status.
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getPaymentAccountStatus
public PaymentAccountStatus getPaymentAccountStatus()
Gets the value of the paymentAccountStatus property.- Returns:
- possible object is
PaymentAccountStatus
-
setPaymentAccountStatus
public void setPaymentAccountStatus(PaymentAccountStatus value)
Sets the value of the paymentAccountStatus property.- Parameters:
value- allowed object isPaymentAccountStatus
-
getLoyaltyAccountStatus
public LoyaltyAccountStatus getLoyaltyAccountStatus()
Gets the value of the loyaltyAccountStatus property.- Returns:
- possible object is
LoyaltyAccountStatus
-
setLoyaltyAccountStatus
public void setLoyaltyAccountStatus(LoyaltyAccountStatus value)
Sets the value of the loyaltyAccountStatus property.- Parameters:
value- allowed object isLoyaltyAccountStatus
-
-