BusinessLocation

class pyrogram.raw.base.BusinessLocation

Represents the location of a Telegram Business ».

Constructors:

This base type has 1 constructor available.

BusinessLocation

Represents the location of a Telegram Business ».

TL Schema

businessLocation#ac5c1af7
flags:#
geo_point:flags.0?GeoPoint
address:string

= BusinessLocation

Parameter Tree

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

Example

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