PricingOptions mirrors the Rust PricingOptions struct.
| 133 | |
| 134 | // PricingOptions mirrors the Rust PricingOptions struct. |
| 135 | type PricingOptions struct { |
| 136 | Products []string |
| 137 | Regions []string |
| 138 | ProductRegions map[string][]string |
| 139 | ProductAttrs map[string][]string |
| 140 | AttributeValues map[string]map[string][]string |
| 141 | ProductGroups map[string]uint64 |
| 142 | } |
| 143 | |
| 144 | // ProcessMetadata builds PricingOptions from API metadata. |
| 145 | func ProcessMetadata(meta *api.MetadataResponse) *PricingOptions { |
nothing calls this directly
no outgoing calls
no test coverage detected