1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
webPageExternal | webPageExternal attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: webPageExternal
Attributes:
Name | Type | Required |
---|---|---|
url | string | Yes |
display_url | string | Yes |
type | string | Optional |
title | string | Optional |
description | string | Optional |
thumb_url | string | Optional |
content_url | string | Optional |
w | int | Optional |
h | int | Optional |
duration | int | Optional |
Type: WebPage
Example:
$webPageExternal = ['_' => 'webPageExternal', 'url' => 'string', 'display_url' => 'string', 'type' => 'string', 'title' => 'string', 'description' => 'string', 'thumb_url' => 'string', 'content_url' => 'string', 'w' => int, 'h' => int, 'duration' => int];
Or, if you're into Lua:
webPageExternal={_='webPageExternal', url='string', display_url='string', type='string', title='string', description='string', thumb_url='string', content_url='string', w=int, h=int, duration=int}