Sha256: 0a019ef6355623816ab66dd293b76d81d4331a721d39485097977bc29d619b56
Contents?: true
Size: 570 Bytes
Versions: 1
Compression:
Stored size: 570 Bytes
Contents
module TD::Types # Describes a location on planet Earth. # # @attr latitude [Float] Latitude of the location in degrees; as defined by the sender. # @attr longitude [Float] Longitude of the location, in degrees; as defined by the sender. # @attr horizontal_accuracy [Float] The estimated horizontal accuracy of the location, in meters; as defined by the # sender. # 0 if unknown. class Location < Base attribute :latitude, TD::Types::Float attribute :longitude, TD::Types::Float attribute :horizontal_accuracy, TD::Types::Float end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/location.rb |