Class: Vk::API::Places::Checkin
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Places::Checkin
- Defined in:
- lib/vk/api/places/checkin.rb
Overview
Instance Method Summary collapse
-
#date ⇒ Integer
Date when the checkin has been added in Unixtime.
-
#distance ⇒ Integer
Distance to the place.
-
#id ⇒ Integer
Checkin ID.
-
#latitude ⇒ Number
Place latitude.
-
#longitude ⇒ Number
Place longitude.
-
#place_city ⇒ Integer
City ID.
-
#place_country ⇒ Integer
Country ID.
-
#place_icon ⇒ String
URL of the place's icon.
-
#place_id ⇒ Integer
Place ID.
-
#place_title ⇒ String
Place title.
-
#place_type ⇒ String
Place type.
-
#text ⇒ String
Comment text.
-
#user_id ⇒ Integer
User ID.
Instance Method Details
#date ⇒ Integer
Returns Date when the checkin has been added in Unixtime.
15 |
# File 'lib/vk/api/places/checkin.rb', line 15 attribute :date, API::Types::Coercible::Int |
#distance ⇒ Integer
Returns Distance to the place.
25 |
# File 'lib/vk/api/places/checkin.rb', line 25 attribute :distance, API::Types::Coercible::Int.optional.default(nil) |
#id ⇒ Integer
Returns Checkin ID.
11 |
# File 'lib/vk/api/places/checkin.rb', line 11 attribute :id, API::Types::Coercible::Int |
#latitude ⇒ Number
Returns Place latitude.
17 |
# File 'lib/vk/api/places/checkin.rb', line 17 attribute :latitude, API::Types::Coercible::Int.optional.default(nil) |
#longitude ⇒ Number
Returns Place longitude.
19 |
# File 'lib/vk/api/places/checkin.rb', line 19 attribute :longitude, API::Types::Coercible::Int.optional.default(nil) |
#place_city ⇒ Integer
Returns City ID.
31 |
# File 'lib/vk/api/places/checkin.rb', line 31 attribute :place_city, API::Types::Coercible::Int.optional.default(nil) |
#place_country ⇒ Integer
Returns Country ID.
29 |
# File 'lib/vk/api/places/checkin.rb', line 29 attribute :place_country, API::Types::Coercible::Int.optional.default(nil) |
#place_icon ⇒ String
Returns URL of the place's icon.
35 |
# File 'lib/vk/api/places/checkin.rb', line 35 attribute :place_icon, API::Types::Coercible::String.optional.default(nil) |
#place_id ⇒ Integer
Returns Place ID.
21 |
# File 'lib/vk/api/places/checkin.rb', line 21 attribute :place_id, API::Types::Coercible::Int.optional.default(nil) |
#place_title ⇒ String
Returns Place title.
27 |
# File 'lib/vk/api/places/checkin.rb', line 27 attribute :place_title, API::Types::Coercible::String.optional.default(nil) |
#place_type ⇒ String
Returns Place type.
33 |
# File 'lib/vk/api/places/checkin.rb', line 33 attribute :place_type, API::Types::Coercible::String.optional.default(nil) |