@eddye68/studio-client
Version:
The AWS service Studio client
65 lines (64 loc) • 2.32 kB
JavaScript
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/model/wfl/workflow-metadata.ts
var workflow_metadata_exports = {};
__export(workflow_metadata_exports, {
WorkflowMetaData: () => WorkflowMetaData
});
module.exports = __toCommonJS(workflow_metadata_exports);
var WorkflowMetaData = class {
constructor(params) {
this.__classname__ = "WorkflowMetaData";
this.Deadline = null;
this.Urgency = null;
this.Modifier = null;
this.Modified = null;
this.Creator = null;
this.Created = null;
this.Comment = null;
this.State = null;
this.RouteTo = null;
this.LockedBy = null;
this.Version = null;
this.DeadlineSoft = null;
this.Rating = null;
this.Deletor = null;
this.Deleted = null;
this.Deadline = params.Deadline ?? null;
this.Urgency = params.Urgency ?? null;
this.Modifier = params.Modifier ?? null;
this.Modified = params.Modified ?? null;
this.Creator = params.Creator ?? null;
this.Created = params.Created ?? null;
this.Comment = params.Comment ?? null;
this.State = params.State ?? null;
this.RouteTo = params.RouteTo ?? null;
this.LockedBy = params.LockedBy ?? null;
this.Version = params.Version ?? null;
this.DeadlineSoft = params.DeadlineSoft ?? null;
this.Rating = params.Rating ?? null;
this.Deletor = params.Deletor ?? null;
this.Deleted = params.Deleted ?? null;
}
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
WorkflowMetaData
});
//# sourceMappingURL=workflow-metadata.js.map