We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be38531 commit e8ef769Copy full SHA for e8ef769
price.go
@@ -27,10 +27,10 @@ type PriceAttributes struct {
27
28
// PriceAttributesTiers is list of pricing tier objects when using volume and graduated pricing.
29
type PriceAttributesTiers struct {
30
- LastUnit int `json:"last_unit"`
31
- UnitPrice int `json:"unit_price"`
32
- UnitPriceDecimal any `json:"unit_price_decimal"`
33
- FixedFee int `json:"fixed_fee"`
+ LastUnit any `json:"last_unit"`
+ UnitPrice int `json:"unit_price"`
+ UnitPriceDecimal *string `json:"unit_price_decimal"`
+ FixedFee int `json:"fixed_fee"`
34
}
35
36
// APIResponseRelationshipsPrice relationships of a variant
0 commit comments