-
Notifications
You must be signed in to change notification settings - Fork 474
/
Copy pathclient.go
102 lines (84 loc) · 2.88 KB
/
client.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//
//
// File generated from our OpenAPI spec
//
//
// Package filelink provides the /file_links APIs
package filelink
import (
"net/http"
stripe "github.com/stripe/stripe-go/v82"
"github.com/stripe/stripe-go/v82/form"
)
// Client is used to invoke /file_links APIs.
type Client struct {
B stripe.Backend
Key string
}
// Creates a new file link object.
func New(params *stripe.FileLinkParams) (*stripe.FileLink, error) {
return getC().New(params)
}
// Creates a new file link object.
func (c Client) New(params *stripe.FileLinkParams) (*stripe.FileLink, error) {
filelink := &stripe.FileLink{}
err := c.B.Call(http.MethodPost, "/v1/file_links", c.Key, params, filelink)
return filelink, err
}
// Retrieves the file link with the given ID.
func Get(id string, params *stripe.FileLinkParams) (*stripe.FileLink, error) {
return getC().Get(id, params)
}
// Retrieves the file link with the given ID.
func (c Client) Get(id string, params *stripe.FileLinkParams) (*stripe.FileLink, error) {
path := stripe.FormatURLPath("/v1/file_links/%s", id)
filelink := &stripe.FileLink{}
err := c.B.Call(http.MethodGet, path, c.Key, params, filelink)
return filelink, err
}
// Updates an existing file link object. Expired links can no longer be updated.
func Update(id string, params *stripe.FileLinkParams) (*stripe.FileLink, error) {
return getC().Update(id, params)
}
// Updates an existing file link object. Expired links can no longer be updated.
func (c Client) Update(id string, params *stripe.FileLinkParams) (*stripe.FileLink, error) {
path := stripe.FormatURLPath("/v1/file_links/%s", id)
filelink := &stripe.FileLink{}
err := c.B.Call(http.MethodPost, path, c.Key, params, filelink)
return filelink, err
}
// Returns a list of file links.
func List(params *stripe.FileLinkListParams) *Iter {
return getC().List(params)
}
// Returns a list of file links.
func (c Client) List(listParams *stripe.FileLinkListParams) *Iter {
return &Iter{
Iter: stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListContainer, error) {
list := &stripe.FileLinkList{}
err := c.B.CallRaw(http.MethodGet, "/v1/file_links", c.Key, []byte(b.Encode()), p, list)
ret := make([]interface{}, len(list.Data))
for i, v := range list.Data {
ret[i] = v
}
return ret, list, err
}),
}
}
// Iter is an iterator for file links.
type Iter struct {
*stripe.Iter
}
// FileLink returns the file link which the iterator is currently pointing to.
func (i *Iter) FileLink() *stripe.FileLink {
return i.Current().(*stripe.FileLink)
}
// FileLinkList returns the current list object which the iterator is
// currently using. List objects will change as new API calls are made to
// continue pagination.
func (i *Iter) FileLinkList() *stripe.FileLinkList {
return i.List().(*stripe.FileLinkList)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}