(* Options: Date: 2025-05-10 03:17:13 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PasswordRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace AIM.WebService open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type PasswordResponse() = inherit BaseResponse() [] member val Response:String = null with get,set /// ///Service for changing passwords /// [] [] [] [] type PasswordRequest() = interface IReturn [] member val Action:String = null with get,set [] member val Username:String = null with get,set [] member val PasswordToken:String = null with get,set [] member val Password:String = null with get,set