Sha256: 85f511327ceb0a4e548356fd719ce4d3652c4001b9d123c883b514e9f05fe871
Contents?: true
Size: 476 Bytes
Versions: 1
Compression:
Stored size: 476 Bytes
Contents
module TD::Types # Represents a user contact. # # @attr id [String] Unique identifier of the query result. # @attr contact [TD::Types::Contact] A user contact. # @attr thumbnail [TD::Types::Thumbnail, nil] Result thumbnail in JPEG format; may be null. class InlineQueryResult::Contact < InlineQueryResult attribute :id, TD::Types::String attribute :contact, TD::Types::Contact attribute :thumbnail, TD::Types::Thumbnail.optional.default(nil) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/inline_query_result/contact.rb |