Sha256: f8a063775f1833df60c7d11930eec16a00371638141b1962bba0492f9a2efcf3

Contents?: true

Size: 1.41 KB

Versions: 6

Compression:

Stored size: 1.41 KB

Contents

module Loqate
  module Geocoding
    # A result from the directions API call.
    class Direction < Dry::Struct
      # A zero based counter indicating the row number.
      #
      # @return [Integer]
      #
      attribute :segment_number, Types::Strict::Integer

      # A zero based counter indicating the row number.
      #
      # @return [Integer]
      #
      attribute :step_number, Types::Strict::Integer

      # The type of routing instruction.
      #
      # @return [String]
      #
      attribute :action, Types::Strict::String

      # Textual description of the routing instruction.
      #
      # @return [String]
      #
      attribute :description, Types::Strict::String

      # The name of the road to turn onto.
      #
      # @return [String]
      #
      attribute :road, Types::Strict::String

      # The time in seconds for this part of the route.
      #
      # @return [Integer]
      #
      attribute :step_time, Types::Strict::Integer

      # The distance in metres for this part of the route.
      #
      # @return [Integer]
      #
      attribute :step_distance, Types::Strict::Integer

      # The total time in seconds for the route.
      #
      # @return [Integer]
      #
      attribute :total_time, Types::Strict::Integer

      # The total distance in metres for the route.
      #
      # @return [Integer]
      #
      attribute :total_distance, Types::Strict::Integer
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
loqate-0.12.0 lib/loqate/geocoding/direction.rb
loqate-0.11.1 lib/loqate/geocoding/direction.rb
loqate-0.11.0 lib/loqate/geocoding/direction.rb
loqate-0.10.4 lib/loqate/geocoding/direction.rb
loqate-0.10.3 lib/loqate/geocoding/direction.rb
loqate-0.10.2 lib/loqate/geocoding/direction.rb