package echosign.api.clientv20.dto7; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for AccountCreationInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AccountCreationInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="accountType" type="{http://dto7.api.echosign}AccountType" minOccurs="0"/> * <element name="companyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="numSeats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AccountCreationInfo", propOrder = { "accountType", "companyName", "numSeats" }) public class AccountCreationInfo { @XmlElement(nillable = true) protected AccountType accountType; @XmlElement(nillable = true) protected String companyName; @XmlElement(nillable = true) protected Integer numSeats; /** * 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 companyName property. * * @return * possible object is * {@link String } * */ public String getCompanyName() { return companyName; } /** * Sets the value of the companyName property. * * @param value * allowed object is * {@link String } * */ public void setCompanyName(String value) { this.companyName = value; } /** * Gets the value of the numSeats property. * * @return * possible object is * {@link Integer } * */ public Integer getNumSeats() { return numSeats; } /** * Sets the value of the numSeats property. * * @param value * allowed object is * {@link Integer } * */ public void setNumSeats(Integer value) { this.numSeats = value; } }