/** * @type ContentFolder: * * @property id: The id of the content folder. * - **Max Length:** 256 * * @property parentFolderId: The id of the parent content folder. * - **Max Length:** 256 * * @property name: The localized content folder name. * - **Max Length:** 4000 * * @property description: The localized content folder description. * - **Max Length:** 4000 * * @property pageDescription: The localized content folder page description. * - **Max Length:** 4000 * * @property pageKeywords: The localized content folder page keywords. * - **Max Length:** 4000 * * @property pageTitle: The localized content folder page title. * - **Max Length:** 4000 * * @property folders: The array of content subfolders. This array can be empty. * */ export type ContentFolder = { id: string; parentFolderId?: string; name?: string; description?: string; pageDescription?: string; pageKeywords?: string; pageTitle?: string; folders?: Array; } & { [key: string]: any; };