ChannelLocation
- class pyrogram.raw.types.ChannelLocation
Geographical location of supergroup (geogroups)
Constructor of
ChannelLocation.- Details:
Layer:
223ID:
209B82DB
- Parameters:
geo_point (
GeoPoint) – Geographical location of supergroupaddress (
str) – Textual description of the address
TL Schema
channelLocation#209b82db
geo_point:GeoPoint
address:string
= ChannelLocation
Parameter Tree
ChannelLocation
├── geo_point →
GeoPoint│ ├──
GeoPointEmpty│ └──
GeoPoint│ ├── long →
double│ ├── lat →
double│ ├── access_hash →
long│ └── accuracy_radius →
int (optional)└── address →
stringExample
ChannelLocation(
geo_point=GeoPointEmpty(),
address="text",
)