Skip to content

InputFile

Sahri Riza Umami edited this page Oct 6, 2017 · 1 revision

Points to some file.

inputFileId

File defined by its id.

inputFileId id:int32 = InputFile;

id is the unique file identifier (in int32)

inputFilePersistentId

File defined by its persistent id.

inputFilePersistentId persistent_id:string = InputFile;

persistent_id is persistent file identifier (in string).

inputFileLocal

File defined by local path.

inputFileLocal path:string = InputFile;

path is local path to the file in string.

inputFileGenerated

File generated by the client.

inputFileGenerated original_path:string conversion:string expected_size:int32 = InputFile;

original_path is local path to a file from which the file is generated, may be empty if there is no such file.
conversion is string specifying conversion applied to the original file, should be persistent across application restart.
expected_size is eExpected size of the generated file, 0 if unknown.

Frequently Asked Questions
The Functions

Clone this wiki locally