forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
billingportal_session.go
53 lines (46 loc) · 1.69 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
44
45
46
47
48
49
50
51
52
53
//
//
// File generated from our OpenAPI spec
//
//
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:"*"`
Configuration *string `form:"configuration"`
Customer *string `form:"customer"`
Locale *string `form:"locale"`
OnBehalfOf *string `form:"on_behalf_of"`
ReturnURL *string `form:"return_url"`
}
// BillingPortalSession is the resource representing a billing portal session.
type BillingPortalSession struct {
APIResource
Configuration *BillingPortalConfiguration `json:"configuration"`
Created int64 `json:"created"`
Customer string `json:"customer"`
ID string `json:"id"`
Livemode bool `json:"livemode"`
Locale string `json:"locale"`
Object string `json:"object"`
OnBehalfOf string `json:"on_behalf_of"`
ReturnURL string `json:"return_url"`
URL string `json:"url"`
}
// UnmarshalJSON handles deserialization of a BillingPortalSession.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (b *BillingPortalSession) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
b.ID = id
return nil
}
type billingPortalSession BillingPortalSession
var v billingPortalSession
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*b = BillingPortalSession(v)
return nil
}