forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
billingportal_session.go
43 lines (37 loc) · 1.13 KB
/
billingportal_session.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
package stripe
import (
"encoding/json"
)
// BillingPortalSessionParams is the set of parameters that can be used when creating a billing portal session.
type BillingPortalSessionParams struct {
Params `form:"*"`
Customer *string `form:"customer"`
ReturnURL *string `form:"return_url"`
}
// BillingPortalSession is the resource representing a billing portal session.
type BillingPortalSession struct {
APIResource
Created int64 `json:"created"`
Customer string `json:"customer"`
ID string `json:"id"`
Livemode bool `json:"livemode"`
Object string `json:"object"`
ReturnURL string `json:"return_url"`
URL string `json:"url"`
}
// UnmarshalJSON handles deserialization of a billing portal session.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (p *BillingPortalSession) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
p.ID = id
return nil
}
type session BillingPortalSession
var v session
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*p = BillingPortalSession(v)
return nil
}