/* Options: Date: 2026-09-21 22:55:11 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: GetPositions.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/GetPositions/{Key}") public class GetPositions : Codable { /** * Key identifying one or several locations */ // @ApiMember(Description="Key identifying one or several locations", IsRequired=true) public var key:String? /** * Optional: name of the stockroom where the position(s) is (are) located */ // @ApiMember(Description="Optional: name of the stockroom where the position(s) is (are) located") public var stockroomName:String? required public init(){} }