datai/docs/reference-code/com/sforce/soap/partner/ISearchLayoutFieldsDisplayed.java

31 lines
793 B
Java
Raw Permalink Normal View History

2026-01-22 10:52:30 +08:00
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 ISearchLayoutFieldsDisplayed {
/**
* element : applicable of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: boolean
*/
public boolean getApplicable();
public boolean isApplicable();
public void setApplicable(boolean applicable);
/**
* element : fields of type {urn:partner.soap.sforce.com}SearchLayoutField
* java type: com.sforce.soap.partner.SearchLayoutField[]
*/
public com.sforce.soap.partner.ISearchLayoutField[] getFields();
public void setFields(com.sforce.soap.partner.ISearchLayoutField[] fields);
}