mindee
Version:
Mindee Client Library for Node.js
13 lines (12 loc) • 314 B
TypeScript
import { StringDict } from "./stringDict";
/**
* Representation of an execution's file info.
* @category Workflow
*/
export declare class ExecutionFile {
/** File name. */
name: string | null;
/** Optional alias for the fil. */
alias: string | null;
constructor(jsonResponse: StringDict);
}