/* Options: Date: 2026-09-21 22:51:45 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddBox.* //ExcludeTypes: //DefaultImports: */ // @Route("/AddBox") export class AddBox { /** @description Name of the box */ // @ApiMember(Description="Name of the box", IsRequired=true) public Name: string; /** @description Size X of the box in cm */ // @ApiMember(Description="Size X of the box in cm", IsRequired=true) public SizeXcm: number; /** @description Size Y of the box in cm */ // @ApiMember(Description="Size Y of the box in cm", IsRequired=true) public SizeYcm: number; /** @description Size Z of the box in cm */ // @ApiMember(Description="Size Z of the box in cm", IsRequired=true) public SizeZcm: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddBox'; } public getMethod() { return 'POST'; } public createResponse() {} }