-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_client_object_methods_test.go
More file actions
55 lines (47 loc) · 1.04 KB
/
example_client_object_methods_test.go
File metadata and controls
55 lines (47 loc) · 1.04 KB
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
package sfdc_test
import (
"fmt"
"go.stellar.af/go-sfdc"
)
// See client example for client initialization example.
var client *sfdc.Client
func ExampleClient_Account() {
account, err := client.Account("006G00000678LKJIHE")
if err != nil {
// handle error
}
fmt.Println(account.ID)
// Example Output: 006G00000678LKJIHE
}
func ExampleClient_User() {
user, err := client.Account("003G00000789VUTSRQ")
if err != nil {
// handle error
}
fmt.Println(user.ID)
// Example Output: 003G00000789VUTSRQ
}
func ExampleClient_Group() {
group, err := client.Account("00QG00000890ZYXWVU")
if err != nil {
// handle error
}
fmt.Println(group.ID)
// Example Output: 00QG00000890ZYXWVU
}
func ExampleClient_Case() {
_case, err := client.Case("001G00000987KJIHGF")
if err != nil {
// handle error
}
fmt.Println(_case.ID)
// Example Output: 001G00000987KJIHGF
}
func ExampleClient_Contact() {
contact, err := client.Contact("003G00000123ZYXWVU")
if err != nil {
// handle error
}
fmt.Println(contact.ID)
// Example Output: 003G00000123ZYXWVU
}