Sha256: f01f9e3a56ee7c991c81b9e3abd6e3bd196b0bcb6886f0ccd957d4a5fdd722b0
Contents?: true
Size: 486 Bytes
Versions: 3
Compression:
Stored size: 486 Bytes
Contents
module TD::Types # Represents information about a venue. # # @attr id [TD::Types::String] Unique identifier of the query result. # @attr venue [TD::Types::Venue] Venue result. # @attr thumbnail [TD::Types::Thumbnail, nil] Result thumbnail in JPEG format; may be null. class InlineQueryResult::Venue < InlineQueryResult attribute :id, TD::Types::String attribute :venue, TD::Types::Venue attribute :thumbnail, TD::Types::Thumbnail.optional.default(nil) end end
Version data entries
3 entries across 3 versions & 1 rubygems