/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { PatternDto } from './PatternDto'; import type { ResourceLink } from './ResourceLink'; import type { EditorDto } from './EditorDto'; /** * * @export * @interface AppSettingsDto */ export interface AppSettingsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof AppSettingsDto */ links: { [key: string]: ResourceLink; }; /** * The configured app patterns. * @type {Array} * @memberof AppSettingsDto */ patterns: Array; /** * The configured UI editors. * @type {Array} * @memberof AppSettingsDto */ editors: Array; /** * Hide the scheduler for content items. * @type {boolean} * @memberof AppSettingsDto */ hideScheduler: boolean; /** * Hide the datetime mode button. * @type {boolean} * @memberof AppSettingsDto */ hideDateTimeModeButton: boolean; /** * The version of the app. * @type {number} * @memberof AppSettingsDto */ version: number; } /** * Check if a given object implements the AppSettingsDto interface. */ export declare function instanceOfAppSettingsDto(value: any): value is AppSettingsDto; export declare function AppSettingsDtoFromJSON(json: any): AppSettingsDto; export declare function AppSettingsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AppSettingsDto; export declare function AppSettingsDtoToJSON(value?: AppSettingsDto | null, _ignoreDiscriminator?: boolean): any;