Birthday
- class pyrogram.raw.base.Birthday
Birthday information for a user.
- Constructors:
This base type has 1 constructor available.
Birthday information for a user.
TL Schema
birthday#6c8e1e06
flags:#
day:int
month:int
year:flags.0?int
= Birthday
Parameter Tree
Birthday
├── day →
int├── month →
int└── year →
int (optional)Example
Birthday(
day=0,
month=0,
year=0,
)