Sha256: 0e7af89bcf7d03b5325195e47c7f21914263db17b9909ddeff155f6962a640de

Contents?: true

Size: 475 Bytes

Versions: 4

Compression:

Stored size: 475 Bytes

Contents

module TD::Types
  # Represents a video.
  #
  # @attr id [String] Unique identifier of the query result.
  # @attr video [TD::Types::Video] Video.
  # @attr title [String] Title of the video.
  # @attr description [String] Description of the video.
  class InlineQueryResult::Video < InlineQueryResult
    attribute :id, TD::Types::String
    attribute :video, TD::Types::Video
    attribute :title, TD::Types::String
    attribute :description, TD::Types::String
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/inline_query_result/video.rb
tdlib-ruby-2.2.0 lib/tdlib/types/inline_query_result/video.rb
tdlib-ruby-2.1.0 lib/tdlib/types/inline_query_result/video.rb
tdlib-ruby-2.0.0 lib/tdlib/types/inline_query_result/video.rb