Class: Vk::API::Groups::Methods::IsMember
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Groups::Methods::IsMember
- Defined in:
- lib/vk/api/groups/methods/is_member.rb
Overview
Returns information specifying whether a user is a member of a community.
Arguments collapse
-
#extended ⇒ Boolean
'1' — to return an extended response with additional fields.; By default: '0'.
-
#group_id ⇒ String
ID or screen name of the community.
-
#user_id ⇒ Integer
User ID.
-
#user_ids ⇒ Array
User IDs.
Instance Method Summary collapse
Methods inherited from Schema::Method
Constructor Details
#initialize(arguments) ⇒ Groups::Methods::IsMember
|
|
# File 'lib/vk/api/groups/methods/is_member.rb', line 15
|
Instance Method Details
#extended ⇒ Boolean
32 |
# File 'lib/vk/api/groups/methods/is_member.rb', line 32 attribute :extended, API::Types::Form::Bool.optional.default(nil) |
#group_id ⇒ String
26 |
# File 'lib/vk/api/groups/methods/is_member.rb', line 26 attribute :group_id, API::Types::Coercible::String |
#user_id ⇒ Integer
28 |
# File 'lib/vk/api/groups/methods/is_member.rb', line 28 attribute :user_id, API::Types::Coercible::Int.optional.default(nil) |
#user_ids ⇒ Array
30 |
# File 'lib/vk/api/groups/methods/is_member.rb', line 30 attribute :user_ids, API::Types::Coercible::Array.member(API::Types::Coercible::Int).optional.default(nil) |