forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplan.go
172 lines (148 loc) · 6.48 KB
/
plan.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
package stripe
import (
"strconv"
"github.com/fatsoma/tabb-stripe-go/form"
)
// PlanInterval is the list of allowed values for a plan's interval.
type PlanInterval string
// List of values that PlanInterval can take.
const (
PlanIntervalDay PlanInterval = "day"
PlanIntervalWeek PlanInterval = "week"
PlanIntervalMonth PlanInterval = "month"
PlanIntervalYear PlanInterval = "year"
)
// PlanBillingScheme is the list of allowed values for a plan's billing scheme.
type PlanBillingScheme string
// List of values that PlanBillingScheme can take.
const (
PlanBillingSchemePerUnit PlanBillingScheme = "per_unit"
PlanBillingSchemeTiered PlanBillingScheme = "tiered"
)
// PlanUsageType is the list of allowed values for a plan's usage type.
type PlanUsageType string
// List of values that PlanUsageType can take.
const (
PlanUsageTypeLicensed PlanUsageType = "licensed"
PlanUsageTypeMetered PlanUsageType = "metered"
)
// PlanTiersMode is the list of allowed values for a plan's tiers mode.
type PlanTiersMode string
// List of values that PlanTiersMode can take.
const (
PlanTiersModeGraduated PlanTiersMode = "graduated"
PlanTiersModeVolume PlanTiersMode = "volume"
)
// PlanTransformUsageRound is the list of allowed values for a plan's transform usage round logic.
type PlanTransformUsageRound string
// List of values that PlanTransformUsageRound can take.
const (
PlanTransformUsageRoundDown PlanTransformUsageRound = "down"
PlanTransformUsageRoundUp PlanTransformUsageRound = "up"
)
// PlanAggregateUsage is the list of allowed values for a plan's aggregate usage.
type PlanAggregateUsage string
// List of values that PlanAggregateUsage can take.
const (
PlanAggregateUsageLastDuringPeriod PlanAggregateUsage = "last_during_period"
PlanAggregateUsageLastEver PlanAggregateUsage = "last_ever"
PlanAggregateUsageMax PlanAggregateUsage = "max"
PlanAggregateUsageSum PlanAggregateUsage = "sum"
)
// Plan is the resource representing a Stripe plan.
// For more details see https://stripe.com/docs/api#plans.
type Plan struct {
Active bool `json:"active"`
AggregateUsage string `json:"aggregate_usage"`
Amount int64 `json:"amount"`
BillingScheme PlanBillingScheme `json:"billing_scheme"`
Created int64 `json:"created"`
Currency Currency `json:"currency"`
Deleted bool `json:"deleted"`
ID string `json:"id"`
Interval PlanInterval `json:"interval"`
IntervalCount int64 `json:"interval_count"`
Livemode bool `json:"livemode"`
Metadata map[string]string `json:"metadata"`
Nickname string `json:"nickname"`
Product string `json:"product"`
Tiers []*PlanTier `json:"tiers"`
TiersMode string `json:"tiers_mode"`
TransformUsage *PlanTransformUsage `json:"transform_usage"`
TrialPeriodDays int64 `json:"trial_period_days"`
UsageType PlanUsageType `json:"usage_type"`
}
// PlanList is a list of plans as returned from a list endpoint.
type PlanList struct {
ListMeta
Data []*Plan `json:"data"`
}
// PlanListParams is the set of parameters that can be used when listing plans.
// For more details see https://stripe.com/docs/api#list_plans.
type PlanListParams struct {
ListParams `form:"*"`
Active *bool `form:"active"`
Created *int64 `form:"created"`
CreatedRange *RangeQueryParams `form:"created"`
Product *string `form:"product"`
}
// PlanParams is the set of parameters that can be used when creating or updating a plan.
// For more details see https://stripe.com/docs/api#create_plan and https://stripe.com/docs/api#update_plan.
type PlanParams struct {
Params `form:"*"`
Active *bool `form:"active"`
AggregateUsage *string `form:"aggregate_usage"`
Amount *int64 `form:"amount"`
BillingScheme *string `form:"billing_scheme"`
Currency *string `form:"currency"`
ID *string `form:"id"`
Interval *string `form:"interval"`
IntervalCount *int64 `form:"interval_count"`
Nickname *string `form:"nickname"`
Product *PlanProductParams `form:"product"`
ProductID *string `form:"product"`
Tiers []*PlanTierParams `form:"tiers,indexed"`
TiersMode *string `form:"tiers_mode"`
TransformUsage *PlanTransformUsageParams `form:"transform_usage"`
TrialPeriodDays *int64 `form:"trial_period_days"`
UsageType *string `form:"usage_type"`
}
// PlanTier configures tiered pricing
type PlanTier struct {
Amount int64 `json:"amount"`
UpTo int64 `json:"up_to"`
}
// PlanTransformUsage represents the bucket billing configuration.
type PlanTransformUsage struct {
DivideBy int64 `json:"divide_by"`
Round PlanTransformUsageRound `json:"round"`
}
// PlanTransformUsageParams represents the bucket billing configuration.
type PlanTransformUsageParams struct {
DivideBy *int64 `form:"divide_by"`
Round *string `form:"round"`
}
// PlanTierParams configures tiered pricing
type PlanTierParams struct {
Params `form:"*"`
Amount *int64 `form:"amount"`
UpTo *int64 `form:"-"` // handled in custom AppendTo
UpToInf *bool `form:"-"` // handled in custom AppendTo
}
// AppendTo implements custom up_to serialisation logic for tiers configuration
func (p *PlanTierParams) AppendTo(body *form.Values, keyParts []string) {
if BoolValue(p.UpToInf) {
body.Add(form.FormatKey(append(keyParts, "up_to")), "inf")
} else {
body.Add(form.FormatKey(append(keyParts, "up_to")), strconv.FormatInt(Int64Value(p.UpTo), 10))
}
}
// PlanProductParams is the set of parameters that can be used when creating a product inside a plan
// This can only be used on plan creation and won't work on plan update.
// For more details see https://stripe.com/docs/api#create_plan-product and https://stripe.com/docs/api#update_plan-product
type PlanProductParams struct {
ID *string `form:"id"`
Name *string `form:"name"`
Metadata map[string]string `form:"metadata"`
StatementDescriptor *string `form:"statement_descriptor"`
}