4baac3178e
Add PHP, Lua language tag to Code area
816 B
816 B
title | description | image |
---|---|---|
rpc_error | rpc_error attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: rpc_error
Attributes:
Name | Type | Required |
---|---|---|
error_code | int | Yes |
error_message | string | Yes |
Type: RpcError
Example:
$rpc_error = ['_' => 'rpc_error', 'error_code' => int, 'error_message' => 'string'];
PWRTelegram json-encoded version:
{"_": "rpc_error", "error_code": int, "error_message": "string"}
Or, if you're into Lua:
rpc_error={_='rpc_error', error_code=int, error_message='string'}