45 lines
1.3 KiB
Markdown
45 lines
1.3 KiB
Markdown
|
---
|
||
|
title: pageBlockEmbedPost
|
||
|
description: An embedded post
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: pageBlockEmbedPost
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
An embedded post
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|url|[string](../types/string.md) | Yes|Web page URL|
|
||
|
|webpage\_id|[long](../types/long.md) | Yes|ID of generated webpage preview|
|
||
|
|author\_photo\_id|[long](../types/long.md) | Yes|ID of the author's photo|
|
||
|
|author|[string](../types/string.md) | Yes|Author name|
|
||
|
|date|[int](../types/int.md) | Yes|Creation date|
|
||
|
|blocks|Array of [PageBlock](../types/PageBlock.md) | Yes|Post contents|
|
||
|
|caption|[RichText](../types/RichText.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [PageBlock](../types/PageBlock.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$pageBlockEmbedPost = ['_' => 'pageBlockEmbedPost', 'url' => 'string', 'webpage_id' => long, 'author_photo_id' => long, 'author' => 'string', 'date' => int, 'blocks' => [PageBlock, PageBlock], 'caption' => RichText];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
pageBlockEmbedPost={_='pageBlockEmbedPost', url='string', webpage_id=long, author_photo_id=long, author='string', date=int, blocks={PageBlock}, caption=RichText}
|
||
|
|
||
|
```
|
||
|
|
||
|
|