-
Notifications
You must be signed in to change notification settings - Fork 9
/
dunning_cycle.go
153 lines (124 loc) · 4.97 KB
/
dunning_cycle.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
// This file is automatically created by Recurly's OpenAPI generation process
// and thus any edits you make by hand will be lost. If you wish to make a
// change to this file, please create a Github issue explaining the changes you
// need and we will usher them to the appropriate places.
package recurly
import (
"context"
"net/http"
"time"
)
type DunningCycle struct {
recurlyResponse *ResponseMetadata
// The type of invoice this cycle applies to.
Type string `json:"type,omitempty"`
// Whether the dunning settings will be applied to manual trials. Only applies to trial cycles.
AppliesToManualTrial bool `json:"applies_to_manual_trial,omitempty"`
// The number of days after a transaction failure before the first dunning email is sent.
FirstCommunicationInterval int `json:"first_communication_interval,omitempty"`
// Whether or not to send an extra email immediately to customers whose initial payment attempt fails with either a hard decline or invalid billing info.
SendImmediatelyOnHardDecline bool `json:"send_immediately_on_hard_decline,omitempty"`
// Dunning intervals.
Intervals []DunningInterval `json:"intervals,omitempty"`
// Whether the subscription(s) should be cancelled at the end of the dunning cycle.
ExpireSubscription bool `json:"expire_subscription,omitempty"`
// Whether the invoice should be failed at the end of the dunning cycle.
FailInvoice bool `json:"fail_invoice,omitempty"`
// The number of days between the first dunning email being sent and the end of the dunning cycle.
TotalDunningDays int `json:"total_dunning_days,omitempty"`
// The number of days between a transaction failure and the end of the dunning cycle.
TotalRecyclingDays int `json:"total_recycling_days,omitempty"`
// Current campaign version.
Version int `json:"version,omitempty"`
// When the current settings were created in Recurly.
CreatedAt time.Time `json:"created_at,omitempty"`
// When the current settings were updated in Recurly.
UpdatedAt time.Time `json:"updated_at,omitempty"`
}
// GetResponse returns the ResponseMetadata that generated this resource
func (resource *DunningCycle) GetResponse() *ResponseMetadata {
return resource.recurlyResponse
}
// setResponse sets the ResponseMetadata that generated this resource
func (resource *DunningCycle) setResponse(res *ResponseMetadata) {
resource.recurlyResponse = res
}
// internal struct for deserializing accounts
type dunningCycleList struct {
ListMetadata
Data []DunningCycle `json:"data"`
recurlyResponse *ResponseMetadata
}
// GetResponse returns the ResponseMetadata that generated this resource
func (resource *dunningCycleList) GetResponse() *ResponseMetadata {
return resource.recurlyResponse
}
// setResponse sets the ResponseMetadata that generated this resource
func (resource *dunningCycleList) setResponse(res *ResponseMetadata) {
resource.recurlyResponse = res
}
// DunningCycleList allows you to paginate DunningCycle objects
type DunningCycleList struct {
client HTTPCaller
requestOptions *RequestOptions
nextPagePath string
hasMore bool
data []DunningCycle
}
func NewDunningCycleList(client HTTPCaller, nextPagePath string, requestOptions *RequestOptions) *DunningCycleList {
return &DunningCycleList{
client: client,
requestOptions: requestOptions,
nextPagePath: nextPagePath,
hasMore: true,
}
}
type DunningCycleLister interface {
Fetch() error
FetchWithContext(ctx context.Context) error
Count() (*int64, error)
CountWithContext(ctx context.Context) (*int64, error)
Data() []DunningCycle
HasMore() bool
Next() string
}
func (list *DunningCycleList) HasMore() bool {
return list.hasMore
}
func (list *DunningCycleList) Next() string {
return list.nextPagePath
}
func (list *DunningCycleList) Data() []DunningCycle {
return list.data
}
// Fetch fetches the next page of data into the `Data` property
func (list *DunningCycleList) FetchWithContext(ctx context.Context) error {
resources := &dunningCycleList{}
err := list.client.Call(ctx, http.MethodGet, list.nextPagePath, nil, nil, list.requestOptions, resources)
if err != nil {
return err
}
// copy over properties from the response
list.nextPagePath = resources.Next
list.hasMore = resources.HasMore
list.data = resources.Data
return nil
}
// Fetch fetches the next page of data into the `Data` property
func (list *DunningCycleList) Fetch() error {
return list.FetchWithContext(context.Background())
}
// Count returns the count of items on the server that match this pager
func (list *DunningCycleList) CountWithContext(ctx context.Context) (*int64, error) {
resources := &dunningCycleList{}
err := list.client.Call(ctx, http.MethodHead, list.nextPagePath, nil, nil, list.requestOptions, resources)
if err != nil {
return nil, err
}
resp := resources.GetResponse()
return resp.TotalRecords, nil
}
// Count returns the count of items on the server that match this pager
func (list *DunningCycleList) Count() (*int64, error) {
return list.CountWithContext(context.Background())
}