-
Notifications
You must be signed in to change notification settings - Fork 459
/
lineitem.go
67 lines (57 loc) · 1.82 KB
/
lineitem.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
65
66
67
//
//
// File generated from our OpenAPI spec
//
//
package stripe
import "encoding/json"
// LineItemDiscount represent the details of one discount applied to a line item.
type LineItemDiscount struct {
Amount int64 `json:"amount"`
Discount *Discount `json:"discount"`
}
// LineItemTax represent the details of one tax rate applied to a line item.
type LineItemTax struct {
Amount int64 `json:"amount"`
Rate *TaxRate `json:"rate"`
// This property never worked. Use Rate instead.
// TODO: Remove in the next major version
TaxRate *TaxRate `json:"tax_rate"`
}
// LineItem is the resource representing a line item.
type LineItem struct {
APIResource
AmountSubtotal int64 `json:"amount_subtotal"`
AmountTotal int64 `json:"amount_total"`
Currency Currency `json:"currency"`
Deleted bool `json:"deleted"`
Description string `json:"description"`
Discounts []*LineItemDiscount `json:"discounts"`
ID string `json:"id"`
Object string `json:"object"`
Price *Price `json:"price"`
Quantity int64 `json:"quantity"`
Taxes []*LineItemTax `json:"taxes"`
}
// UnmarshalJSON handles deserialization of a LineItem.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (l *LineItem) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
l.ID = id
return nil
}
type lineItem LineItem
var v lineItem
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*l = LineItem(v)
return nil
}
// LineItemList is a list of prices as returned from a list endpoint.
type LineItemList struct {
APIResource
ListMeta
Data []*LineItem `json:"data"`
}