Class: Vk::API::Leads::Methods::GetUsers
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Leads::Methods::GetUsers
- Defined in:
- lib/vk/api/leads/methods/get_users.rb
Overview
Returns a list of last user actions for the offer.
Arguments collapse
-
#count ⇒ Integer
Number of results to return.
-
#offer_id ⇒ Integer
Offer ID.
-
#offset ⇒ Integer
Offset needed to return a specific subset of results.
-
#reverse ⇒ Boolean
Sort order.
-
#secret ⇒ String
Secret key obtained in the lead testing interface.
-
#status ⇒ Integer
Action type.
Instance Method Summary collapse
Methods inherited from Schema::Method
Constructor Details
#initialize(arguments) ⇒ Leads::Methods::GetUsers
|
# File 'lib/vk/api/leads/methods/get_users.rb', line 15
|
Instance Method Details
#count ⇒ Integer
Returns Number of results to return.
34 |
# File 'lib/vk/api/leads/methods/get_users.rb', line 34 attribute :count, API::Types::Coercible::Int.optional.default(100) |
#offer_id ⇒ Integer
Returns Offer ID.
28 |
# File 'lib/vk/api/leads/methods/get_users.rb', line 28 attribute :offer_id, API::Types::Coercible::Int |
#offset ⇒ Integer
Returns Offset needed to return a specific subset of results.
32 |
# File 'lib/vk/api/leads/methods/get_users.rb', line 32 attribute :offset, API::Types::Coercible::Int.optional.default(nil) |
#reverse ⇒ Boolean
Returns Sort order. Possible values:; *'1' — chronological;; *'0' — reverse chronological.
38 |
# File 'lib/vk/api/leads/methods/get_users.rb', line 38 attribute :reverse, API::Types::Form::Bool.optional.default(nil) |
#secret ⇒ String
Returns Secret key obtained in the lead testing interface.
30 |
# File 'lib/vk/api/leads/methods/get_users.rb', line 30 attribute :secret, API::Types::Coercible::String |
#status ⇒ Integer
Returns Action type. Possible values:; *'0' — start;; *'1' — finish;; *'2' — blocking users;; *'3' — start in a test mode;; *'4' — finish in a test mode.;.
36 |
# File 'lib/vk/api/leads/methods/get_users.rb', line 36 attribute :status, API::Types::Coercible::Int.optional.default(nil) |