1.6 KiB
1.6 KiB
title | description |
---|---|
webPage | webPage attributes, type and example |
Constructor: webPage
Attributes:
Name | Type | Required |
---|---|---|
id | long | Yes |
url | string | Yes |
display_url | string | 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 |
Type: WebPage
Example:
$webPage = ['_' => 'webPage', 'id' => long, 'url' => string, 'display_url' => string, '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, ];
Or, if you're into Lua:
webPage={_='webPage', id=long, url=string, display_url=string, 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, }