MadelineProto/old_docs/API_docs_v53/constructors/topPeer.md

37 lines
549 B
Markdown
Raw Normal View History

---
title: topPeer
description: topPeer attributes, type and example
---
## Constructor: topPeer
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|peer|[Peer](../types/Peer.md) | Yes|
|rating|[double](../types/double.md) | Yes|
### Type: [TopPeer](../types/TopPeer.md)
### Example:
```
$topPeer = ['_' => 'topPeer', 'peer' => Peer, 'rating' => double, ];
```
Or, if you're into Lua:
```
topPeer={_='topPeer', peer=Peer, rating=double, }
```