/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SMTPConfiguration */ export interface SMTPConfiguration { /** * * @type {string} * @memberof SMTPConfiguration */ fromAddress: string; /** * * @type {string} * @memberof SMTPConfiguration */ server: string; /** * * @type {number} * @memberof SMTPConfiguration */ port: number; /** * * @type {string} * @memberof SMTPConfiguration */ tls: string; /** * * @type {string} * @memberof SMTPConfiguration */ username: string | null; /** * * @type {string} * @memberof SMTPConfiguration */ password: string | null; } export declare function SMTPConfigurationFromJSON(json: any): SMTPConfiguration; export declare function SMTPConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): SMTPConfiguration; export declare function SMTPConfigurationToJSON(value?: SMTPConfiguration | null): any;