
com.connectifier.xeroclient.models.AccountClass 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 accountClass.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="accountClass">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="EXPENSE"/>
* <enumeration value="ASSET"/>
* <enumeration value="LIABILITY"/>
* <enumeration value="REVENUE"/>
* <enumeration value="EQUITY"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "accountClass")
@XmlEnum
public enum AccountClass {
EXPENSE,
ASSET,
LIABILITY,
REVENUE,
EQUITY;
public String value() {
return name();
}
public static AccountClass fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy