/** * 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 EmailRuleActionDto */ export interface EmailRuleActionDto extends RuleActionDto { /** * The IP address or host to the SMTP server. * @type {string} * @memberof EmailRuleActionDto */ serverHost: string; /** * The port to the SMTP server. * @type {number} * @memberof EmailRuleActionDto */ serverPort: number; /** * The username for the SMTP server. * @type {string} * @memberof EmailRuleActionDto */ serverUsername: string; /** * The password for the SMTP server. * @type {string} * @memberof EmailRuleActionDto */ serverPassword: string; /** * The email sending address. * @type {string} * @memberof EmailRuleActionDto */ messageFrom: string; /** * The email message will be sent to. * @type {string} * @memberof EmailRuleActionDto */ messageTo: string; /** * The subject line for this email message. * @type {string} * @memberof EmailRuleActionDto */ messageSubject: string; /** * The message body. * @type {string} * @memberof EmailRuleActionDto */ messageBody: string; } /** * Check if a given object implements the EmailRuleActionDto interface. */ export declare function instanceOfEmailRuleActionDto(value: any): value is EmailRuleActionDto; export declare function EmailRuleActionDtoFromJSON(json: any): EmailRuleActionDto; export declare function EmailRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): EmailRuleActionDto; export declare function EmailRuleActionDtoToJSON(value?: EmailRuleActionDto | null, _ignoreDiscriminator?: boolean): any;