MadelineProto/old_docs/API_docs_v65/constructors/webPage.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

1.8 KiB

title description
webPage webPage attributes, type and example

Constructor: webPage

Back to constructors index

Attributes:

Name Type Required
id long Yes
url string Yes
display_url string Yes
hash int Yes
type string Optional
site_name string Optional
title string Optional
description string Optional
photo Photo Optional
embed_url string Optional
embed_type string Optional
embed_width int Optional
embed_height int Optional
duration int Optional
author string Optional
document Document Optional
cached_page Page Optional

Type: WebPage

Example:

$webPage = ['_' => 'webPage', 'id' => long, 'url' => string, 'display_url' => string, 'hash' => int, 'type' => string, 'site_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'embed_url' => string, 'embed_type' => string, 'embed_width' => int, 'embed_height' => int, 'duration' => int, 'author' => string, 'document' => Document, 'cached_page' => Page, ];

Or, if you're into Lua:

webPage={_='webPage', id=long, url=string, display_url=string, hash=int, type=string, site_name=string, title=string, description=string, photo=Photo, embed_url=string, embed_type=string, embed_width=int, embed_height=int, duration=int, author=string, document=Document, cached_page=Page, }