package echosign.api.clientv20.dto16; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import echosign.api.clientv20.dto15.GetGroupsInAccountResultErrorCode; /** * <p>Java class for GetGroupsInAccountResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GetGroupsInAccountResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="groupList" type="{http://dto16.api.echosign}ArrayOfGroupInfo" minOccurs="0"/> * <element name="errorCode" type="{http://dto15.api.echosign}GetGroupsInAccountResultErrorCode" minOccurs="0"/> * <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="success" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetGroupsInAccountResult", propOrder = { "groupList", "errorCode", "errorMessage", "success" }) public class GetGroupsInAccountResult { @XmlElement(nillable = true) protected ArrayOfGroupInfo groupList; @XmlElement(nillable = true) protected GetGroupsInAccountResultErrorCode errorCode; @XmlElement(nillable = true) protected String errorMessage; protected Boolean success; /** * Gets the value of the groupList property. * * @return * possible object is * {@link ArrayOfGroupInfo } * */ public ArrayOfGroupInfo getGroupList() { return groupList; } /** * Sets the value of the groupList property. * * @param value * allowed object is * {@link ArrayOfGroupInfo } * */ public void setGroupList(ArrayOfGroupInfo value) { this.groupList = value; } /** * Gets the value of the errorCode property. * * @return * possible object is * {@link GetGroupsInAccountResultErrorCode } * */ public GetGroupsInAccountResultErrorCode getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * * @param value * allowed object is * {@link GetGroupsInAccountResultErrorCode } * */ public void setErrorCode(GetGroupsInAccountResultErrorCode value) { this.errorCode = value; } /** * Gets the value of the errorMessage property. * * @return * possible object is * {@link String } * */ public String getErrorMessage() { return errorMessage; } /** * Sets the value of the errorMessage property. * * @param value * allowed object is * {@link String } * */ public void setErrorMessage(String value) { this.errorMessage = value; } /** * Gets the value of the success property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSuccess() { return success; } /** * Sets the value of the success property. * * @param value * allowed object is * {@link Boolean } * */ public void setSuccess(Boolean value) { this.success = value; } }