Inherits Object.
Describes a boost applied to a chat.
Public Fields | |
string | id_ |
Unique identifier of the boost. | |
int32 | count_ |
The number of identical boosts applied. | |
object_ptr< ChatBoostSource > | source_ |
Source of the boost. | |
int32 | start_date_ |
Point in time (Unix timestamp) when the chat was boosted. | |
int32 | expiration_date_ |
Point in time (Unix timestamp) when the boost will expire. | |
Public Instance Methods | |
chatBoost () | |
chatBoost (string const &id_, int32 count_, object_ptr< ChatBoostSource > &&source_, int32 start_date_, int32 expiration_date_) | |
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 = -1765815118 |
Identifier uniquely determining a type of the object. | |
chatBoost | ( | ) |
Describes a boost applied to a chat.
chatBoost | ( | string const & | id_, |
int32 | count_, | ||
object_ptr< ChatBoostSource > && | source_, | ||
int32 | start_date_, | ||
int32 | expiration_date_ | ||
) |
Describes a boost applied to a chat.
[in] | id_ | Unique identifier of the boost. |
[in] | count_ | The number of identical boosts applied. |
[in] | source_ | Source of the boost. |
[in] | start_date_ | Point in time (Unix timestamp) when the chat was boosted. |
[in] | expiration_date_ | Point in time (Unix timestamp) when the boost will expire. |
|
finalvirtual |