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

com.adyen.model.nexo.BalanceInquiryRequest Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy