(* Options: Date: 2025-07-04 09:43:50 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetDocumentStorageSystemStatus.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace IDB.API.DTO.Document.Operations open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Drawing type CheckStorageSystemStatus = | Error = 0 | Waiting = 1 | NoAction = 2 | Busy = 3 [] type GetDocumentStorageSystemStatusResponse() = member val CheckStorageSystemStatus:CheckStorageSystemStatus = new CheckStorageSystemStatus() with get,set /// ///Check storagesystem status for a document and update if necessary. /// [] [] [] [] [] [] [] type GetDocumentStorageSystemStatus() = interface IReturn /// ///DocumentID to be checked /// [] member val DocumentID:Guid = new Guid() with get,set