/* Options: Date: 2026-09-21 22:53:14 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: SetPosition.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/SetPosition/{Key}/{AreaID}/{Pixel}/{Width}") public class SetPosition : Codable { /** * Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) public var key:String? /** * Area ID */ // @ApiMember(Description="Area ID", IsRequired=true) public var areaID:Int? /** * Pixel number on the area */ // @ApiMember(Description="Pixel number on the area", IsRequired=true) public var pixel:Int? /** * Pixel width */ // @ApiMember(Description="Pixel width", IsRequired=true) public var width:Int? /** * 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(){} }