forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilelink.go
60 lines (52 loc) · 1.71 KB
/
filelink.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
package stripe
import (
"encoding/json"
)
// FileLinkParams is the set of parameters that can be used when creating or updating a file link.
type FileLinkParams struct {
Params `form:"*"`
ExpiresAt *int64 `form:"expires_at"`
File *string `form:"file"`
}
// FileLinkListParams is the set of parameters that can be used when listing file links.
type FileLinkListParams struct {
ListParams `form:"*"`
Created *int64 `form:"created"`
CreatedRange *RangeQueryParams `form:"created"`
Expired *bool `form:"expired"`
File *string `form:"file"`
}
// FileLink is the resource representing a Stripe file link.
// For more details see https://stripe.com/docs/api#file_links.
type FileLink struct {
Created int64 `json:"created"`
Expired bool `json:"expired"`
ExpiresAt int64 `json:"expires_at"`
File *FileUpload `json:"file"`
ID string `json:"id"`
Livemode bool `json:"livemode"`
Metadata map[string]string `json:"metadata"`
Object string `json:"object"`
URL string `json:"url"`
}
// UnmarshalJSON handles deserialization of a file link.
// This custom unmarshaling is needed because the resulting
// property may be an ID or the full struct if it was expanded.
func (c *FileLink) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
c.ID = id
return nil
}
type fileLink FileLink
var v fileLink
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*c = FileLink(v)
return nil
}
// FileLinkList is a list of file links as retrieved from a list endpoint.
type FileLinkList struct {
ListMeta
Data []*FileLink `json:"data"`
}