BusinessLocation

class pyrogram.raw.types.BusinessLocation

Represents the location of a Telegram Business ».

Constructor of BusinessLocation.

Details:
  • Layer: 223

  • ID: 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_pointGeoPoint (optional)
│ ├── GeoPointEmpty
│ └── GeoPoint
│ ├── longdouble
│ ├── latdouble
│ ├── access_hashlong
│ └── accuracy_radiusint (optional)
└── addressstring

Example

BusinessLocation(
    address="text",
)