/** * 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 NotificationRuleActionDto */ export interface NotificationRuleActionDto extends RuleActionDto { /** * The user id or email. * @type {string} * @memberof NotificationRuleActionDto */ user: string; /** * The text to send. * @type {string} * @memberof NotificationRuleActionDto */ text: string; /** * The optional url to attach to the notification. * @type {string} * @memberof NotificationRuleActionDto */ url?: string | null; /** * An optional client name. * @type {string} * @memberof NotificationRuleActionDto */ client?: string | null; } /** * Check if a given object implements the NotificationRuleActionDto interface. */ export declare function instanceOfNotificationRuleActionDto(value: any): value is NotificationRuleActionDto; export declare function NotificationRuleActionDtoFromJSON(json: any): NotificationRuleActionDto; export declare function NotificationRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): NotificationRuleActionDto; export declare function NotificationRuleActionDtoToJSON(value?: NotificationRuleActionDto | null, _ignoreDiscriminator?: boolean): any;