@eddye68/studio-client
Version:
The AWS service Studio client
18 lines • 439 B
JavaScript
// src/model/wfl/object-operations.ts
var ObjectOperation = class {
constructor(Id = null, Name = null, Type = null, Params = null) {
this.__classname__ = "ObjectOperation";
this.Id = null;
this.Name = null;
this.Type = null;
this.Params = null;
this.Id = Id;
this.Name = Name;
this.Type = Type;
this.Params = Params;
}
};
export {
ObjectOperation
};
//# sourceMappingURL=object-operations.mjs.map