-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_client_soql_methods_test.go
56 lines (50 loc) · 1.21 KB
/
example_client_soql_methods_test.go
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
package sfdc_test
import (
"fmt"
)
func ExampleClient_OpenCases() {
openCases, err := client.OpenCases()
if err != nil {
// handle error
}
for _, openCase := range openCases {
fmt.Printf("Id=%s, Subject=%s, OwnerId=%s", openCase.ID, openCase.Subject, openCase.OwnerID)
}
// Example Output:
// Id=003G000002z8VBQIA2, Subject=Case Subject, OwnerId=00QG00000234ZYXWVU
}
func ExampleClient_UserName() {
name, err := client.UserName("001G00000123ABCDEF")
if err != nil {
// handle error
}
fmt.Println(name)
// Example Output: John Doe
}
func ExampleClient_GroupName() {
name, err := client.GroupName("006G00000345LKJIHG")
if err != nil {
// handle error
}
fmt.Println(name)
// Example Output: Help Desk
}
func ExampleClient_AccountIDFromName() {
id, err := client.AccountIDFromName("Acme Corp")
if err != nil {
// handle error
}
fmt.Println(id)
// Example Output: 001G00000456MNOPQR
}
func ExampleClient_Customers() {
customers, err := client.Customers()
if err != nil {
// handle error
}
for _, customer := range customers {
fmt.Printf("Id=%s, Name=%s, Type=%s", customer.ID, customer.Name, customer.Type)
// Example Output: Id=00QG00000567DCBAZY, Name=Acme Corp, Type=Customer
// ...
}
}