/* Options: Date: 2026-09-21 22:50:59 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddBox.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/AddBox") public static class AddBox { /** * Name of the box */ @ApiMember(Description="Name of the box", IsRequired=true) public String Name = null; /** * Size X of the box in cm */ @ApiMember(Description="Size X of the box in cm", IsRequired=true) public Double SizeXcm = null; /** * Size Y of the box in cm */ @ApiMember(Description="Size Y of the box in cm", IsRequired=true) public Double SizeYcm = null; /** * Size Z of the box in cm */ @ApiMember(Description="Size Z of the box in cm", IsRequired=true) public Double SizeZcm = null; public String getName() { return Name; } public AddBox setName(String value) { this.Name = value; return this; } public Double getSizeXcm() { return SizeXcm; } public AddBox setSizeXcm(Double value) { this.SizeXcm = value; return this; } public Double getSizeYcm() { return SizeYcm; } public AddBox setSizeYcm(Double value) { this.SizeYcm = value; return this; } public Double getSizeZcm() { return SizeZcm; } public AddBox setSizeZcm(Double value) { this.SizeZcm = value; return this; } } }