com.xerox.amazonws.typica.fps.jaxb.DebtBalance Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.10.06 at 09:30:16 PM CEST
//
package com.xerox.amazonws.typica.fps.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DebtBalance complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DebtBalance">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AvailableBalance" type="{http://fps.amazonaws.com/doc/2007-01-08/}Amount"/>
* <element name="PendingOutBalance" type="{http://fps.amazonaws.com/doc/2007-01-08/}Amount" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DebtBalance", propOrder = {
"availableBalance",
"pendingOutBalance"
})
public class DebtBalance {
@XmlElement(name = "AvailableBalance", required = true)
protected Amount availableBalance;
@XmlElement(name = "PendingOutBalance")
protected Amount pendingOutBalance;
/**
* Gets the value of the availableBalance property.
*
* @return
* possible object is
* {@link Amount }
*
*/
public Amount getAvailableBalance() {
return availableBalance;
}
/**
* Sets the value of the availableBalance property.
*
* @param value
* allowed object is
* {@link Amount }
*
*/
public void setAvailableBalance(Amount value) {
this.availableBalance = value;
}
/**
* Gets the value of the pendingOutBalance property.
*
* @return
* possible object is
* {@link Amount }
*
*/
public Amount getPendingOutBalance() {
return pendingOutBalance;
}
/**
* Sets the value of the pendingOutBalance property.
*
* @param value
* allowed object is
* {@link Amount }
*
*/
public void setPendingOutBalance(Amount value) {
this.pendingOutBalance = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy