Module tdlight.api

Class TdApi.PageBlockEmbedded

Enclosing class:
TdApi

public static final class TdApi.PageBlockEmbedded extends TdApi.PageBlock
An embedded web page.
  • Field Details

    • url

      public String url
      Web page URL, if available.
    • html

      public String html
      HTML-markup of the embedded page.
    • posterPhoto

      public TdApi.Photo posterPhoto
      Poster photo, if available; may be null.
    • width

      public int width
      Block width; 0 if unknown.
    • height

      public int height
      Block height; 0 if unknown.
    • caption

      public TdApi.PageBlockCaption caption
      Block caption.
    • isFullWidth

      public boolean isFullWidth
      True, if the block must be full width.
    • allowScrolling

      public boolean allowScrolling
      True, if scrolling needs to be allowed.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • PageBlockEmbedded

      public PageBlockEmbedded()
      An embedded web page.
    • PageBlockEmbedded

      public PageBlockEmbedded(String url, String html, TdApi.Photo posterPhoto, int width, int height, TdApi.PageBlockCaption caption, boolean isFullWidth, boolean allowScrolling)
      An embedded web page.
      Parameters:
      url - String Web page URL, if available.
      html - String HTML-markup of the embedded page.
      posterPhoto - Photo Poster photo, if available; may be null.
      width - int Block width; 0 if unknown.
      height - int Block height; 0 if unknown.
      caption - PageBlockCaption Block caption.
      isFullWidth - boolean True, if the block must be full width.
      allowScrolling - boolean True, if scrolling needs to be allowed.
    • PageBlockEmbedded

      public PageBlockEmbedded(DataInput input) throws IOException
      An embedded web page.
      Throws:
      IOException
  • Method Details