Sha256: 9da670942ea2a13b4126523cc0424d06ee0087860492e09e866b7f01943fcd05

Contents?: true

Size: 486 Bytes

Versions: 2

Compression:

Stored size: 486 Bytes

Contents

module TD::Types
  # A link to a chat.
  #
  # @attr title [TD::Types::String] Chat title.
  # @attr photo [TD::Types::ChatPhotoInfo, nil] Chat photo; may be null.
  # @attr username [TD::Types::String] Chat username, by which all other information about the chat should be resolved.
  class PageBlock::ChatLink < PageBlock
    attribute :title, TD::Types::String
    attribute :photo, TD::Types::ChatPhotoInfo.optional.default(nil)
    attribute :username, TD::Types::String
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/page_block/chat_link.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/page_block/chat_link.rb