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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
global class HttpResponse {
    global HttpResponse() { }
    /**
     * HTTP body as string
     */
    global String getBody() { }
    /**
     * HTTP body as a blob
     */
    global Blob getBodyAsBlob() { }
    /**
     * HTTP body as XML DOM
     */
    global dom.Document getBodyDocument() { }
    /**
     * get HTTP header
     */
    global String getHeader(String key) { }
    /**
     * get HTTP headers
     */
    global List<String> getHeaderKeys() { }
    /**
     * HTTP status message
     */
    global String getStatus() { }
    /**
     * HTTP status code
     */
    global Integer getStatusCode() { }
    /**
     * HTTP body as XML stream reader
     */
    global System.XmlStreamReader getXmlStreamReader() { }
    /**
     * sets the HTTP body as a string
     */
    global void setBody(String body) { }
    /**
     * sets the HTTP body as a blob
     */
    global void setBodyAsBlob(Blob body) { }
    /**
     * sets the header
     */
    global void setHeader(String key, String value) { }
    /**
     * sets the status
     */
    global void setStatus(String status) { }
    /**
     * sets the status code
     */
    global void setStatusCode(Integer statusCode) { }
    /**
     * Returns a string that displays and identifies this object's properties.
     */
    global String toString() { }
 
}