UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

22 lines 547 B
// src/model/wfl/state.ts var State = class { constructor(Id = null, Name = null, Type = null, Produce = null, Color = null, DefaultRouteTo = null) { this.__classname__ = "State"; this.Id = null; this.Name = null; this.Type = null; this.Produce = null; this.Color = null; this.DefaultRouteTo = null; this.Id = Id; this.Name = Name; this.Type = Type; this.Produce = Produce; this.Color = Color; this.DefaultRouteTo = DefaultRouteTo; } }; export { State }; //# sourceMappingURL=state.mjs.map