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