import { PropertyIndexedType, GuidValue } from "@omnia/fx-models"; import { PropertySelectionListType } from "../enums/Enums"; export interface PropertySetItemSettings { /** * Note: there are three types Data, Media, EnterpriseKeyworkds are not supported, it will throw exception in validation * */ type: PropertyIndexedType; alternativeInternalName?: string; defaultValueFromAppPropertyDefinitionId?: GuidValue; propertySelectionListType?: PropertySelectionListType; }