-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathautomation_generated.go
74 lines (59 loc) · 1.53 KB
/
automation_generated.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Code generated by Script. DO NOT EDIT.
// Source: script/codegen/main.go
//
// Generated by this command:
//
// go run script/codegen/main.go
package zendesk
import "context"
func (z *Client) GetAutomationsIterator(ctx context.Context, opts *PaginationOptions) *Iterator[Automation] {
return &Iterator[Automation]{
CommonOptions: opts.CommonOptions,
pageSize: opts.PageSize,
hasMore: true,
isCBP: opts.IsCBP,
pageAfter: "",
pageIndex: 1,
ctx: ctx,
obpFunc: z.GetAutomationsOBP,
cbpFunc: z.GetAutomationsCBP,
}
}
func (z *Client) GetAutomationsOBP(ctx context.Context, opts *OBPOptions) ([]Automation, Page, error) {
var data struct {
Automations []Automation `json:"automations"`
Page
}
tmp := opts
if tmp == nil {
tmp = &OBPOptions{}
}
u, err := addOptions("/automation.json", tmp)
if err != nil {
return nil, Page{}, err
}
err = getData(z, ctx, u, &data)
if err != nil {
return nil, Page{}, err
}
return data.Automations, data.Page, nil
}
func (z *Client) GetAutomationsCBP(ctx context.Context, opts *CBPOptions) ([]Automation, CursorPaginationMeta, error) {
var data struct {
Automations []Automation `json:"automations"`
Meta CursorPaginationMeta `json:"meta"`
}
tmp := opts
if tmp == nil {
tmp = &CBPOptions{}
}
u, err := addOptions("/automation.json", tmp)
if err != nil {
return nil, data.Meta, err
}
err = getData(z, ctx, u, &data)
if err != nil {
return nil, data.Meta, err
}
return data.Automations, data.Meta, nil
}