-
Notifications
You must be signed in to change notification settings - Fork 459
/
client.go
77 lines (63 loc) · 2.47 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
//
//
// File generated from our OpenAPI spec
//
//
// Package verificationreport provides the /identity/verification_reports APIs
package verificationreport
import (
"net/http"
stripe "github.com/stripe/stripe-go/v74"
"github.com/stripe/stripe-go/v74/form"
)
// Client is used to invoke /identity/verification_reports APIs.
type Client struct {
B stripe.Backend
Key string
}
// Get returns the details of an identity verification report.
func Get(id string, params *stripe.IdentityVerificationReportParams) (*stripe.IdentityVerificationReport, error) {
return getC().Get(id, params)
}
// Get returns the details of an identity verification report.
func (c Client) Get(id string, params *stripe.IdentityVerificationReportParams) (*stripe.IdentityVerificationReport, error) {
path := stripe.FormatURLPath("/v1/identity/verification_reports/%s", id)
verificationreport := &stripe.IdentityVerificationReport{}
err := c.B.Call(http.MethodGet, path, c.Key, params, verificationreport)
return verificationreport, err
}
// List returns a list of identity verification reports.
func List(params *stripe.IdentityVerificationReportListParams) *Iter {
return getC().List(params)
}
// List returns a list of identity verification reports.
func (c Client) List(listParams *stripe.IdentityVerificationReportListParams) *Iter {
return &Iter{
Iter: stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListContainer, error) {
list := &stripe.IdentityVerificationReportList{}
err := c.B.CallRaw(http.MethodGet, "/v1/identity/verification_reports", c.Key, b, 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 identity verification reports.
type Iter struct {
*stripe.Iter
}
// IdentityVerificationReport returns the identity verification report which the iterator is currently pointing to.
func (i *Iter) IdentityVerificationReport() *stripe.IdentityVerificationReport {
return i.Current().(*stripe.IdentityVerificationReport)
}
// IdentityVerificationReportList 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) IdentityVerificationReportList() *stripe.IdentityVerificationReportList {
return i.List().(*stripe.IdentityVerificationReportList)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}