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; /** * <p>Java class for GroupInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GroupInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="groupKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="groupName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GroupInfo", propOrder = { "groupKey", "groupName" }) public class GroupInfo { @XmlElement(nillable = true) protected String groupKey; @XmlElement(nillable = true) protected String groupName; /** * Gets the value of the groupKey property. * * @return * possible object is * {@link String } * */ public String getGroupKey() { return groupKey; } /** * Sets the value of the groupKey property. * * @param value * allowed object is * {@link String } * */ public void setGroupKey(String value) { this.groupKey = value; } /** * Gets the value of the groupName property. * * @return * possible object is * {@link String } * */ public String getGroupName() { return groupName; } /** * Sets the value of the groupName property. * * @param value * allowed object is * {@link String } * */ public void setGroupName(String value) { this.groupName = value; } }