forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.go
38 lines (32 loc) · 850 Bytes
/
application.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
//
//
// File generated from our OpenAPI spec
//
//
package stripe
import "encoding/json"
type Application struct {
Deleted bool `json:"deleted"`
// Unique identifier for the object.
ID string `json:"id"`
// The name of the application.
Name string `json:"name"`
// String representing the object's type. Objects of the same type share the same value.
Object string `json:"object"`
}
// UnmarshalJSON handles deserialization of an Application.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (a *Application) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
a.ID = id
return nil
}
type application Application
var v application
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*a = Application(v)
return nil
}