/** * 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 CommentRuleActionDto */ export interface CommentRuleActionDto extends RuleActionDto { /** * The comment text. * @type {string} * @memberof CommentRuleActionDto */ text: string; /** * An optional client name. * @type {string} * @memberof CommentRuleActionDto */ client?: string | null; } /** * Check if a given object implements the CommentRuleActionDto interface. */ export declare function instanceOfCommentRuleActionDto(value: any): value is CommentRuleActionDto; export declare function CommentRuleActionDtoFromJSON(json: any): CommentRuleActionDto; export declare function CommentRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): CommentRuleActionDto; export declare function CommentRuleActionDtoToJSON(value?: CommentRuleActionDto | null, _ignoreDiscriminator?: boolean): any;