/** * 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 { RuleDto } from './RuleDto'; import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface RulesDto */ export interface RulesDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof RulesDto */ links: { [key: string]: ResourceLink; }; /** * The rules. * @type {Array} * @memberof RulesDto */ items: Array; /** * The ID of the rule that is currently rerunning. * @type {string} * @memberof RulesDto */ runningRuleId?: string | null; } /** * Check if a given object implements the RulesDto interface. */ export declare function instanceOfRulesDto(value: any): value is RulesDto; export declare function RulesDtoFromJSON(json: any): RulesDto; export declare function RulesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): RulesDto; export declare function RulesDtoToJSON(value?: RulesDto | null, _ignoreDiscriminator?: boolean): any;