MadelineProto/old_docs/API_docs_v65/constructors/phoneCallAccepted.md

49 lines
1.2 KiB
Markdown
Raw Normal View History

2017-04-21 13:27:04 +02:00
---
title: phoneCallAccepted
description: phoneCallAccepted attributes, type and example
---
## Constructor: phoneCallAccepted
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[long](../types/long.md) | Yes|
|access\_hash|[long](../types/long.md) | Yes|
|date|[int](../types/int.md) | Yes|
|admin\_id|[int](../types/int.md) | Yes|
|participant\_id|[int](../types/int.md) | Yes|
|g\_b|[bytes](../types/bytes.md) | Yes|
|protocol|[PhoneCallProtocol](../types/PhoneCallProtocol.md) | Yes|
### Type: [PhoneCall](../types/PhoneCall.md)
### Example:
```
$phoneCallAccepted = ['_' => 'phoneCallAccepted', 'id' => long, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_b' => bytes, 'protocol' => PhoneCallProtocol, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"phoneCallAccepted","id":"long","access_hash":"long","date":"int","admin_id":"int","participant_id":"int","g_b":"bytes","protocol":"PhoneCallProtocol"}
```
2017-04-21 13:27:04 +02:00
Or, if you're into Lua:
```
phoneCallAccepted={_='phoneCallAccepted', id=long, access_hash=long, date=int, admin_id=int, participant_id=int, g_b=bytes, protocol=PhoneCallProtocol, }
```