prices property

List<Price>? prices
getter/setter pair

A list of inclusive order price upper bounds.

The last price's value can be "infinity". For example [{"value": "10", "currency": "USD"}, {"value": "500", "currency": "USD"}, {"value": "infinity", "currency": "USD"}] represents the headers "<= $10", "<= $500", and "> $500". All prices within a service must have the same currency. Must be non-empty. Can only be set if all other fields are not set.

Implementation

core.List<Price>? prices;