Class: Vk::API::Secure::TokenChecked
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Secure::TokenChecked
- Defined in:
- lib/vk/api/secure/token_checked.rb
Overview
Instance Method Summary collapse
-
#date ⇒ Integer
Date when access_token has been generated in Unixtime.
-
#expire ⇒ Integer
Date when access_token will expire in Unixtime.
-
#success ⇒ API::Base::OkResponse
Returns if successfully processed.
-
#user_id ⇒ Integer
User ID.
Instance Method Details
#date ⇒ Integer
Returns Date when access_token has been generated in Unixtime.
15 |
# File 'lib/vk/api/secure/token_checked.rb', line 15 attribute :date, API::Types::Coercible::Int.optional.default(nil) |
#expire ⇒ Integer
Returns Date when access_token will expire in Unixtime.
17 |
# File 'lib/vk/api/secure/token_checked.rb', line 17 attribute :expire, API::Types::Coercible::Int.optional.default(nil) |
#success ⇒ API::Base::OkResponse
Returns if successfully processed
11 |
# File 'lib/vk/api/secure/token_checked.rb', line 11 attribute :success, API::Base::OkResponse.optional.default(nil) |