(* Options: Date: 2025-05-05 01:15:08 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: ChangeMyPassword.* //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 /// ///Update the authenticated user's password /// [] [] [] type ChangeMyPassword() = interface IReturnVoid interface IPost /// ///The new password for this user /// [] member val NewPassword:String = null with get,set