Inherits Object.
Contains information about a successful payment.
Public Fields | |
object_ptr< productInfo > | product_info_ |
Information about the product. | |
int32 | date_ |
Point in time (Unix timestamp) when the payment was made. | |
int53 | seller_bot_user_id_ |
User identifier of the seller bot. | |
object_ptr< PaymentReceiptType > | type_ |
Type of the payment receipt. | |
Public Instance Methods | |
paymentReceipt () | |
paymentReceipt (object_ptr< productInfo > &&product_info_, int32 date_, int53 seller_bot_user_id_, object_ptr< PaymentReceiptType > &&type_) | |
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 = 758199186 |
Identifier uniquely determining a type of the object. | |
paymentReceipt | ( | ) |
Contains information about a successful payment.
paymentReceipt | ( | object_ptr< productInfo > && | product_info_, |
int32 | date_, | ||
int53 | seller_bot_user_id_, | ||
object_ptr< PaymentReceiptType > && | type_ | ||
) |
Contains information about a successful payment.
[in] | product_info_ | Information about the product. |
[in] | date_ | Point in time (Unix timestamp) when the payment was made. |
[in] | seller_bot_user_id_ | User identifier of the seller bot. |
[in] | type_ | Type of the payment receipt. |
|
finalvirtual |