mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.1 KiB
1.1 KiB
title | description | nav_exclude | image |
---|---|---|---|
messageActionGeoProximityReached | A user of the chat is now in proximity of another user | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messageActionGeoProximityReached
A user of the chat is now in proximity of another user
Attributes:
Name | Type | Required | Description |
---|---|---|---|
from_id | Peer | Yes | The user or chat that is now in proximity of to_id |
to_id | Peer | Yes | The user or chat that subscribed to live geolocation proximity alerts |
distance | int | Yes | Distance, in meters (0-100000) |
Type: MessageAction
Example:
$messageActionGeoProximityReached = ['_' => 'messageActionGeoProximityReached', 'from_id' => Peer, 'to_id' => Peer, 'distance' => int];