(* Options: Date: 2025-07-18 06:17:22 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: RecoverPassword.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Authentication open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations ///<summary> ///Reset an account's password using the token sent via email ///</summary> [<Route("/auth/recover", "POST")>] [<Api(Description="Reset an account's password using the token sent via email")>] [<AllowNullLiteral>] type RecoverPassword() = interface IReturnVoid interface IPost ///<summary> ///The email address being recovered ///</summary> [<ApiMember(Description="The email address being recovered")>] member val EmailAddress:String = null with get,set ///<summary> ///The token sent via email ///</summary> [<ApiMember(Description="The token sent via email")>] member val Token:String = null with get,set ///<summary> ///New Password ///</summary> [<ApiMember(Description="New Password")>] member val NewPassword:String = null with get,set