ChannelLocation

class pyrogram.raw.base.ChannelLocation

Geographical location of supergroup (geogroups)

Constructors:

This base type has 2 constructors available.

ChannelLocation

Geographical location of supergroup (geogroups)

ChannelLocationEmpty

No location (normal supergroup)

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",
)