
com.connectifier.xeroclient.models.InvoiceStatus Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.03.08 at 08:40:56 PM PDT
//
package com.connectifier.xeroclient.models;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for invoiceStatus.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="invoiceStatus">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="DRAFT"/>
* <enumeration value="SUBMITTED"/>
* <enumeration value="DELETED"/>
* <enumeration value="AUTHORISED"/>
* <enumeration value="PAID"/>
* <enumeration value="VOIDED"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "invoiceStatus")
@XmlEnum
public enum InvoiceStatus {
/**
* Draft
*
*/
DRAFT,
/**
* Submitted
*
*/
SUBMITTED,
/**
* Deleted
*
*/
DELETED,
/**
* Authorised
*
*/
AUTHORISED,
/**
* Paid
*
*/
PAID,
/**
* Voided
*
*/
VOIDED;
public String value() {
return name();
}
public static InvoiceStatus fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy