PricingDisplayItem is a processed result row for display.
| 83 | |
| 84 | // PricingDisplayItem is a processed result row for display. |
| 85 | type PricingDisplayItem struct { |
| 86 | Product string |
| 87 | Region string |
| 88 | Attrs map[string]*string // ordered keys from API |
| 89 | AttrKeys []string |
| 90 | Prices []PriceInfo |
| 91 | MinPrice string |
| 92 | MaxPrice string |
| 93 | } |
| 94 | |
| 95 | type RateInfo struct { |
| 96 | Price string |
nothing calls this directly
no outgoing calls
no test coverage detected