/* Options: Date: 2025-05-04 23:15:34 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ForgotPassword.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Sends a password recovery email to the email address on file */ // @Route("/auth/forgot-password", "POST") // @Api(Description="Sends a password recovery email to the email address on file") public class ForgotPassword : IReturnVoid, IPost, Codable { /** * The email address associated with the account you want to recover */ // @ApiMember(Description="The email address associated with the account you want to recover") public var emailAddress:String? required public init(){} }