/* Options: Date: 2025-05-04 20:20:57 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendTestEmail.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IPost { } export class EmailAccount { public id: string; public server: string; public userName: string; public port: number; public emailAddress: string; public displayName: string; public password: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Send a test email from the specified account */ // @Route("/settings/test-email", "POST") // @Api(Description="Send a test email from the specified account") export class SendTestEmail implements IReturnVoid, IPost { /** @description The email account to send from */ // @ApiMember(Description="The email account to send from") public account: EmailAccount; /** @description The user to send to */ // @ApiMember(Description="The user to send to") public emailAddress: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendTestEmail'; } public getMethod() { return 'POST'; } public createResponse() {} }