/** * 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 CreateContentRuleActionDto */ export interface CreateContentRuleActionDto extends RuleActionDto { /** * The content data. * @type {string} * @memberof CreateContentRuleActionDto */ data: string; /** * The name of the schema. * @type {string} * @memberof CreateContentRuleActionDto */ schema: string; /** * An optional client name. * @type {string} * @memberof CreateContentRuleActionDto */ client: string; /** * Publish the content. * @type {boolean} * @memberof CreateContentRuleActionDto */ publish: boolean; } /** * Check if a given object implements the CreateContentRuleActionDto interface. */ export declare function instanceOfCreateContentRuleActionDto(value: any): value is CreateContentRuleActionDto; export declare function CreateContentRuleActionDtoFromJSON(json: any): CreateContentRuleActionDto; export declare function CreateContentRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): CreateContentRuleActionDto; export declare function CreateContentRuleActionDtoToJSON(value?: CreateContentRuleActionDto | null, _ignoreDiscriminator?: boolean): any;