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

38 lines
1.0 KiB
Java
Raw 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 IDescribeGlobalResult {
/**
* element : encoding of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
public java.lang.String getEncoding();
public void setEncoding(java.lang.String encoding);
/**
* element : maxBatchSize of type {http://www.w3.org/2001/XMLSchema}int
* java type: int
*/
public int getMaxBatchSize();
public void setMaxBatchSize(int maxBatchSize);
/**
* element : sobjects of type {urn:partner.soap.sforce.com}DescribeGlobalSObjectResult
* java type: com.sforce.soap.partner.DescribeGlobalSObjectResult[]
*/
public com.sforce.soap.partner.IDescribeGlobalSObjectResult[] getSobjects();
public void setSobjects(com.sforce.soap.partner.IDescribeGlobalSObjectResult[] sobjects);
}