mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2025-01-22 05:41:46 +01:00
31 lines
788 B
Markdown
31 lines
788 B
Markdown
---
|
|
title: "messageReplyStoryHeader"
|
|
description: "Represents a reply to a story"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: messageReplyStoryHeader
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Represents a reply to a [story](https://core.telegram.org/api/stories)
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|peer|[long](/API_docs/types/long.html) | Yes|
|
|
|story\_id|[int](/API_docs/types/int.html) | Yes|Story ID|
|
|
|
|
|
|
|
|
### Type: [MessageReplyHeader](/API_docs/types/MessageReplyHeader.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$messageReplyStoryHeader = ['_' => 'messageReplyStoryHeader', 'peer' => long, 'story_id' => int];
|
|
```
|