/* Options: Date: 2026-09-21 22:54:09 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: MissionUpdateDetail.* //ExcludeTypes: //DefaultImports: */ // @Route("/MissionUpdateDetail/{ID}/{QuantityPrepared}") export class MissionUpdateDetail { /** @description Label ID */ // @ApiMember(Description="Label ID", IsRequired=true) public ID: number; /** @description Quantity the operator prepared */ // @ApiMember(Description="Quantity the operator prepared", IsRequired=true) public QuantityPrepared: number; /** @description Related batch value */ // @ApiMember(Description="Related batch value") public Batch: string; /** @description Related target container code */ // @ApiMember(Description="Related target container code") public ContainerCode: string; /** @description Data1 will be modified with the given value */ // @ApiMember(Description="Data1 will be modified with the given value") public Data1: string; /** @description Data2 will be modified with the given value */ // @ApiMember(Description="Data2 will be modified with the given value") public Data2: string; /** @description Data3 will be modified with the given value */ // @ApiMember(Description="Data3 will be modified with the given value") public Data3: string; /** @description Data4 will be modified with the given value */ // @ApiMember(Description="Data4 will be modified with the given value") public Data4: string; /** @description Data5 will be modified with the given value */ // @ApiMember(Description="Data5 will be modified with the given value") public Data5: string; /** @description Data6 will be modified with the given value */ // @ApiMember(Description="Data6 will be modified with the given value") public Data6: string; /** @description Data7 will be modified with the given value */ // @ApiMember(Description="Data7 will be modified with the given value") public Data7: string; /** @description Data8 will be modified with the given value */ // @ApiMember(Description="Data8 will be modified with the given value") public Data8: string; /** @description Data9 will be modified with the given value */ // @ApiMember(Description="Data9 will be modified with the given value") public Data9: string; /** @description Data10 will be modified with the given value */ // @ApiMember(Description="Data10 will be modified with the given value") public Data10: string; /** @description Data11 will be modified with the given value */ // @ApiMember(Description="Data11 will be modified with the given value") public Data11: string; /** @description Stockroom name */ // @ApiMember(Description="Stockroom name") public StockroomName: string; /** @description Product's version selected */ // @ApiMember(Description="Product's version selected") public VersionSelected: string; /** @description Owner */ // @ApiMember(Description="Owner") public Owner: string; /** @description Allow destock qty in db */ // @ApiMember(Description="Allow destock qty in db") public UpdateStockQty: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'MissionUpdateDetail'; } public getMethod() { return 'POST'; } public createResponse() {} }