Inherits Object.
Contains information about revenue earned from sponsored messages in a chat.
Public Fields | |
string | cryptocurrency_ |
Cryptocurrency in which revenue is calculated. | |
int64 | total_amount_ |
Total amount of the cryptocurrency earned, in the smallest units of the cryptocurrency. | |
int64 | balance_amount_ |
Amount of the cryptocurrency that isn't withdrawn yet, in the smallest units of the cryptocurrency. | |
int64 | available_amount_ |
Amount of the cryptocurrency available for withdrawal, in the smallest units of the cryptocurrency. | |
bool | withdrawal_enabled_ |
True, if Telegram Stars can be withdrawn now or later. | |
Public Instance Methods | |
chatRevenueAmount () | |
chatRevenueAmount (string const &cryptocurrency_, int64 total_amount_, int64 balance_amount_, int64 available_amount_, bool withdrawal_enabled_) | |
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 = -1505178024 |
Identifier uniquely determining a type of the object. | |
Contains information about revenue earned from sponsored messages in a chat.
chatRevenueAmount | ( | string const & | cryptocurrency_, |
int64 | total_amount_, | ||
int64 | balance_amount_, | ||
int64 | available_amount_, | ||
bool | withdrawal_enabled_ | ||
) |
Contains information about revenue earned from sponsored messages in a chat.
[in] | cryptocurrency_ | Cryptocurrency in which revenue is calculated. |
[in] | total_amount_ | Total amount of the cryptocurrency earned, in the smallest units of the cryptocurrency. |
[in] | balance_amount_ | Amount of the cryptocurrency that isn't withdrawn yet, in the smallest units of the cryptocurrency. |
[in] | available_amount_ | Amount of the cryptocurrency available for withdrawal, in the smallest units of the cryptocurrency. |
[in] | withdrawal_enabled_ | True, if Telegram Stars can be withdrawn now or later. |
|
finalvirtual |