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

com.adyen.model.nexo.StoredValueAccountStatus 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.math.BigDecimal;


/**
 * Definition: Data related to the result of the stored value card transaction. -- Usage: It contains: - the identification of the stored value accounts or the stored value cards  - the identification of the transaction by the stored value host - the balance of the stored value account if relevant
 *
 * 

Java class for StoredValueAccountStatus complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="StoredValueAccountStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="StoredValueAccountID" type="{}StoredValueAccountID"/>
 *       </sequence>
 *       <attribute name="CurrentBalance" type="{}SimpleAmountType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StoredValueAccountStatus", propOrder = { "storedValueAccountID" }) public class StoredValueAccountStatus { /** * The Stored value account id. */ @XmlElement(name = "StoredValueAccountID", required = true) protected StoredValueAccountID storedValueAccountID; /** * The Current balance. */ @XmlAttribute(name = "CurrentBalance") protected BigDecimal currentBalance; /** * Gets the value of the storedValueAccountID property. * * @return possible object is {@link StoredValueAccountID } */ public StoredValueAccountID getStoredValueAccountID() { return storedValueAccountID; } /** * Sets the value of the storedValueAccountID property. * * @param value allowed object is {@link StoredValueAccountID } */ public void setStoredValueAccountID(StoredValueAccountID value) { this.storedValueAccountID = value; } /** * Gets the value of the currentBalance property. * * @return possible object is {@link BigDecimal } */ public BigDecimal getCurrentBalance() { return currentBalance; } /** * Sets the value of the currentBalance property. * * @param value allowed object is {@link BigDecimal } */ public void setCurrentBalance(BigDecimal value) { this.currentBalance = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy