/** * 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 SMTPConfigurationUpdate */ export interface SMTPConfigurationUpdate { /** * * @type {string} * @memberof SMTPConfigurationUpdate */ fromAddress: string; /** * * @type {string} * @memberof SMTPConfigurationUpdate */ server: string; /** * * @type {number} * @memberof SMTPConfigurationUpdate */ port: number; /** * * @type {string} * @memberof SMTPConfigurationUpdate */ tls: string; /** * * @type {string} * @memberof SMTPConfigurationUpdate */ username: string | null; /** * * @type {string} * @memberof SMTPConfigurationUpdate */ password: string | null; } export declare function SMTPConfigurationUpdateFromJSON(json: any): SMTPConfigurationUpdate; export declare function SMTPConfigurationUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SMTPConfigurationUpdate; export declare function SMTPConfigurationUpdateToJSON(value?: SMTPConfigurationUpdate | null): any;