/* Options: Date: 2026-09-21 22:53:08 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: AddBox.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/AddBox") public class AddBox : Codable { /** * Name of the box */ // @ApiMember(Description="Name of the box", IsRequired=true) public var name:String? /** * Size X of the box in cm */ // @ApiMember(Description="Size X of the box in cm", IsRequired=true) public var sizeXcm:Double? /** * Size Y of the box in cm */ // @ApiMember(Description="Size Y of the box in cm", IsRequired=true) public var sizeYcm:Double? /** * Size Z of the box in cm */ // @ApiMember(Description="Size Z of the box in cm", IsRequired=true) public var sizeZcm:Double? required public init(){} }