Sha256: 0a6ac99871fdbbf3a3ae5ac234b5dae54a005e0651d06b29301a78df9d25bd6f

Contents?: true

Size: 257 Bytes

Versions: 6

Compression:

Stored size: 257 Bytes

Contents

module TD::Types
  # Describes the type of a chat.
  class ChatType < Base
    %w[
      private
      basic_group
      supergroup
      secret
    ].each do |type|
      autoload TD::Types.camelize(type), "tdlib/types/chat_type/#{type}"
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/chat_type.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/chat_type.rb
tdlib-schema-1.7.0.1 lib/tdlib/types/chat_type.rb
tdlib-ruby-2.2.0 lib/tdlib/types/chat_type.rb
tdlib-ruby-2.1.0 lib/tdlib/types/chat_type.rb
tdlib-ruby-2.0.0 lib/tdlib/types/chat_type.rb