(* Options:
Date: 2025-05-05 00:36:24
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
///
///Reset an account's password using the token sent via email
///
[]
[]
[]
type RecoverPassword() =
interface IReturnVoid
interface IPost
///
///The email address being recovered
///
[]
member val EmailAddress:String = null with get,set
///
///The token sent via email
///
[]
member val Token:String = null with get,set
///
///New Password
///
[]
member val NewPassword:String = null with get,set