![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.DescribeSoftphoneLayoutSection 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 DescribeSoftphoneLayoutSection complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeSoftphoneLayoutSection">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="entityApiName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="items" type="{urn:partner.soap.sforce.com}DescribeSoftphoneLayoutItem" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeSoftphoneLayoutSection", propOrder = {
"entityApiName",
"items"
})
public class DescribeSoftphoneLayoutSection {
@XmlElement(required = true)
protected String entityApiName;
@XmlElement(required = true)
protected List items;
/**
* Gets the value of the entityApiName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityApiName() {
return entityApiName;
}
/**
* Sets the value of the entityApiName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityApiName(String value) {
this.entityApiName = value;
}
/**
* Gets the value of the items 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 items property.
*
*
* For example, to add a new item, do as follows:
*
* getItems().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeSoftphoneLayoutItem }
*
*
*/
public List getItems() {
if (items == null) {
items = new ArrayList();
}
return this.items;
}
}