import { GuidValue, PropertyIndexedType } from "@omnia/fx-models"; import { MultilingualString } from "@omnia/fx/models"; export interface SharePointField { id: GuidValue; /** * SharePoint field title * If we want to show title on UI, check whether it is mapped to our Enterprise Property or not by InternalName to get multilingual title * */ title: string; internalName: string; /** * The value will not be updated to sharepoint column base on value that send from client-side to server * */ required?: boolean; /** * The value will not be updated to sharepoint column base on value that send from client-side to server * */ hidden?: boolean; type: PropertyIndexedType; description?: MultilingualString; enterprisePropertyDefinitionId?: GuidValue; }