BusinessLocation
- class pyrogram.raw.types.BusinessLocation
Represents the location of a Telegram Business ».
Constructor of
BusinessLocation.- Details:
Layer:
223ID:
AC5C1AF7
- Parameters:
address (
str) – Textual description of the address (mandatory).geo_point (
GeoPoint, optional) – Geographical coordinates (optional).
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 →
stringExample
BusinessLocation(
address="text",
)