Class: Aws::GeoRoutes::Types::RouteTollPriceSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteTollPriceSummary
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Summary of the route and toll price.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#currency ⇒ String
Currency code corresponding to the price.
-
#estimate ⇒ Boolean
If the price is an estimate or an exact value.
-
#range ⇒ Boolean
If the price is a range or an exact value.
-
#range_value ⇒ Types::RouteTollPriceValueRange
Price range with a minimum and maximum value, if a range.
-
#value ⇒ Float
Exact price, if not a range.
Instance Attribute Details
#currency ⇒ String
Currency code corresponding to the price. This is the same as Currency specified in the request.
4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4684 class RouteTollPriceSummary < Struct.new( :currency, :estimate, :range, :range_value, :value) SENSITIVE = [] include Aws::Structure end |
#estimate ⇒ Boolean
If the price is an estimate or an exact value.
4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4684 class RouteTollPriceSummary < Struct.new( :currency, :estimate, :range, :range_value, :value) SENSITIVE = [] include Aws::Structure end |
#range ⇒ Boolean
If the price is a range or an exact value. If any of the toll fares making up the route is a range, the overall price is also a range.
4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4684 class RouteTollPriceSummary < Struct.new( :currency, :estimate, :range, :range_value, :value) SENSITIVE = [] include Aws::Structure end |
#range_value ⇒ Types::RouteTollPriceValueRange
Price range with a minimum and maximum value, if a range.
4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4684 class RouteTollPriceSummary < Struct.new( :currency, :estimate, :range, :range_value, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
Exact price, if not a range.
4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4684 class RouteTollPriceSummary < Struct.new( :currency, :estimate, :range, :range_value, :value) SENSITIVE = [] include Aws::Structure end |