/* Options: Date: 2026-09-21 22:54:52 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: SetPositions.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/SetPositions") public class SetPositions : Codable { /** * Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) public var positions:[Position] = [] /** * 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? /** * Optional: overwrite existing positions defined with the same key: Yes by default */ // @ApiMember(Description="Optional: overwrite existing positions defined with the same key: Yes by default") public var overwrite:Bool? required public init(){} }