/** * Elrest eDesign Runtime IPC Typescript Model Script Upload Request Body * * @copyright 2024 Elrest Automations Systeme GMBH */ export declare class UploadRequestBody { path: string; fileName: string; content: string; constructor(path: string, fileName: string, content: string); }