Inherits Function.
Refunds a previously done payment in Telegram Stars; for bots only.
Returns object_ptr<Ok>.
Public Fields | |
int53 | user_id_ |
Identifier of the user that did the payment. | |
string | telegram_payment_charge_id_ |
Telegram payment identifier. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
refundStarPayment () | |
refundStarPayment (int53 user_id_, string const &telegram_payment_charge_id_) | |
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 = -1804165035 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which refunds a previously done payment in Telegram Stars; for bots only.
Returns object_ptr<Ok>.
refundStarPayment | ( | int53 | user_id_, |
string const & | telegram_payment_charge_id_ | ||
) |
Creates a function, which refunds a previously done payment in Telegram Stars; for bots only.
Returns object_ptr<Ok>.
[in] | user_id_ | Identifier of the user that did the payment. |
[in] | telegram_payment_charge_id_ | Telegram payment identifier. |
|
finalvirtual |