Sha256: c57fa9a89dc71a97cf5947d92c2014674e0be6487c733a6d729c7b602a13b52c
Contents?: true
Size: 460 Bytes
Versions: 1
Compression:
Stored size: 460 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 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 :is_full, TD::Types::Bool end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.0.0 | lib/tdlib/types/web_page_instant_view.rb |