Package org.drinkless.tdlib
Class TdApi.PageBlockEmbedded
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.PageBlock
-
- org.drinkless.tdlib.TdApi.PageBlockEmbedded
-
- Enclosing class:
- TdApi
public static class TdApi.PageBlockEmbedded extends TdApi.PageBlock
An embedded web page.
-
-
Field Summary
Fields Modifier and Type Field Description booleanallowScrollingTrue, if scrolling needs to be allowed.TdApi.PageBlockCaptioncaptionBlock caption.static intCONSTRUCTORIdentifier uniquely determining type of the object.intheightBlock height; 0 if unknown.StringhtmlHTML-markup of the embedded page.booleanisFullWidthTrue, if the block must be full width.TdApi.PhotoposterPhotoPoster photo, if available; may be null.StringurlWeb page URL, if available.intwidthBlock width; 0 if unknown.
-
Constructor Summary
Constructors Constructor Description PageBlockEmbedded()An embedded web page.PageBlockEmbedded(String url, String html, TdApi.Photo posterPhoto, int width, int height, TdApi.PageBlockCaption caption, boolean isFullWidth, boolean allowScrolling)An embedded web page.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
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
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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- Web page URL, if available.html- HTML-markup of the embedded page.posterPhoto- Poster photo, if available; may be null.width- Block width; 0 if unknown.height- Block height; 0 if unknown.caption- Block caption.isFullWidth- True, if the block must be full width.allowScrolling- True, if scrolling needs to be allowed.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-