Price is a single pricing model entry.
| 82 | |
| 83 | // Price is a single pricing model entry. |
| 84 | type Price struct { |
| 85 | Rates []PriceRate `json:"rates,omitempty"` |
| 86 | PricingModel *string `json:"pricingModel,omitempty"` |
| 87 | UpfrontFee *AttrValue `json:"upfrontFee,omitempty"` |
| 88 | Year *AttrValue `json:"year,omitempty"` |
| 89 | Unit *string `json:"unit,omitempty"` |
| 90 | PurchaseOption *string `json:"purchaseOption,omitempty"` |
| 91 | InterruptionMaxPct *AttrValue `json:"interruptionMaxPct,omitempty"` |
| 92 | } |
| 93 | |
| 94 | // PricingItem is one result row from the pricing API. |
| 95 | type PricingItem struct { |
nothing calls this directly
no outgoing calls
no test coverage detected