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.

help.Country

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
├── hiddentrue (optional)
├── iso2string
├── default_namestring
├── namestring (optional)
└── country_codesVector < help.CountryCode >
├── country_codestring
├── prefixesVector < string > (optional)
└── patternsVector < string > (optional)

Example

Country(
    hidden=None,
    iso2="text",
    default_name="text",
    name="text",
    country_codes=[
            CountryCode(
                country_code="text",
                prefixes=None,
                patterns=None
            )
        ],
)