@eddye68/studio-client
Version:
The AWS service Studio client
15 lines (13 loc) • 355 B
TypeScript
declare class PropertyValue {
__classname__: string;
Value: string;
Display: string | null;
Entity: string | null;
constructor(params: PropertyValueNamedParameters);
}
interface PropertyValueNamedParameters {
Value: string;
Display?: string;
Entity?: string;
}
export { PropertyValue, type PropertyValueNamedParameters };