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