Class: Vk::API::Groups::Methods::GetInvitedUsers
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Groups::Methods::GetInvitedUsers
- Defined in:
- lib/vk/api/groups/methods/get_invited_users.rb
Overview
Returns invited users list of a community
Arguments collapse
-
#count ⇒ Integer
Number of results to return.
-
#fields ⇒ Array
List of additional fields to be returned.
-
#group_id ⇒ Integer
Group ID to return invited users for.
-
#name_case ⇒ String
Case for declension of user name and surname.
-
#offset ⇒ Integer
Offset needed to return a specific subset of results.
Instance Method Summary collapse
Methods inherited from Schema::Method
Constructor Details
#initialize(arguments) ⇒ Groups::Methods::GetInvitedUsers
|
# File 'lib/vk/api/groups/methods/get_invited_users.rb', line 15
|
Instance Method Details
#count ⇒ Integer
Returns Number of results to return.
31 |
# File 'lib/vk/api/groups/methods/get_invited_users.rb', line 31 attribute :count, API::Types::Coercible::Int.optional.default(20) |
#fields ⇒ Array
Returns List of additional fields to be returned. ; Available values: 'sex, bdate, city, country, photo_50, photo_100, photo_200_orig, photo_200, photo_400_orig, photo_max, photo_max_orig, online, online_mobile, lists, domain, has_mobile, contacts, connections, site, education, universities, schools, can_post, can_see_all_posts, can_see_audio, can_write_private_message, status, last_seen, common_count, relation, relatives, counters'.
33 |
# File 'lib/vk/api/groups/methods/get_invited_users.rb', line 33 attribute :fields, API::Types::Coercible::Array.member(API::Types::Coercible::String).optional.default(nil) |
#group_id ⇒ Integer
Returns Group ID to return invited users for.
27 |
# File 'lib/vk/api/groups/methods/get_invited_users.rb', line 27 attribute :group_id, API::Types::Coercible::Int |
#name_case ⇒ String
Returns Case for declension of user name and surname. Possible values:; *'nom' — nominative (default);; *'gen' — genitive;; *'dat' — dative;; *'acc' — accusative; ; *'ins' — instrumental;; *'abl' — prepositional.
35 |
# File 'lib/vk/api/groups/methods/get_invited_users.rb', line 35 attribute :name_case, API::Types::Coercible::String.enum("nom", "gen", "dat", "acc", "ins", "abl").optional.default(nil) |