Sha256: 713f35404cace683ab7c6441ede62cf692eb875a98f9bd9c78be9251b1a3fe58
Contents?: true
Size: 487 Bytes
Versions: 3
Compression:
Stored size: 487 Bytes
Contents
module TD::Types # Represents a user contact. # # @attr id [TD::Types::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
3 entries across 3 versions & 1 rubygems