/* Options: Date: 2026-03-31 20:11:36 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SetWorkflowUrgentOperation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Mark a workflow as urgent. */ // @Route("/workflows/seturgent", "POST") // @Api(Description="Mark a workflow as urgent.") public class SetWorkflowUrgentOperation : IReturnVoid, Codable { /** * ID of the workflow to affect */ // @ApiMember(Description="ID of the workflow to affect", IsRequired=true) public var workflowID:Int? required public init(){} }