Inherits Function.
Returns all possible variants of upgraded gifts for a regular gift.
Returns object_ptr<GiftUpgradeVariants>.
Public Fields | |
| int64 | regular_gift_id_ |
| Identifier of the regular gift. | |
| bool | return_upgrade_models_ |
| Pass true to get models that can be obtained by upgrading a regular gift. | |
| bool | return_craft_models_ |
| Pass true to get models that can be obtained by crafting a gift from upgraded gifts. | |
Public Types | |
| using | ReturnType = object_ptr< giftUpgradeVariants > |
| Typedef for the type returned by the function. | |
Public Instance Methods | |
| getUpgradedGiftVariants () | |
| getUpgradedGiftVariants (int64 regular_gift_id_, bool return_upgrade_models_, bool return_craft_models_) | |
| 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 = -1388671540 |
| Identifier uniquely determining a type of the object. | |
Default constructor for a function, which returns all possible variants of upgraded gifts for a regular gift.
Returns object_ptr<GiftUpgradeVariants>.
| getUpgradedGiftVariants | ( | int64 | regular_gift_id_, |
| bool | return_upgrade_models_, | ||
| bool | return_craft_models_ | ||
| ) |
Creates a function, which returns all possible variants of upgraded gifts for a regular gift.
Returns object_ptr<GiftUpgradeVariants>.
| [in] | regular_gift_id_ | Identifier of the regular gift. |
| [in] | return_upgrade_models_ | Pass true to get models that can be obtained by upgrading a regular gift. |
| [in] | return_craft_models_ | Pass true to get models that can be obtained by crafting a gift from upgraded gifts. |
|
finalvirtual |