Inherits Function.
Returns upgraded gifts that can be bought from other owners.
Returns object_ptr<GiftsForResale>.
Public Fields | |
int64 | gift_id_ |
Identifier of the regular gift that was upgraded to a unique gift. | |
object_ptr< GiftForResaleOrder > | order_ |
Order in which the results will be sorted. | |
array< object_ptr< UpgradedGiftAttributeId > > | attributes_ |
Attributes used to filter received gifts. If multiple attributes of the same type are specified, then all of them are allowed. If none attributes of specific type are specified, then all values for this attribute type are allowed. | |
string | offset_ |
Offset of the first entry to return as received from the previous request with the same order and attributes; use empty string to get the first chunk of results. | |
int32 | limit_ |
The maximum number of gifts to return. | |
Public Types | |
using | ReturnType = object_ptr< giftsForResale > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
searchGiftsForResale () | |
searchGiftsForResale (int64 gift_id_, object_ptr< GiftForResaleOrder > &&order_, array< object_ptr< UpgradedGiftAttributeId >> &&attributes_, string const &offset_, int32 limit_) | |
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 = 1659300894 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which returns upgraded gifts that can be bought from other owners.
Returns object_ptr<GiftsForResale>.
searchGiftsForResale | ( | int64 | gift_id_, |
object_ptr< GiftForResaleOrder > && | order_, | ||
array< object_ptr< UpgradedGiftAttributeId >> && | attributes_, | ||
string const & | offset_, | ||
int32 | limit_ | ||
) |
Creates a function, which returns upgraded gifts that can be bought from other owners.
Returns object_ptr<GiftsForResale>.
[in] | gift_id_ | Identifier of the regular gift that was upgraded to a unique gift. |
[in] | order_ | Order in which the results will be sorted. |
[in] | attributes_ | Attributes used to filter received gifts. If multiple attributes of the same type are specified, then all of them are allowed. If none attributes of specific type are specified, then all values for this attribute type are allowed. |
[in] | offset_ | Offset of the first entry to return as received from the previous request with the same order and attributes; use empty string to get the first chunk of results. |
[in] | limit_ | The maximum number of gifts to return. |
|
finalvirtual |