
com.connectifier.xeroclient.models.ContactGroup Maven / Gradle / Ivy
package com.connectifier.xeroclient.models;
import java.util.List;
/**
* Schema fragment(s) for this class:
*
* <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ContactGroup">
* <xs:sequence>
* <xs:element type="xs:string" name="Name" minOccurs="0" maxOccurs="1"/>
* </xs:sequence>
* </xs:complexType>
*
*/
public class ContactGroup
{
private String name;
/**
* Get the 'Name' element value.
*
* @return value
*/
public String getName() {
return name;
}
/**
* Set the 'Name' element value.
*
* @param name
*/
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy