Inherits Object.
Contains information about Toncoins earned by the current user.
Public Fields | |
int64 | total_amount_ |
Total amount of Toncoins earned; in the smallest units of the cryptocurrency. | |
int64 | balance_amount_ |
Amount of Toncoins that aren't withdrawn yet; in the smallest units of the cryptocurrency. | |
int64 | available_amount_ |
Amount of Toncoins that are available for withdrawal; in the smallest units of the cryptocurrency. | |
bool | withdrawal_enabled_ |
True, if Toncoins can be withdrawn. | |
Public Instance Methods | |
tonRevenueStatus () | |
tonRevenueStatus (int64 total_amount_, int64 balance_amount_, int64 available_amount_, bool withdrawal_enabled_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
![]() | |
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 = -1437514030 |
Identifier uniquely determining a type of the object. | |
tonRevenueStatus | ( | ) |
Contains information about Toncoins earned by the current user.
tonRevenueStatus | ( | int64 | total_amount_, |
int64 | balance_amount_, | ||
int64 | available_amount_, | ||
bool | withdrawal_enabled_ | ||
) |
Contains information about Toncoins earned by the current user.
[in] | total_amount_ | Total amount of Toncoins earned; in the smallest units of the cryptocurrency. |
[in] | balance_amount_ | Amount of Toncoins that aren't withdrawn yet; in the smallest units of the cryptocurrency. |
[in] | available_amount_ | Amount of Toncoins that are available for withdrawal; in the smallest units of the cryptocurrency. |
[in] | withdrawal_enabled_ | True, if Toncoins can be withdrawn. |
|
finalvirtual |