Inherits AuctionState.
Contains information about a finished auction.
Public Fields | |
| int32 | start_date_ |
| Point in time (Unix timestamp) when the auction started. | |
| int32 | end_date_ |
| Point in time (Unix timestamp) when the auction will be ended. | |
| int53 | average_price_ |
| Average price of bought items in Telegram Stars. | |
| int32 | acquired_item_count_ |
| The number of items that were purchased by the current user on the auction. | |
| int32 | telegram_listed_item_count_ |
| Number of items from the auction being resold on Telegram. | |
| int32 | fragment_listed_item_count_ |
| Number of items from the auction being resold on Fragment. | |
| string | fragment_url_ |
| The HTTPS link to the Fragment for the resold items; may be empty if there are no such items being sold on Fragment. | |
Public Instance Methods | |
| auctionStateFinished () | |
| auctionStateFinished (int32 start_date_, int32 end_date_, int53 average_price_, int32 acquired_item_count_, int32 telegram_listed_item_count_, int32 fragment_listed_item_count_, string const &fragment_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 = -451306439 |
| Identifier uniquely determining a type of the object. | |
Contains information about a finished auction.
| auctionStateFinished | ( | int32 | start_date_, |
| int32 | end_date_, | ||
| int53 | average_price_, | ||
| int32 | acquired_item_count_, | ||
| int32 | telegram_listed_item_count_, | ||
| int32 | fragment_listed_item_count_, | ||
| string const & | fragment_url_ | ||
| ) |
Contains information about a finished auction.
| [in] | start_date_ | Point in time (Unix timestamp) when the auction started. |
| [in] | end_date_ | Point in time (Unix timestamp) when the auction will be ended. |
| [in] | average_price_ | Average price of bought items in Telegram Stars. |
| [in] | acquired_item_count_ | The number of items that were purchased by the current user on the auction. |
| [in] | telegram_listed_item_count_ | Number of items from the auction being resold on Telegram. |
| [in] | fragment_listed_item_count_ | Number of items from the auction being resold on Fragment. |
| [in] | fragment_url_ | The HTTPS link to the Fragment for the resold items; may be empty if there are no such items being sold on Fragment. |
|
finalvirtual |