Inherits Function.
Uploads a file with a sticker; returns the uploaded file.
Returns object_ptr<File>.
Public Fields | |
int53 | user_id_ |
Sticker file owner; ignored for regular users. | |
object_ptr< StickerFormat > | sticker_format_ |
Sticker format. | |
object_ptr< InputFile > | sticker_ |
File file to upload; must fit in a 512x512 square. For WEBP stickers the file must be in WEBP or PNG format, which will be converted to WEBP server-side. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements. | |
Public Types | |
using | ReturnType = object_ptr< file > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
uploadStickerFile () | |
uploadStickerFile (int53 user_id_, object_ptr< StickerFormat > &&sticker_format_, object_ptr< InputFile > &&sticker_) | |
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 = 647385283 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which uploads a file with a sticker; returns the uploaded file.
Returns object_ptr<File>.
uploadStickerFile | ( | int53 | user_id_, |
object_ptr< StickerFormat > && | sticker_format_, | ||
object_ptr< InputFile > && | sticker_ | ||
) |
Creates a function, which uploads a file with a sticker; returns the uploaded file.
Returns object_ptr<File>.
[in] | user_id_ | Sticker file owner; ignored for regular users. |
[in] | sticker_format_ | Sticker format. |
[in] | sticker_ | File file to upload; must fit in a 512x512 square. For WEBP stickers the file must be in WEBP or PNG format, which will be converted to WEBP server-side. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements. |
|
finalvirtual |