@eddye68/studio-client
Version:
The AWS service Studio client
17 lines (14 loc) • 452 B
text/typescript
import { PropertyValue } from './property-value.mjs';
declare class MetaDataValue {
__classname__: string;
Property: string;
Values: string[] | null;
PropertyValues: PropertyValue[] | null;
constructor(params: MetaDataValueNamedParameters);
}
interface MetaDataValueNamedParameters {
Property: string;
Values?: string[];
PropertyValues?: PropertyValue[];
}
export { MetaDataValue, type MetaDataValueNamedParameters };