MadelineProtoDocs/docs/MTProto_docs/constructors/msg_resend_req.md
2020-06-16 17:50:25 +02:00

37 lines
633 B
Markdown

---
title: msg_resend_req
description: msg_resend_req attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: msg\_resend\_req
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|msg\_ids|Array of [long](../types/long.md) | Yes|
### Type: [MsgResendReq](../types/MsgResendReq.md)
### Example:
```php
$msg_resend_req = ['_' => 'msg_resend_req', 'msg_ids' => [long, long]];
```
Or, if you're into Lua:
```lua
msg_resend_req={_='msg_resend_req', msg_ids={long}}
```