GMSPlacePriceRange
@interface GMSPlacePriceRange : NSObjectPrice range associated with a place. When price range information is available for a place, the start price will always be set but the end price may not always be set. This indicates a range without an upper bound (eg: “More than $100”).
-
The start value of the price range.
Declaration
Swift
var startPrice: GMSPlaceMoney? { get }Objective-C
@property (nonatomic, readonly, nullable) GMSPlaceMoney *startPrice; -
The end value of the price range.
Declaration
Swift
var endPrice: GMSPlaceMoney? { get }Objective-C
@property (nonatomic, readonly, nullable) GMSPlaceMoney *endPrice; -
Unavailable
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE;