/* Options: Date: 2024-10-18 04:31:43 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetDocumentStorageSystemStatus.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Drawing; using IDB.API.DTO.Document.Operations; namespace IDB.API.DTO.Document.Operations { public enum CheckStorageSystemStatus { Error, Waiting, NoAction, Busy, } /// ///Check storagesystem status for a document and update if necessary. /// [Route("/documents/{DocumentID}/checkstoragesystem", "GET")] [Api(Description="Check storagesystem status for a document and update if necessary.")] [ApiResponse(Description="Status of the document (Error,NotAvailable,IsAvailable,NotAvailableBeingUpdated) ", IsDefaultResponse=true, StatusCode=200)] [ApiResponse(Description="Document is moved to recycle bin", StatusCode=204)] [ApiResponse(Description="Unauthorized to read document", StatusCode=401)] [ApiResponse(Description="Document not found", StatusCode=410)] public partial class GetDocumentStorageSystemStatus : IReturn { /// ///DocumentID to be checked /// [ApiMember(Description="DocumentID to be checked", IsRequired=true)] public virtual Guid DocumentID { get; set; } } public partial class GetDocumentStorageSystemStatusResponse { public virtual CheckStorageSystemStatus CheckStorageSystemStatus { get; set; } } }