mindee
Version:
Mindee Client Library for Node.js
15 lines (14 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExecutionFile = void 0;
/**
* Representation of an execution's file info.
* @category Workflow
*/
class ExecutionFile {
constructor(jsonResponse) {
this.name = jsonResponse["name"];
this.alias = jsonResponse["alias"];
}
}
exports.ExecutionFile = ExecutionFile;