package echosign.api.clientv20.dto18; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import echosign.api.clientv20.dto7.AccountType; /** * <p>Java class for UserData complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="UserData"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="account" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="accountType" type="{http://dto7.api.echosign}AccountType" minOccurs="0"/> * <element name="capabilityFlags" type="{http://dto18.api.echosign}ArrayOfUserCapabilityFlag" minOccurs="0"/> * <element name="channel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="group" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="passwordExpiration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="roles" type="{http://dto18.api.echosign}ArrayOfUserRole" minOccurs="0"/> * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserData", propOrder = { "account", "accountType", "capabilityFlags", "channel", "company", "email", "firstName", "group", "initials", "lastName", "locale", "passwordExpiration", "phone", "roles", "title" }) public class UserData { @XmlElement(nillable = true) protected String account; @XmlElement(nillable = true) protected AccountType accountType; @XmlElement(nillable = true) protected ArrayOfUserCapabilityFlag capabilityFlags; @XmlElement(nillable = true) protected String channel; @XmlElement(nillable = true) protected String company; @XmlElement(nillable = true) protected String email; @XmlElement(nillable = true) protected String firstName; @XmlElement(nillable = true) protected String group; @XmlElement(nillable = true) protected String initials; @XmlElement(nillable = true) protected String lastName; @XmlElement(nillable = true) protected String locale; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar passwordExpiration; @XmlElement(nillable = true) protected String phone; @XmlElement(nillable = true) protected ArrayOfUserRole roles; @XmlElement(nillable = true) protected String title; /** * Gets the value of the account property. * * @return * possible object is * {@link String } * */ public String getAccount() { return account; } /** * Sets the value of the account property. * * @param value * allowed object is * {@link String } * */ public void setAccount(String value) { this.account = value; } /** * Gets the value of the accountType property. * * @return * possible object is * {@link AccountType } * */ public AccountType getAccountType() { return accountType; } /** * Sets the value of the accountType property. * * @param value * allowed object is * {@link AccountType } * */ public void setAccountType(AccountType value) { this.accountType = value; } /** * Gets the value of the capabilityFlags property. * * @return * possible object is * {@link ArrayOfUserCapabilityFlag } * */ public ArrayOfUserCapabilityFlag getCapabilityFlags() { return capabilityFlags; } /** * Sets the value of the capabilityFlags property. * * @param value * allowed object is * {@link ArrayOfUserCapabilityFlag } * */ public void setCapabilityFlags(ArrayOfUserCapabilityFlag value) { this.capabilityFlags = value; } /** * Gets the value of the channel property. * * @return * possible object is * {@link String } * */ public String getChannel() { return channel; } /** * Sets the value of the channel property. * * @param value * allowed object is * {@link String } * */ public void setChannel(String value) { this.channel = value; } /** * Gets the value of the company property. * * @return * possible object is * {@link String } * */ public String getCompany() { return company; } /** * Sets the value of the company property. * * @param value * allowed object is * {@link String } * */ public void setCompany(String value) { this.company = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the firstName property. * * @return * possible object is * {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the initials property. * * @return * possible object is * {@link String } * */ public String getInitials() { return initials; } /** * Sets the value of the initials property. * * @param value * allowed object is * {@link String } * */ public void setInitials(String value) { this.initials = value; } /** * Gets the value of the lastName property. * * @return * possible object is * {@link String } * */ public String getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link String } * */ public void setLastName(String value) { this.lastName = value; } /** * Gets the value of the locale property. * * @return * possible object is * {@link String } * */ public String getLocale() { return locale; } /** * Sets the value of the locale property. * * @param value * allowed object is * {@link String } * */ public void setLocale(String value) { this.locale = value; } /** * Gets the value of the passwordExpiration property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPasswordExpiration() { return passwordExpiration; } /** * Sets the value of the passwordExpiration property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPasswordExpiration(XMLGregorianCalendar value) { this.passwordExpiration = value; } /** * Gets the value of the phone property. * * @return * possible object is * {@link String } * */ public String getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link String } * */ public void setPhone(String value) { this.phone = value; } /** * Gets the value of the roles property. * * @return * possible object is * {@link ArrayOfUserRole } * */ public ArrayOfUserRole getRoles() { return roles; } /** * Sets the value of the roles property. * * @param value * allowed object is * {@link ArrayOfUserRole } * */ public void setRoles(ArrayOfUserRole value) { this.roles = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } }