/* Options: Date: 2026-09-21 22:52:53 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: DeleteBox.* //ExcludeTypes: //DefaultImports: */ // @Route("/DeleteBox") export class DeleteBox { /** @description Identifier of ths box */ // @ApiMember(Description="Identifier of ths box", IsRequired=true) public BoxID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteBox'; } public getMethod() { return 'POST'; } public createResponse() {} }