help.Country
- class pyrogram.raw.base.help.Country
Name, ISO code, localized name and phone codes/patterns of a specific country
- Constructors:
This base type has 1 constructor available.
Name, ISO code, localized name and phone codes/patterns of a specific country
TL Schema
help.country#c3878e23
flags:#
hidden:flags.0?true
iso2:string
default_name:string
name:flags.1?string
country_codes:Vector<help.CountryCode>
= help.Country
Parameter Tree
Country
├── hidden →
true (optional)├── iso2 →
string├── default_name →
string├── name →
string (optional)└── country_codes →
Vector < help.CountryCode >└──
help.CountryCode├── country_code →
string├── prefixes →
Vector < string > (optional)└── patterns →
Vector < string > (optional)Example
Country(
hidden=None,
iso2="text",
default_name="text",
name="text",
country_codes=[
CountryCode(
country_code="text",
prefixes=None,
patterns=None
)
],
)