ChannelLocation

class pyrogram.raw.types.ChannelLocation

Geographical location of supergroup (geogroups)

Constructor of ChannelLocation.

Details:
  • Layer: 223

  • ID: 209B82DB

Parameters:
  • geo_point (GeoPoint) – Geographical location of supergroup

  • address (str) – Textual description of the address

TL Schema

channelLocation#209b82db
geo_point:GeoPoint
address:string

= ChannelLocation

Parameter Tree

ChannelLocation
├── geo_pointGeoPoint
│ ├── GeoPointEmpty
│ └── GeoPoint
│ ├── longdouble
│ ├── latdouble
│ ├── access_hashlong
│ └── accuracy_radiusint (optional)
└── addressstring

Example

ChannelLocation(
    geo_point=GeoPointEmpty(),
    address="text",
)