Class: TD::Types::BasicGroupFullInfo
- Defined in:
- lib/tdlib/types/basic_group_full_info.rb
Overview
Contains full information about a basic group.
Instance Attribute Summary collapse
-
#creator_user_id ⇒ Integer
User identifier of the creator of the group; 0 if unknown.
-
#description ⇒ TD::Types::String
Group description.
-
#invite_link ⇒ TD::Types::ChatInviteLink?
Primary invite link for this group; may be null.
-
#members ⇒ Array<TD::Types::ChatMember>
Group members.
-
#photo ⇒ TD::Types::ChatPhoto?
Chat photo; may be null.
Method Summary
Methods inherited from Base
Instance Attribute Details
#creator_user_id ⇒ Integer
User identifier of the creator of the group; 0 if unknown.
12 13 14 |
# File 'lib/tdlib/types/basic_group_full_info.rb', line 12 def creator_user_id @creator_user_id end |
#description ⇒ TD::Types::String
Group description. Updated only after the basic group is opened.
12 13 14 |
# File 'lib/tdlib/types/basic_group_full_info.rb', line 12 def description @description end |
#invite_link ⇒ TD::Types::ChatInviteLink?
Primary invite link for this group; may be null. For chat administrators with can_invite_users right only. Updated only after the basic group is opened.
12 13 14 |
# File 'lib/tdlib/types/basic_group_full_info.rb', line 12 def invite_link @invite_link end |
#members ⇒ Array<TD::Types::ChatMember>
Group members.
12 13 14 |
# File 'lib/tdlib/types/basic_group_full_info.rb', line 12 def members @members end |
#photo ⇒ TD::Types::ChatPhoto?
Chat photo; may be null.
12 13 14 |
# File 'lib/tdlib/types/basic_group_full_info.rb', line 12 def photo @photo end |