package echosign.api.clientv20.dto9; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for DocumentLibraryItemScope. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="DocumentLibraryItemScope"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="PERSONAL"/> * <enumeration value="SHARED"/> * <enumeration value="GLOBAL"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "DocumentLibraryItemScope") @XmlEnum public enum DocumentLibraryItemScope { PERSONAL, SHARED, GLOBAL; public String value() { return name(); } public static DocumentLibraryItemScope fromValue(String v) { return valueOf(v); } }