Sha256: 4d7ab3f9eda11f700f1c8dc3caca73c09c4adbc384d2c701649f2412f8dea8aa
Contents?: true
Size: 836 Bytes
Versions: 1
Compression:
Stored size: 836 Bytes
Contents
module TD::Types # Describes an instant view page for a web page. # # @attr page_blocks [Array<TD::Types::PageBlock>] Content of the web page. # @attr view_count [Integer] Number of the instant view views; 0 if unknown. # @attr version [Integer] Version of the instant view, currently can be 1 or 2. # @attr is_rtl [Boolean] True, if the instant view must be shown from right to left. # @attr is_full [Boolean] True, if the instant view contains the full page. # A network request might be needed to get the full web page instant view. class WebPageInstantView < Base attribute :page_blocks, TD::Types::Array.of(TD::Types::PageBlock) attribute :view_count, TD::Types::Integer attribute :version, TD::Types::Integer attribute :is_rtl, TD::Types::Bool attribute :is_full, TD::Types::Bool end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/web_page_instant_view.rb |