forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitcoin_transaction.go
46 lines (40 loc) · 1.49 KB
/
bitcoin_transaction.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
package stripe
import "encoding/json"
// BitcoinTransactionListParams is the set of parameters that can be used when listing BitcoinTransactions.
type BitcoinTransactionListParams struct {
ListParams
Receiver, Customer string
}
// BitcoinTransactionList is a list object for BitcoinTransactions.
// It is a child object of BitcoinRecievers
// For more details see https://stripe.com/docs/api/#retrieve_bitcoin_receiver
type BitcoinTransactionList struct {
ListMeta
Values []*BitcoinTransaction `json:"data"`
}
// BitcoinTransaction is the resource representing a Stripe bitcoin transaction.
// For more details see https://stripe.com/docs/api/#bitcoin_receivers
type BitcoinTransaction struct {
ID string `json:"id"`
Created int64 `json:"created"`
Amount uint64 `json:"amount"`
Currency Currency `json:"currency"`
BitcoinAmount uint64 `json:"bitcoin_amount"`
Receiver string `json:"receiver"`
Customer string `json:"customer"`
}
// UnmarshalJSON handles deserialization of a BitcoinTransaction.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (bt *BitcoinTransaction) UnmarshalJSON(data []byte) error {
type bitcoinTransaction BitcoinTransaction
var t bitcoinTransaction
err := json.Unmarshal(data, &t)
if err == nil {
*bt = BitcoinTransaction(t)
} else {
// the id is surrounded by "\" characters, so strip them
bt.ID = string(data[1 : len(data)-1])
}
return nil
}