Inherits Function.
Sends an upgraded gift that is available for resale to another user or channel chat; gifts already owned by the current user must be transferred using transferGift and can't be passed to the method.
Returns object_ptr<Ok>.
Public Fields | |
string | gift_name_ |
Name of the upgraded gift to send. | |
object_ptr< MessageSender > | owner_id_ |
Identifier of the user or the channel chat that will receive the gift. | |
int53 | star_count_ |
The amount of Telegram Stars required to pay for the gift. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
sendResoldGift () | |
sendResoldGift (string const &gift_name_, object_ptr< MessageSender > &&owner_id_, int53 star_count_) | |
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 = -1284812948 |
Identifier uniquely determining a type of the object. | |
sendResoldGift | ( | ) |
Default constructor for a function, which sends an upgraded gift that is available for resale to another user or channel chat; gifts already owned by the current user must be transferred using transferGift and can't be passed to the method.
Returns object_ptr<Ok>.
sendResoldGift | ( | string const & | gift_name_, |
object_ptr< MessageSender > && | owner_id_, | ||
int53 | star_count_ | ||
) |
Creates a function, which sends an upgraded gift that is available for resale to another user or channel chat; gifts already owned by the current user must be transferred using transferGift and can't be passed to the method.
Returns object_ptr<Ok>.
[in] | gift_name_ | Name of the upgraded gift to send. |
[in] | owner_id_ | Identifier of the user or the channel chat that will receive the gift. |
[in] | star_count_ | The amount of Telegram Stars required to pay for the gift. |
|
finalvirtual |