LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
global class JSON {
    global JSON() { }
    global Object clone() { }
    global static System.JSONGenerator createGenerator(Boolean pretty) { }
    global static System.JSONParser createParser(String jsonString) { }
    global static Object deserialize(String jsonString, System.Type apexType) { }
    global static Object deserializeStrict(String jsonString, System.Type apexType) { }
    global static Object deserializeUntyped(String jsonString) { }
    global static String serialize(Object o, Boolean suppressApexObjectNulls) { }
    global static String serialize(Object o) { }
    global static String serializePretty(Object o, Boolean suppressApexObjectNulls) { }
    global static String serializePretty(Object o) { }
 
}