/** * 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 { SchemaCondition } from './SchemaCondition'; import type { RuleTriggerDto } from './RuleTriggerDto'; /** * * @export * @interface ContentChangedRuleTriggerDto */ export interface ContentChangedRuleTriggerDto extends RuleTriggerDto { /** * The schema settings. * @type {Array} * @memberof ContentChangedRuleTriggerDto */ schemas?: Array | null; /** * The schema references. * @type {Array} * @memberof ContentChangedRuleTriggerDto */ referencedSchemas?: Array | null; /** * Determines whether the trigger should handle all content changes events. * @type {boolean} * @memberof ContentChangedRuleTriggerDto */ handleAll: boolean; } /** * Check if a given object implements the ContentChangedRuleTriggerDto interface. */ export declare function instanceOfContentChangedRuleTriggerDto(value: any): value is ContentChangedRuleTriggerDto; export declare function ContentChangedRuleTriggerDtoFromJSON(json: any): ContentChangedRuleTriggerDto; export declare function ContentChangedRuleTriggerDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ContentChangedRuleTriggerDto; export declare function ContentChangedRuleTriggerDtoToJSON(value?: ContentChangedRuleTriggerDto | null, _ignoreDiscriminator?: boolean): any;