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

com.connectifier.xeroclient.models.AccountsReceivable Maven / Gradle / Ivy


package com.connectifier.xeroclient.models;

import java.math.BigDecimal;
import java.util.List;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="AccountsReceivable">
 *   <xs:all>
 *     <xs:element type="xs:decimal" name="Outstanding" minOccurs="0" maxOccurs="1"/>
 *     <xs:element type="xs:decimal" name="Overdue" minOccurs="0" maxOccurs="1"/>
 *   </xs:all>
 * </xs:complexType>
 * 
*/ public class AccountsReceivable { private BigDecimal outstanding; private BigDecimal overdue; /** * Get the 'Outstanding' element value. * * @return value */ public BigDecimal getOutstanding() { return outstanding; } /** * Set the 'Outstanding' element value. * * @param outstanding */ public void setOutstanding(BigDecimal outstanding) { this.outstanding = outstanding; } /** * Get the 'Overdue' element value. * * @return value */ public BigDecimal getOverdue() { return overdue; } /** * Set the 'Overdue' element value. * * @param overdue */ public void setOverdue(BigDecimal overdue) { this.overdue = overdue; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy