/** * 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 { RuleActionDto } from './RuleActionDto'; /** * * @export * @interface ScriptRuleActionDto */ export interface ScriptRuleActionDto extends RuleActionDto { /** * The script to render. * @type {string} * @memberof ScriptRuleActionDto */ script: string; } /** * Check if a given object implements the ScriptRuleActionDto interface. */ export declare function instanceOfScriptRuleActionDto(value: any): value is ScriptRuleActionDto; export declare function ScriptRuleActionDtoFromJSON(json: any): ScriptRuleActionDto; export declare function ScriptRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ScriptRuleActionDto; export declare function ScriptRuleActionDtoToJSON(value?: ScriptRuleActionDto | null, _ignoreDiscriminator?: boolean): any;