Sha256: 37fbbe35b678895a0ba11e44212f807607fca4e13dea94febc4f557f873cd765
Contents?: true
Size: 460 Bytes
Versions: 3
Compression:
Stored size: 460 Bytes
Contents
module TD::Types # Represents information about a venue. # # @attr id [String] Unique identifier of the query result. # @attr venue [TD::Types::Venue] Venue result. # @attr thumbnail [TD::Types::PhotoSize, nil] Result thumbnail; may be null. class InlineQueryResult::Venue < InlineQueryResult attribute :id, TD::Types::String attribute :venue, TD::Types::Venue attribute :thumbnail, TD::Types::PhotoSize.optional.default(nil) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.2.0 | lib/tdlib/types/inline_query_result/venue.rb |
tdlib-ruby-2.1.0 | lib/tdlib/types/inline_query_result/venue.rb |
tdlib-ruby-2.0.0 | lib/tdlib/types/inline_query_result/venue.rb |