/* Options: Date: 2026-09-21 22:53:16 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: RemovePosition.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/RemovePosition/{Key}") public class RemovePosition : Codable { /** * Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) public var key:String? /** * Optional: name of the stockroom where the position is located */ // @ApiMember(Description="Optional: name of the stockroom where the position is located") public var stockroomName:String? required public init(){} }