Sha256: eb28935e5425ebd97b188bc6dfc27e9828c6b54d3cf37fc23599e9e49a72b20b

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

module TD::Types
  # Contains information about a chat invite link.
  #
  # @attr chat_id [Integer] Chat identifier of the invite link; 0 if the user is not a member of this chat.
  # @attr type [TD::Types::ChatType] Contains information about the type of the chat.
  # @attr title [String] Title of the chat.
  # @attr photo [TD::Types::ChatPhoto, nil] Chat photo; may be null.
  # @attr member_count [Integer] Number of members.
  # @attr member_user_ids [Array<Integer>] User identifiers of some chat members that may be known to the current user.
  # @attr is_public [Boolean] True, if the chat is a public supergroup or a channel with a username.
  class ChatInviteLinkInfo < Base
    attribute :chat_id, TD::Types::Integer
    attribute :type, TD::Types::ChatType
    attribute :title, TD::Types::String
    attribute :photo, TD::Types::ChatPhoto.optional.default(nil)
    attribute :member_count, TD::Types::Integer
    attribute :member_user_ids, TD::Types::Array.of(TD::Types::Integer)
    attribute :is_public, TD::Types::Bool
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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