40 lines
644 B
Markdown
40 lines
644 B
Markdown
|
---
|
||
|
title: topPeer
|
||
|
description: Top peer
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: topPeer
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Top peer
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|peer|[Peer](../types/Peer.md) | Yes|Peer|
|
||
|
|rating|[double](../types/double.md) | Yes|Rating|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [TopPeer](../types/TopPeer.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$topPeer = ['_' => 'topPeer', 'peer' => Peer, 'rating' => double];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
topPeer={_='topPeer', peer=Peer, rating=double}
|
||
|
|
||
|
```
|
||
|
|
||
|
|