GeoPointAddress

class pyrogram.raw.base.GeoPointAddress

Address optionally associated to a geoPoint.

Constructors:

This base type has 1 constructor available.

GeoPointAddress

Address optionally associated to a geoPoint.

TL Schema

geoPointAddress#de4c5d93
flags:#
country_iso2:string
state:flags.0?string
city:flags.1?string
street:flags.2?string

= GeoPointAddress

Parameter Tree

GeoPointAddress
├── country_iso2string
├── statestring (optional)
├── citystring (optional)
└── streetstring (optional)

Example

GeoPointAddress(
    country_iso2="text",
    state="text",
    city="text",
    street="text",
)