Class PriceRange
The price range associated with a Place. end_price
could be unset, which
indicates a range without upper bound (e.g. "More than $100").
Implements
Namespace: Google.Maps.Places.V1
Assembly: Google.Maps.Places.V1.dll
Syntax
public sealed class PriceRange : IMessage<PriceRange>, IEquatable<PriceRange>, IDeepCloneable<PriceRange>, IBufferMessage, IMessage
Constructors
PriceRange()
Declaration
public PriceRange()
PriceRange(PriceRange)
Declaration
public PriceRange(PriceRange other)
Parameters
Type | Name | Description |
---|---|---|
PriceRange | other |
Properties
EndPrice
The high end of the price range (exclusive). Price should be lower than this amount.
Declaration
public Money EndPrice { get; set; }
Property Value
Type | Description |
---|---|
Money |
StartPrice
The low end of the price range (inclusive). Price should be at or above this amount.
Declaration
public Money StartPrice { get; set; }
Property Value
Type | Description |
---|---|
Money |