PricingAPIResponse is the top-level response from POST /pricing.
| 104 | |
| 105 | // PricingAPIResponse is the top-level response from POST /pricing. |
| 106 | type PricingAPIResponse struct { |
| 107 | Data []PricingItem `json:"data"` |
| 108 | Total int64 `json:"total"` |
| 109 | } |
| 110 | |
| 111 | // BatchPricingApiResponse is the top-level response from POST /pricing/batch. |
| 112 | // The API returns a JSON object keyed by product (e.g. {"ec2": [...]}). |
nothing calls this directly
no outgoing calls
no test coverage detected