-
Notifications
You must be signed in to change notification settings - Fork 460
/
feerefund.go
64 lines (55 loc) · 1.88 KB
/
feerefund.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
//
//
// File generated from our OpenAPI spec
//
//
package stripe
import "encoding/json"
// FeeRefundParams is the set of parameters that can be used when refunding an application fee.
// For more details see https://stripe.com/docs/api#fee_refund.
type FeeRefundParams struct {
Params `form:"*"`
ApplicationFee *string `form:"-"` // Included in URL
Amount *int64 `form:"amount"`
}
// FeeRefundListParams is the set of parameters that can be used when listing application fee refunds.
// For more details see https://stripe.com/docs/api#list_fee_refunds.
type FeeRefundListParams struct {
ListParams `form:"*"`
ApplicationFee *string `form:"-"` // Included in URL
}
// FeeRefund is the resource representing a Stripe application fee refund.
// For more details see https://stripe.com/docs/api#fee_refunds.
type FeeRefund struct {
APIResource
Amount int64 `json:"amount"`
BalanceTransaction *BalanceTransaction `json:"balance_transaction"`
Created int64 `json:"created"`
Currency Currency `json:"currency"`
Fee *ApplicationFee `json:"fee"`
ID string `json:"id"`
Metadata map[string]string `json:"metadata"`
Object string `json:"object"`
}
// FeeRefundList is a list object for application fee refunds.
type FeeRefundList struct {
APIResource
ListMeta
Data []*FeeRefund `json:"data"`
}
// UnmarshalJSON handles deserialization of a FeeRefund.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (f *FeeRefund) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
f.ID = id
return nil
}
type feeRefund FeeRefund
var v feeRefund
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*f = FeeRefund(v)
return nil
}