com.adyen.model.nexo.BalanceInquiryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Content of the Balance Inquiry Request messageType. -- Usage: It conveys Information related to the account for which a Balance Inquiry is requested
*
* Java class for BalanceInquiryRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BalanceInquiryRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PaymentAccountReq" type="{}PaymentAccountReq" minOccurs="0"/>
* <element name="LoyaltyAccountReq" type="{}LoyaltyAccountReq" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BalanceInquiryRequest", propOrder = {
"paymentAccountReq",
"loyaltyAccountReq"
})
public class BalanceInquiryRequest {
/**
* The Payment account req.
*/
@XmlElement(name = "PaymentAccountReq")
protected PaymentAccountReq paymentAccountReq;
/**
* The Loyalty account req.
*/
@XmlElement(name = "LoyaltyAccountReq")
protected LoyaltyAccountReq loyaltyAccountReq;
/**
* Gets the value of the paymentAccountReq property.
*
* @return possible object is {@link PaymentAccountReq }
*/
public PaymentAccountReq getPaymentAccountReq() {
return paymentAccountReq;
}
/**
* Sets the value of the paymentAccountReq property.
*
* @param value allowed object is {@link PaymentAccountReq }
*/
public void setPaymentAccountReq(PaymentAccountReq value) {
this.paymentAccountReq = value;
}
/**
* Gets the value of the loyaltyAccountReq property.
*
* @return possible object is {@link LoyaltyAccountReq }
*/
public LoyaltyAccountReq getLoyaltyAccountReq() {
return loyaltyAccountReq;
}
/**
* Sets the value of the loyaltyAccountReq property.
*
* @param value allowed object is {@link LoyaltyAccountReq }
*/
public void setLoyaltyAccountReq(LoyaltyAccountReq value) {
this.loyaltyAccountReq = value;
}
}