/** * 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 AzureQueueRuleActionDto */ export interface AzureQueueRuleActionDto extends RuleActionDto { /** * The connection string to the storage account. * @type {string} * @memberof AzureQueueRuleActionDto */ connectionString: string; /** * The name of the queue. * @type {string} * @memberof AzureQueueRuleActionDto */ queue: string; /** * Leave it empty to use the full event as body. * @type {string} * @memberof AzureQueueRuleActionDto */ payload?: string | null; } /** * Check if a given object implements the AzureQueueRuleActionDto interface. */ export declare function instanceOfAzureQueueRuleActionDto(value: any): value is AzureQueueRuleActionDto; export declare function AzureQueueRuleActionDtoFromJSON(json: any): AzureQueueRuleActionDto; export declare function AzureQueueRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AzureQueueRuleActionDto; export declare function AzureQueueRuleActionDtoToJSON(value?: AzureQueueRuleActionDto | null, _ignoreDiscriminator?: boolean): any;