/** * 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 { ActionTypeEnum } from './ActionTypeEnum'; import type { RuleActionDto } from './RuleActionDto'; /** * * @export * @interface SignalRRuleActionDto */ export interface SignalRRuleActionDto extends RuleActionDto { /** * The connection string to the Azure SignalR. * @type {string} * @memberof SignalRRuleActionDto */ connectionString: string; /** * The name of the hub. * @type {string} * @memberof SignalRRuleActionDto */ hubName: string; /** * * @type {ActionTypeEnum} * @memberof SignalRRuleActionDto */ action: ActionTypeEnum; /** * Set the Name of the hub method received by the customer. * @type {string} * @memberof SignalRRuleActionDto */ methodName?: string | null; /** * Define target users or groups by id or name. One item per line. Not needed for Broadcast action. * @type {string} * @memberof SignalRRuleActionDto */ target?: string | null; /** * Leave it empty to use the full event as body. * @type {string} * @memberof SignalRRuleActionDto */ payload?: string | null; } /** * Check if a given object implements the SignalRRuleActionDto interface. */ export declare function instanceOfSignalRRuleActionDto(value: any): value is SignalRRuleActionDto; export declare function SignalRRuleActionDtoFromJSON(json: any): SignalRRuleActionDto; export declare function SignalRRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): SignalRRuleActionDto; export declare function SignalRRuleActionDtoToJSON(value?: SignalRRuleActionDto | null, _ignoreDiscriminator?: boolean): any;