BusinessAwayMessageScheduleCustom

class pyrogram.raw.types.BusinessAwayMessageScheduleCustom

Send Telegram Business away messages to users writing to us in private in the specified time span.

Constructor of BusinessAwayMessageSchedule.

Details:
  • Layer: 223

  • ID: CC4D9ECC

Parameters:
  • start_date (int 32-bit) – Start date (UNIX timestamp).

  • end_date (int 32-bit) – End date (UNIX timestamp).

TL Schema

businessAwayMessageScheduleCustom#cc4d9ecc
start_date:int
end_date:int

= BusinessAwayMessageSchedule

Parameter Tree

BusinessAwayMessageScheduleCustom
├── start_dateint
└── end_dateint

Example

BusinessAwayMessageScheduleCustom(
    start_date=0,
    end_date=0,
)