Class: Vk::API::Leads::Entry
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Leads::Entry
- Defined in:
- lib/vk/api/leads/entry.rb
Overview
Instance Method Summary collapse
-
#aid ⇒ Integer
Application ID.
-
#comment ⇒ String
Comment text.
-
#date ⇒ Integer
Date when the action has been started in Unixtime.
-
#sid ⇒ String
Session string ID.
-
#start_date ⇒ Integer
Start date in Unixtime (for status=2).
-
#status ⇒ Integer
Action type.
-
#test_mode ⇒ API::Base::BoolInt
Information whether test mode is enabled.
-
#uid ⇒ Integer
User ID.
Instance Method Details
#aid ⇒ Integer
Returns Application ID.
13 |
# File 'lib/vk/api/leads/entry.rb', line 13 attribute :aid, API::Types::Coercible::Int.optional.default(nil) |
#comment ⇒ String
Returns Comment text.
25 |
# File 'lib/vk/api/leads/entry.rb', line 25 attribute :comment, API::Types::Coercible::String.optional.default(nil) |
#date ⇒ Integer
Returns Date when the action has been started in Unixtime.
17 |
# File 'lib/vk/api/leads/entry.rb', line 17 attribute :date, API::Types::Coercible::Int.optional.default(nil) |
#sid ⇒ String
Returns Session string ID.
15 |
# File 'lib/vk/api/leads/entry.rb', line 15 attribute :sid, API::Types::Coercible::String.optional.default(nil) |
#start_date ⇒ Integer
Returns Start date in Unixtime (for status=2).
23 |
# File 'lib/vk/api/leads/entry.rb', line 23 attribute :start_date, API::Types::Coercible::Int.optional.default(nil) |
#status ⇒ Integer
Returns Action type.
19 |
# File 'lib/vk/api/leads/entry.rb', line 19 attribute :status, API::Types::Coercible::Int.optional.default(nil) |
#test_mode ⇒ API::Base::BoolInt
Returns Information whether test mode is enabled.
21 |
# File 'lib/vk/api/leads/entry.rb', line 21 attribute :test_mode, API::Base::BoolInt.optional.default(nil) |