-
Notifications
You must be signed in to change notification settings - Fork 462
/
plan.go
142 lines (122 loc) · 5.27 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
package stripe
import (
"strconv"
"github.com/stripe/stripe-go/form"
)
// PlanInterval is the list of allowed values for a plan's interval.
type PlanInterval string
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
const (
PlanBillingSchemePerUnit PlanBillingScheme = "per_unit"
PlanBillingSchemeTiered PlanBillingScheme = "tiered"
)
// PlanUsageType is the list of allowed values for a plan's usage type.
type PlanUsageType string
const (
PlanUsageTypeLicensed PlanUsageType = "licensed"
PlanUsageTypeMetered PlanUsageType = "metered"
)
// PlanTransformUsageRound is the list of allowed values for a plan's transform usage round logic.
type PlanTransformUsageRound string
const (
PlanTransformUsageRoundDown PlanTransformUsageRound = "down"
PlanTransformUsageRoundUp PlanTransformUsageRound = "up"
)
// Plan is the resource representing a Stripe plan.
// For more details see https://stripe.com/docs/api#plans.
type Plan struct {
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:"*"`
Created *int64 `form:"created"`
CreatedRange *RangeQueryParams `form:"created"`
}
// 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:"*"`
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 {
BucketSize int64 `json:"bucket_size"`
Round PlanTransformUsageRound `json:"round"`
}
// PlanTransformUsageParams represents the bucket billing configuration.
type PlanTransformUsageParams struct {
BucketSize *int64 `form:"bucket_size"`
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"`
}