All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.connectifier.xeroclient.models.ArrayOfPhone Maven / Gradle / Ivy


package com.connectifier.xeroclient.models;

import java.util.ArrayList;
import java.util.List;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ArrayOfPhone">
 *   <xs:sequence>
 *     <xs:element type="Phone" nillable="true" name="Phone" minOccurs="0" maxOccurs="4"/>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class ArrayOfPhone { private List phoneList = new ArrayList(); /** * Get the list of 'Phone' element items. * * @return list */ public List getPhoneList() { return phoneList; } /** * Set the list of 'Phone' element items. * * @param list */ public void setPhoneList(List list) { phoneList = list; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy