/* Options: Date: 2025-05-04 22:28:42 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: RecoverPassword.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Voice.Api.Authentication; namespace Voice.Api.Authentication { /// ///Reset an account's password using the token sent via email /// [Route("/auth/recover", "POST")] [Api(Description="Reset an account's password using the token sent via email")] public partial class RecoverPassword : IReturnVoid, IPost { /// ///The email address being recovered /// [ApiMember(Description="The email address being recovered")] public virtual string EmailAddress { get; set; } /// ///The token sent via email /// [ApiMember(Description="The token sent via email")] public virtual string Token { get; set; } /// ///New Password /// [ApiMember(Description="New Password")] public virtual string NewPassword { get; set; } } }