mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
31 lines
852 B
Markdown
31 lines
852 B
Markdown
|
---
|
||
|
title: "messageActionGroupCallScheduled"
|
||
|
description: "A group call was scheduled"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: messageActionGroupCallScheduled
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
A group call was scheduled
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|call|[InputGroupCall](/API_docs/types/InputGroupCall.html) | Yes|The group call|
|
||
|
|schedule\_date|[int](/API_docs/types/int.html) | Yes|When is this group call scheduled to start|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [MessageAction](/API_docs/types/MessageAction.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$messageActionGroupCallScheduled = ['_' => 'messageActionGroupCallScheduled', 'call' => InputGroupCall, 'schedule_date' => int];
|
||
|
```
|