LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
global class SObjectType {
    /**
     * Return the describe information for this SObject type
     */
    global Schema.DescribeSObjectResult getDescribe(Object options) { }
    /**
     * Return the describe information for this SObject type
     */
    global Schema.DescribeSObjectResult getDescribe() { }
    /**
     * Factory method to construct a new SObject of this type, optionally with a record type Id and/or default field values loaded
     */
    global SObject newSObject(Id recordTypeId, Boolean loadDefaultValues) { }
    /**
     * Factory method to construct a new SObject of this type, with a valid Id
     */
    global SObject newSObject(Id id) { }
    /**
     * Factory method to construct a new SObject of this type
     */
    global SObject newSObject() { }
 
}