/* Options: Date: 2026-09-21 22:54:06 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddBox.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/AddBox") open class AddBox { /** * Name of the box */ @ApiMember(Description="Name of the box", IsRequired=true) open var Name:String? = null /** * Size X of the box in cm */ @ApiMember(Description="Size X of the box in cm", IsRequired=true) open var SizeXcm:Double? = null /** * Size Y of the box in cm */ @ApiMember(Description="Size Y of the box in cm", IsRequired=true) open var SizeYcm:Double? = null /** * Size Z of the box in cm */ @ApiMember(Description="Size Z of the box in cm", IsRequired=true) open var SizeZcm:Double? = null }