mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 23:26:56 +01:00
704 B
704 B
title | description |
---|---|
inputFileLocal | File deifned by local path |
Constructor: inputFileLocal
File deifned by local path
Attributes:
Name | Type | Required | Description |
---|---|---|---|
path | string | Yes | Local path to the file |
Type: InputFile
Example:
$inputFileLocal = ['_' => 'inputFileLocal', 'path' => string, ];
PWRTelegram json-encoded version:
{"_":"inputFileLocal","path":"string"}
Or, if you're into Lua:
inputFileLocal={_='inputFileLocal', path=string, }