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

com.lyra.vads.ws.v5.CustStatus Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package com.lyra.vads.ws.v5;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for custStatus. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="custStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="PRIVATE"/>
 *     <enumeration value="COMPANY"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "custStatus") @XmlEnum public enum CustStatus { PRIVATE, COMPANY; public String value() { return name(); } public static CustStatus fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy