importtype { PlatformUserDefinedPropertyValue } from "./../../platform/PlatformUserDefinedPropertyValue.js";
/** 사용자 정의 속성 */
export type PlatformUserDefinedPropertyKeyValue = {
/** 사용자 정의 속성 키 */
key: string;
/** 사용자 정의 속성 값 */
value: PlatformUserDefinedPropertyValue;
};