mtcute/packages/tl/data/documentation.cache.json

2 lines
1.1 MiB
JSON
Raw Normal View History

{ "updated": "07.08.2024, 17:19:59 (layer 185) - from https://corefork.telegram.org", "classes": { "error": { "comment": "Error.", "arguments": { "code": "Error code", "text": "Message" } }, "inputUser": { "comment": "Defines a user for further interaction.", "arguments": { "user_id": "User identifier", "access_hash": "<strong>access_hash</strong> value from the {@link RawUser} constructor" } }, "inputPeerUserFromMessage": { "comment": "Defines a <a href=\"https://corefork.telegram.org/api/min\">min</a> user that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the user was seen", "msg_id": "The message ID", "user_id": "The identifier of the user that was seen" } }, "inputPeerChat": { "comment": "Defines a chat for further interaction.", "arguments": { "chat_id": "Chat identifier" } }, "inputPeerUser": { "comment": "Defines a user for further interaction.", "arguments": { "user_id": "User identifier", "access_hash": "<strong>access_hash</strong> value from the {@link RawUser} constructor" } }, "inputUserSelf": { "comment": "Defines the current user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPeerChannel": { "comment": "Defines a channel for further interaction.", "arguments": { "channel_id": "Channel identifier", "access_hash": "<strong>access_hash</strong> value from the {@link RawChannel} constructor" } }, "inputPeerEmpty": { "comment": "An empty constructor, no user or chat is defined.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputUserEmpty": { "comment": "Empty constructor, does not define a user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPeerChannelFromMessage": { "comment": "Defines a <a href=\"https://corefork.telegram.org/api/min\">min</a> channel that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the channel's message was seen", "msg_id": "The message ID", "channel_id": "The identifier of the channel that was seen" } }, "inputUserFromMessage": { "comment": "Defines a <a href=\"https://corefork.telegram.org/api/min\">min</a> user that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the user was seen", "msg_id": "The message ID", "user_id": "The identifier of the user that was seen" } }, "inputPeerSelf": { "comment": "Defines the current user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPhoneContact": { "comment": "Phone contact.", "arguments": { "client_id": "An arbitrary 64-bit integer: it should be set, for example, to an incremental number when using {@link contacts.RawImportContactsRequest}, in order to retry importing only the contacts that weren't imported successfully, according to the client_ids returned in {@link contacts.RawImportedContacts}.<code>retry_contacts</code>.", "phone": "Phone number", "first_name": "Contact's first name", "last_name": "Contact's last name" } }, "inputMediaEmpty": { "comment": "Empty media content of a message.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputFile": { "comment": "Defines a file saved in parts using the method {@link upload.RawSaveFilePartRequest}.", "arguments": { "id": "Random file identifier created by the client", "parts": "Number of parts saved", "name": "Full name of the file", "md5_checksum": "In case the file's <a href=\"https://en.wikipedia.org/wiki/MD5#MD5_hashes\">md5-hash</a> was passed, contents of the file will be checked prior to use" } }, "inputFileBig": { "comment": "Assigns a big file (over 10 MB in size), saved in part using the method {@link upload.RawSaveBigFilePartRequest}.", "arguments": { "id": "Random file id, created by the client", "parts": "Number of parts saved", "name": "Full file name" } }, "inputFileStoryDocument": { "comment": "Used to <a href=\"https://corefork.telegram.org/api/stories#editing-stories\">edit the thumbnail/static preview of a story, see here »</a> for more info on the full flow.", "arguments": { "id": "The old story video." } }, "inputMediaUploadedPhoto": { "co