29 lines
832 B
Java
29 lines
832 B
Java
|
|
package com.sforce.soap.partner;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public interface IDescribeSoftphoneLayoutSection {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : entityApiName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getEntityApiName();
|
||
|
|
|
||
|
|
public void setEntityApiName(java.lang.String entityApiName);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : items of type {urn:partner.soap.sforce.com}DescribeSoftphoneLayoutItem
|
||
|
|
* java type: com.sforce.soap.partner.DescribeSoftphoneLayoutItem[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public com.sforce.soap.partner.IDescribeSoftphoneLayoutItem[] getItems();
|
||
|
|
|
||
|
|
public void setItems(com.sforce.soap.partner.IDescribeSoftphoneLayoutItem[] items);
|
||
|
|
|
||
|
|
|
||
|
|
}
|