Birthday

class pyrogram.raw.base.Birthday

Birthday information for a user.

Constructors:

This base type has 1 constructor available.

Birthday

Birthday information for a user.

TL Schema

birthday#6c8e1e06
flags:#
day:int
month:int
year:flags.0?int

= Birthday

Parameter Tree

Birthday
├── dayint
├── monthint
└── yearint (optional)

Example

Birthday(
    day=0,
    month=0,
    year=0,
)