UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

40 lines 1.26 kB
// src/model/wfl/workflow-metadata.ts 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; } }; export { WorkflowMetaData }; //# sourceMappingURL=workflow-metadata.mjs.map