-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoauthapplication.go
226 lines (199 loc) · 7.96 KB
/
oauthapplication.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package increase
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"time"
"github.com/Increase/increase-go/internal/apijson"
"github.com/Increase/increase-go/internal/apiquery"
"github.com/Increase/increase-go/internal/param"
"github.com/Increase/increase-go/internal/requestconfig"
"github.com/Increase/increase-go/option"
"github.com/Increase/increase-go/packages/pagination"
)
// OAuthApplicationService contains methods and other services that help with
// interacting with the increase API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewOAuthApplicationService] method instead.
type OAuthApplicationService struct {
Options []option.RequestOption
}
// NewOAuthApplicationService generates a new service that applies the given
// options to each request. These options are applied after the parent client's
// options (if there is one), and before any request-specific options.
func NewOAuthApplicationService(opts ...option.RequestOption) (r *OAuthApplicationService) {
r = &OAuthApplicationService{}
r.Options = opts
return
}
// Retrieve an OAuth Application
func (r *OAuthApplicationService) Get(ctx context.Context, oauthApplicationID string, opts ...option.RequestOption) (res *OAuthApplication, err error) {
opts = append(r.Options[:], opts...)
if oauthApplicationID == "" {
err = errors.New("missing required oauth_application_id parameter")
return
}
path := fmt.Sprintf("oauth_applications/%s", oauthApplicationID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return
}
// List OAuth Applications
func (r *OAuthApplicationService) List(ctx context.Context, query OAuthApplicationListParams, opts ...option.RequestOption) (res *pagination.Page[OAuthApplication], err error) {
var raw *http.Response
opts = append(r.Options[:], opts...)
opts = append([]option.RequestOption{option.WithResponseInto(&raw)}, opts...)
path := "oauth_applications"
cfg, err := requestconfig.NewRequestConfig(ctx, http.MethodGet, path, query, &res, opts...)
if err != nil {
return nil, err
}
err = cfg.Execute()
if err != nil {
return nil, err
}
res.SetPageConfig(cfg, raw)
return res, nil
}
// List OAuth Applications
func (r *OAuthApplicationService) ListAutoPaging(ctx context.Context, query OAuthApplicationListParams, opts ...option.RequestOption) *pagination.PageAutoPager[OAuthApplication] {
return pagination.NewPageAutoPager(r.List(ctx, query, opts...))
}
// An OAuth Application lets you build an application for others to use with their
// Increase data. You can create an OAuth Application via the Dashboard and read
// information about it with the API. Learn more about OAuth
// [here](https://increase.com/documentation/oauth).
type OAuthApplication struct {
// The OAuth Application's identifier.
ID string `json:"id,required"`
// The OAuth Application's client_id. Use this to authenticate with the OAuth
// Application.
ClientID string `json:"client_id,required"`
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp when the OAuth
// Application was created.
CreatedAt time.Time `json:"created_at,required" format:"date-time"`
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp when the OAuth
// Application was deleted.
DeletedAt time.Time `json:"deleted_at,required,nullable" format:"date-time"`
// The name you chose for this OAuth Application.
Name string `json:"name,required,nullable"`
// Whether the application is active.
Status OAuthApplicationStatus `json:"status,required"`
// A constant representing the object's type. For this resource it will always be
// `oauth_application`.
Type OAuthApplicationType `json:"type,required"`
JSON oauthApplicationJSON `json:"-"`
}
// oauthApplicationJSON contains the JSON metadata for the struct
// [OAuthApplication]
type oauthApplicationJSON struct {
ID apijson.Field
ClientID apijson.Field
CreatedAt apijson.Field
DeletedAt apijson.Field
Name apijson.Field
Status apijson.Field
Type apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *OAuthApplication) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r oauthApplicationJSON) RawJSON() string {
return r.raw
}
// Whether the application is active.
type OAuthApplicationStatus string
const (
OAuthApplicationStatusActive OAuthApplicationStatus = "active"
OAuthApplicationStatusDeleted OAuthApplicationStatus = "deleted"
)
func (r OAuthApplicationStatus) IsKnown() bool {
switch r {
case OAuthApplicationStatusActive, OAuthApplicationStatusDeleted:
return true
}
return false
}
// A constant representing the object's type. For this resource it will always be
// `oauth_application`.
type OAuthApplicationType string
const (
OAuthApplicationTypeOAuthApplication OAuthApplicationType = "oauth_application"
)
func (r OAuthApplicationType) IsKnown() bool {
switch r {
case OAuthApplicationTypeOAuthApplication:
return true
}
return false
}
type OAuthApplicationListParams struct {
CreatedAt param.Field[OAuthApplicationListParamsCreatedAt] `query:"created_at"`
// Return the page of entries after this one.
Cursor param.Field[string] `query:"cursor"`
// Limit the size of the list that is returned. The default (and maximum) is 100
// objects.
Limit param.Field[int64] `query:"limit"`
Status param.Field[OAuthApplicationListParamsStatus] `query:"status"`
}
// URLQuery serializes [OAuthApplicationListParams]'s query parameters as
// `url.Values`.
func (r OAuthApplicationListParams) URLQuery() (v url.Values) {
return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
ArrayFormat: apiquery.ArrayQueryFormatComma,
NestedFormat: apiquery.NestedQueryFormatDots,
})
}
type OAuthApplicationListParamsCreatedAt struct {
// Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
// timestamp.
After param.Field[time.Time] `query:"after" format:"date-time"`
// Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
// timestamp.
Before param.Field[time.Time] `query:"before" format:"date-time"`
// Return results on or after this
// [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
OnOrAfter param.Field[time.Time] `query:"on_or_after" format:"date-time"`
// Return results on or before this
// [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
OnOrBefore param.Field[time.Time] `query:"on_or_before" format:"date-time"`
}
// URLQuery serializes [OAuthApplicationListParamsCreatedAt]'s query parameters as
// `url.Values`.
func (r OAuthApplicationListParamsCreatedAt) URLQuery() (v url.Values) {
return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
ArrayFormat: apiquery.ArrayQueryFormatComma,
NestedFormat: apiquery.NestedQueryFormatDots,
})
}
type OAuthApplicationListParamsStatus struct {
// Return results whose value is in the provided list. For GET requests, this
// should be encoded as a comma-delimited string, such as `?in=one,two,three`.
In param.Field[[]OAuthApplicationListParamsStatusIn] `query:"in"`
}
// URLQuery serializes [OAuthApplicationListParamsStatus]'s query parameters as
// `url.Values`.
func (r OAuthApplicationListParamsStatus) URLQuery() (v url.Values) {
return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
ArrayFormat: apiquery.ArrayQueryFormatComma,
NestedFormat: apiquery.NestedQueryFormatDots,
})
}
type OAuthApplicationListParamsStatusIn string
const (
OAuthApplicationListParamsStatusInActive OAuthApplicationListParamsStatusIn = "active"
OAuthApplicationListParamsStatusInDeleted OAuthApplicationListParamsStatusIn = "deleted"
)
func (r OAuthApplicationListParamsStatusIn) IsKnown() bool {
switch r {
case OAuthApplicationListParamsStatusInActive, OAuthApplicationListParamsStatusInDeleted:
return true
}
return false
}