(* Options: Date: 2025-05-05 18:34:55 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateAgencyMulesoftQueueState.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Mercedes.Agency.API.Shared.Enums open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type QueueStateChanged = | Enabled = 1 | Disabled = 2 [] type UpdateAgencyMulesoftQueue() = member val StatusChanged:QueueStateChanged = new QueueStateChanged() with get,set member val DisabledReason:String = null with get,set member val GasId:String = null with get,set [] type AgencyMulesoftStatusResponse() = member val Status:Boolean = new Boolean() with get,set member val MessageCount:Nullable = new Nullable() with get,set member val LastModified:String = null with get,set [] type UpdateAgencyMulesoftQueueStateResponse() = inherit AgencyMulesoftStatusResponse() [] [] type UpdateAgencyMulesoftQueueState() = inherit UpdateAgencyMulesoftQueue() interface IReturn interface IGet