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

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


package com.connectifier.xeroclient.models;

import java.util.List;

/** 
 * Invoice Status
 * 
 * Schema fragment(s) for this class:
 * 
 * <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="invoiceStatus">
 *   <xs:restriction base="xs:string">
 *     <xs:enumeration value="DRAFT"/>
 *     <xs:enumeration value="SUBMITTED"/>
 *     <xs:enumeration value="DELETED"/>
 *     <xs:enumeration value="AUTHORISED"/>
 *     <xs:enumeration value="PAID"/>
 *     <xs:enumeration value="VOIDED"/>
 *   </xs:restriction>
 * </xs:simpleType>
 * 
*/ public enum InvoiceStatus { /** * Draft */ DRAFT, /** * Submitted */ SUBMITTED, /** * Deleted */ DELETED, /** * Authorised */ AUTHORISED, /** * Paid */ PAID, /** * Voided */ VOIDED }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy