Inherits MessageSchedulingState.
The message will be sent at the specified date.
Public Fields | |
| int32 | send_date_ |
| Point in time (Unix timestamp) when the message will be sent. The date must be within 367 days in the future. | |
| int32 | repeat_period_ |
| Period after which the message will be sent again; in seconds; 0 if never; for Telegram Premium users only; may be non-zero only in sendMessage and forwardMessages with one message requests; must be one of 0, 86400, 7 * 86400, 14 * 86400, 30 * 86400, 91 * 86400, 182 * 86400, 365 * 86400, or additionally 60, or 300 in the Test DC. | |
Public Instance Methods | |
| messageSchedulingStateSendAtDate () | |
| messageSchedulingStateSendAtDate (int32 send_date_, int32 repeat_period_) | |
| void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
| virtual void | store (TlStorerUnsafe &s) const |
| virtual void | store (TlStorerCalcLength &s) const |
| TlObject ()=default | |
| TlObject (const TlObject &)=delete | |
| TlObject & | operator= (const TlObject &)=delete |
| TlObject (TlObject &&)=default | |
| TlObject & | operator= (TlObject &&)=default |
| virtual | ~TlObject ()=default |
Static Public Attributes | |
| static const std::int32_t | ID = 1505903015 |
| Identifier uniquely determining a type of the object. | |
The message will be sent at the specified date.
| messageSchedulingStateSendAtDate | ( | int32 | send_date_, |
| int32 | repeat_period_ | ||
| ) |
The message will be sent at the specified date.
| [in] | send_date_ | Point in time (Unix timestamp) when the message will be sent. The date must be within 367 days in the future. |
| [in] | repeat_period_ | Period after which the message will be sent again; in seconds; 0 if never; for Telegram Premium users only; may be non-zero only in sendMessage and forwardMessages with one message requests; must be one of 0, 86400, 7 * 86400, 14 * 86400, 30 * 86400, 91 * 86400, 182 * 86400, 365 * 86400, or additionally 60, or 300 in the Test DC. |
|
finalvirtual |