BatchPricingApiResponse is the top-level response from POST /pricing/batch. The API returns a JSON object keyed by product (e.g. {"ec2": [...]}).
| 111 | // BatchPricingApiResponse is the top-level response from POST /pricing/batch. |
| 112 | // The API returns a JSON object keyed by product (e.g. {"ec2": [...]}). |
| 113 | type BatchPricingApiResponse map[string][]PricingItem |
| 114 | |
| 115 | // PricingRequest is the POST body for /pricing. |
| 116 | type PricingRequest struct { |
nothing calls this directly
no outgoing calls
no test coverage detected