com.sforce.soap.partner.DescribeSoftphoneLayoutResult Maven / Gradle / Ivy
package com.sforce.soap.partner;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DescribeSoftphoneLayoutResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeSoftphoneLayoutResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="callTypes" type="{urn:partner.soap.sforce.com}DescribeSoftphoneLayoutCallType" maxOccurs="unbounded"/>
* <element name="id" type="{urn:partner.soap.sforce.com}ID"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeSoftphoneLayoutResult", propOrder = {
"callTypes",
"id",
"name"
})
public class DescribeSoftphoneLayoutResult {
@XmlElement(required = true)
protected List callTypes;
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String name;
/**
* Gets the value of the callTypes property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the callTypes property.
*
*
* For example, to add a new item, do as follows:
*
* getCallTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeSoftphoneLayoutCallType }
*
*
*/
public List getCallTypes() {
if (callTypes == null) {
callTypes = new ArrayList();
}
return this.callTypes;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}