Class: Vk::API::Groups::GroupXtrInvitedBy
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Groups::GroupXtrInvitedBy
- Defined in:
- lib/vk/api/groups/group_xtr_invited_by.rb
Overview
Instance Method Summary collapse
-
#admin_level ⇒ Integer
Level of current user's credentials as manager.
-
#id ⇒ String
Community ID.
-
#invited_by ⇒ Integer
Inviter ID.
-
#is_admin ⇒ API::Base::BoolInt
Information whether current user is manager.
-
#is_closed ⇒ API::Base::BoolInt
Information whether community is closed.
-
#is_member ⇒ API::Base::BoolInt
Information whether current user is member.
-
#name ⇒ String
Community name.
-
#photo_100 ⇒ String
URL of square photo of the community with 100 pixels in width.
-
#photo_200 ⇒ String
URL of square photo of the community with 200 pixels in width.
-
#photo_50 ⇒ String
URL of square photo of the community with 50 pixels in width.
-
#screen_name ⇒ String
Domain of the community page.
-
#type ⇒ String
Community type.
Instance Method Details
#admin_level ⇒ Integer
Returns Level of current user's credentials as manager.
23 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 23 attribute :admin_level, API::Types::Coercible::Int.enum(1, 2, 3).optional.default(nil) |
#id ⇒ String
Returns Community ID.
11 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 11 attribute :id, API::Types::Coercible::String.optional.default(nil) |
#invited_by ⇒ Integer
Returns Inviter ID.
33 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 33 attribute :invited_by, API::Types::Coercible::Int.optional.default(nil) |
#is_admin ⇒ API::Base::BoolInt
Returns Information whether current user is manager.
21 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 21 attribute :is_admin, API::Base::BoolInt.optional.default(nil) |
#is_closed ⇒ API::Base::BoolInt
Returns Information whether community is closed.
17 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 17 attribute :is_closed, API::Base::BoolInt.optional.default(nil) |
#is_member ⇒ API::Base::BoolInt
Returns Information whether current user is member.
25 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 25 attribute :is_member, API::Base::BoolInt.optional.default(nil) |
#name ⇒ String
Returns Community name.
13 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 13 attribute :name, API::Types::Coercible::String.optional.default(nil) |
#photo_100 ⇒ String
Returns URL of square photo of the community with 100 pixels in width.
29 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 29 attribute :photo_100, API::Types::Coercible::String.optional.default(nil) |
#photo_200 ⇒ String
Returns URL of square photo of the community with 200 pixels in width.
31 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 31 attribute :photo_200, API::Types::Coercible::String.optional.default(nil) |
#photo_50 ⇒ String
Returns URL of square photo of the community with 50 pixels in width.
27 |
# File 'lib/vk/api/groups/group_xtr_invited_by.rb', line 27 attribute :photo_50, API::Types::Coercible::String.optional.default(nil) |