Sha256: 9e4fcf1977fccd5d245ce35d9c41e0f3c19834b1b33a737c00f170542f0acdc3
Contents?: true
Size: 993 Bytes
Versions: 2
Compression:
Stored size: 993 Bytes
Contents
module TD::Types # Contains full information about a basic group. # # @attr photo [TD::Types::ChatPhoto, nil] Chat photo; may be null. # @attr description [TD::Types::String] Group description. # Updated only after the basic group is opened. # @attr creator_user_id [Integer] User identifier of the creator of the group; 0 if unknown. # @attr members [Array<TD::Types::ChatMember>] Group members. # @attr invite_link [TD::Types::ChatInviteLink, nil] 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. class BasicGroupFullInfo < Base attribute :photo, TD::Types::ChatPhoto.optional.default(nil) attribute :description, TD::Types::String attribute :creator_user_id, TD::Types::Coercible::Integer attribute :members, TD::Types::Array.of(TD::Types::ChatMember) attribute :invite_link, TD::Types::ChatInviteLink.optional.default(nil) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/basic_group_full_info.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/basic_group_full_info.rb |