@eddye68/studio-client
Version:
The AWS service Studio client
13 lines • 322 B
JavaScript
// src/model/wfl/property-value.ts
var PropertyValue = class {
constructor(params) {
this.__classname__ = "PropertyValue";
this.Value = params.Value;
this.Display = params.Display ?? null;
this.Entity = params.Entity ?? null;
}
};
export {
PropertyValue
};
//# sourceMappingURL=property-value.mjs.map