Sha256: 71fc989fe0ba927e4a2c39e5ade1c98ee2146e337be855df3f4535d6700dc540

Contents?: true

Size: 689 Bytes

Versions: 1

Compression:

Stored size: 689 Bytes

Contents

module TD::Types
  # Contains full information about a basic group.
  #
  # @attr description [String] Group description.
  # @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 [String] Invite link for this group; available only for the group creator and only after it has
  #   been generated at least once.
  class BasicGroupFullInfo < Base
    attribute :description, TD::Types::String
    attribute :creator_user_id, TD::Types::Integer
    attribute :members, TD::Types::Array.of(TD::Types::ChatMember)
    attribute :invite_link, TD::Types::String
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-ruby-2.1.0 lib/tdlib/types/basic_group_full_info.rb