Sha256: 1dbb9e5dc27077e4850a7c69b3fa05c4f4f466ca6f042e0a0684bf8ebf7c79fd

Contents?: true

Size: 505 Bytes

Versions: 4

Compression:

Stored size: 505 Bytes

Contents

module TD::Types
  # Represents a photo.
  #
  # @attr id [String] Unique identifier of the query result.
  # @attr photo [TD::Types::Photo] Photo.
  # @attr title [String] Title of the result, if known.
  # @attr description [String] A short description of the result, if known.
  class InlineQueryResult::Photo < InlineQueryResult
    attribute :id, TD::Types::String
    attribute :photo, TD::Types::Photo
    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/photo.rb
tdlib-ruby-2.2.0 lib/tdlib/types/inline_query_result/photo.rb
tdlib-ruby-2.1.0 lib/tdlib/types/inline_query_result/photo.rb
tdlib-ruby-2.0.0 lib/tdlib/types/inline_query_result/photo.rb