JSONTier is a single volume-pricing tier for JSON output.
| 15 | |
| 16 | // JSONTier is a single volume-pricing tier for JSON output. |
| 17 | type JSONTier struct { |
| 18 | StartRange string `json:"start_range"` |
| 19 | EndRange string `json:"end_range"` |
| 20 | Price string `json:"price"` |
| 21 | } |
| 22 | |
| 23 | // JSONPriceEntry is one pricing option for JSON output. |
| 24 | type JSONPriceEntry struct { |
nothing calls this directly
no outgoing calls
no test coverage detected