Class: TD::Types::UnconfirmedSession
- Defined in:
- lib/tdlib/types/unconfirmed_session.rb
Overview
Contains information about an unconfirmed session.
Instance Attribute Summary collapse
-
#device_model ⇒ TD::Types::String
Model of the device that was used for the session creation, as provided by the application.
-
#id ⇒ Integer
Session identifier.
-
#location ⇒ TD::Types::String
A human-readable description of the location from which the session was created, based on the IP address.
-
#log_in_date ⇒ Integer
Point in time (Unix timestamp) when the user has logged in.
Method Summary
Methods inherited from Base
Instance Attribute Details
#device_model ⇒ TD::Types::String
Model of the device that was used for the session creation, as provided by the application.
10 11 12 |
# File 'lib/tdlib/types/unconfirmed_session.rb', line 10 def device_model @device_model end |
#id ⇒ Integer
Session identifier.
10 11 12 |
# File 'lib/tdlib/types/unconfirmed_session.rb', line 10 def id @id end |
#location ⇒ TD::Types::String
A human-readable description of the location from which the session was created, based on the IP address.
10 11 12 |
# File 'lib/tdlib/types/unconfirmed_session.rb', line 10 def location @location end |
#log_in_date ⇒ Integer
Point in time (Unix timestamp) when the user has logged in.
10 11 12 |
# File 'lib/tdlib/types/unconfirmed_session.rb', line 10 def log_in_date @log_in_date end |