(* Options: Date: 2025-05-10 02:49:24 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: ServiceStatusRequest.* //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 BaseRequest() = /// ///This is your AIM API Key provided by Tri-Tech /// [] [] member val ApiKey:String = null with get,set [] [] member val OAuthToken:String = null with get,set [] [] type BaseSecureRequest() = inherit BaseRequest() /// /// /// [] [] member val Token:String = null with get,set /// /// /// [] [] member val DeviceId:String = null with get,set /// /// /// [] [] member val AppId:String = null with get,set [] [] type ServiceStatus() = [] member val Id:Int64 = new Int64() with get,set [] member val Status:String = null with get,set [] member val Description:String = null with get,set [] member val Code:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ServiceStatusResponse() = inherit BaseResponse() [] member val Statuses:ResizeArray = new ResizeArray() with get,set /// ///ServiceStatusRequires active-e Service Tickets Service /// [] [] [] type ServiceStatusRequest() = inherit BaseSecureRequest() interface IReturn /// ///List of Tickets to be updated. Only used for a POST request. /// [] [] member val Tickets:ResizeArray = new ResizeArray() with get,set /// ///New Status Id to be set to the tickets. Only used for a POST request. Send this or NewStatus. /// [] [] member val NewStatusId:Nullable = new Nullable() with get,set /// ///New Status to be set to the tickets. Only used for a POST request. Send this or NewStatus. /// [] [] member val NewStatus:String = null with get,set /// ///New Locator Id to be set to the tickets. Only used for a POST request. Send this or NewLocator. /// [] [] member val NewLocatorId:Nullable = new Nullable() with get,set /// ///New Locator to be set to the tickets. Only used for a POST request. Send this or NewLocatorId. /// [] [] member val NewLocator:String = null with get,set /// ///New Master Ticket # to be set to the tickets. Only used for a POST request. /// [] [] member val NewMasterTicket:String = null with get,set