help.CountryCode
- class pyrogram.raw.base.help.CountryCode
Country code and phone number pattern of a specific country
- Constructors:
This base type has 1 constructor available.
Country code and phone number pattern of a specific country
TL Schema
help.countryCode#4203c5ef
flags:#
country_code:string
prefixes:flags.0?Vector<string>
patterns:flags.1?Vector<string>
= help.CountryCode
Parameter Tree
CountryCode
├── country_code →
string├── prefixes →
Vector < string > (optional)└── patterns →
Vector < string > (optional)Example
CountryCode(
country_code="text",
prefixes=["text"],
patterns=["text"],
)