Inherits Object.
Contains information about a collectible item and its last purchase.
Public Fields | |
int32 | purchase_date_ |
Point in time (Unix timestamp) when the item was purchased. | |
string | currency_ |
Currency for the paid amount. | |
int53 | amount_ |
The paid amount, in the smallest units of the currency. | |
string | cryptocurrency_ |
Cryptocurrency used to pay for the item. | |
int64 | cryptocurrency_amount_ |
The paid amount, in the smallest units of the cryptocurrency. | |
string | url_ |
Individual URL for the item on https://fragment.com. | |
Public Instance Methods | |
collectibleItemInfo () | |
collectibleItemInfo (int32 purchase_date_, string const ¤cy_, int53 amount_, string const &cryptocurrency_, int64 cryptocurrency_amount_, string const &url_) | |
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 = 1460640717 |
Identifier uniquely determining a type of the object. | |
Contains information about a collectible item and its last purchase.
collectibleItemInfo | ( | int32 | purchase_date_, |
string const & | currency_, | ||
int53 | amount_, | ||
string const & | cryptocurrency_, | ||
int64 | cryptocurrency_amount_, | ||
string const & | url_ | ||
) |
Contains information about a collectible item and its last purchase.
[in] | purchase_date_ | Point in time (Unix timestamp) when the item was purchased. |
[in] | currency_ | Currency for the paid amount. |
[in] | amount_ | The paid amount, in the smallest units of the currency. |
[in] | cryptocurrency_ | Cryptocurrency used to pay for the item. |
[in] | cryptocurrency_amount_ | The paid amount, in the smallest units of the cryptocurrency. |
[in] | url_ | Individual URL for the item on https://fragment.com. |
|
finalvirtual |