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_point → GeoPoint (optional)
│ ├── GeoPointEmpty
│ └── GeoPoint
│ ├── long → double
│ ├── lat → double
│ ├── access_hash → long
│ └── accuracy_radius → int (optional)
└── address → string

Example

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