MadelineProto/old_docs/API_docs_v68/constructors/topPeer.md

44 lines
666 B
Markdown
Raw Normal View History

2017-07-23 17:44:01 +02:00
---
title: topPeer
description: topPeer attributes, type and example
---
## Constructor: topPeer
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
2017-07-23 17:44:01 +02:00
|peer|[Peer](../types/Peer.md) | Yes|
|rating|[double](../types/double.md) | Yes|
### Type: [TopPeer](../types/TopPeer.md)
### Example:
```
$topPeer = ['_' => 'topPeer', 'peer' => Peer, 'rating' => double];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "topPeer", "peer": Peer, "rating": double}
```
Or, if you're into Lua:
```
topPeer={_='topPeer', peer=Peer, rating=double}
```