/* Options: Date: 2026-09-21 23:47:47 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: MissionUpdateDetail.* //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="/MissionUpdateDetail/{ID}/{QuantityPrepared}") public static class MissionUpdateDetail { /** * Label ID */ @ApiMember(Description="Label ID", IsRequired=true) public Integer ID = null; /** * Quantity the operator prepared */ @ApiMember(Description="Quantity the operator prepared", IsRequired=true) public Double QuantityPrepared = null; /** * Related batch value */ @ApiMember(Description="Related batch value") public String Batch = null; /** * Related target container code */ @ApiMember(Description="Related target container code") public String ContainerCode = null; /** * Data1 will be modified with the given value */ @ApiMember(Description="Data1 will be modified with the given value") public String Data1 = null; /** * Data2 will be modified with the given value */ @ApiMember(Description="Data2 will be modified with the given value") public String Data2 = null; /** * Data3 will be modified with the given value */ @ApiMember(Description="Data3 will be modified with the given value") public String Data3 = null; /** * Data4 will be modified with the given value */ @ApiMember(Description="Data4 will be modified with the given value") public String Data4 = null; /** * Data5 will be modified with the given value */ @ApiMember(Description="Data5 will be modified with the given value") public String Data5 = null; /** * Data6 will be modified with the given value */ @ApiMember(Description="Data6 will be modified with the given value") public String Data6 = null; /** * Data7 will be modified with the given value */ @ApiMember(Description="Data7 will be modified with the given value") public String Data7 = null; /** * Data8 will be modified with the given value */ @ApiMember(Description="Data8 will be modified with the given value") public String Data8 = null; /** * Data9 will be modified with the given value */ @ApiMember(Description="Data9 will be modified with the given value") public String Data9 = null; /** * Data10 will be modified with the given value */ @ApiMember(Description="Data10 will be modified with the given value") public String Data10 = null; /** * Data11 will be modified with the given value */ @ApiMember(Description="Data11 will be modified with the given value") public String Data11 = null; /** * Stockroom name */ @ApiMember(Description="Stockroom name") public String StockroomName = null; /** * Product's version selected */ @ApiMember(Description="Product's version selected") public String VersionSelected = null; /** * Owner */ @ApiMember(Description="Owner") public String Owner = null; /** * Allow destock qty in db */ @ApiMember(Description="Allow destock qty in db") public Boolean UpdateStockQty = null; public Integer getId() { return ID; } public MissionUpdateDetail setId(Integer value) { this.ID = value; return this; } public Double getQuantityPrepared() { return QuantityPrepared; } public MissionUpdateDetail setQuantityPrepared(Double value) { this.QuantityPrepared = value; return this; } public String getBatch() { return Batch; } public MissionUpdateDetail setBatch(String value) { this.Batch = value; return this; } public String getContainerCode() { return ContainerCode; } public MissionUpdateDetail setContainerCode(String value) { this.ContainerCode = value; return this; } public String getData1() { return Data1; } public MissionUpdateDetail setData1(String value) { this.Data1 = value; return this; } public String getData2() { return Data2; } public MissionUpdateDetail setData2(String value) { this.Data2 = value; return this; } public String getData3() { return Data3; } public MissionUpdateDetail setData3(String value) { this.Data3 = value; return this; } public String getData4() { return Data4; } public MissionUpdateDetail setData4(String value) { this.Data4 = value; return this; } public String getData5() { return Data5; } public MissionUpdateDetail setData5(String value) { this.Data5 = value; return this; } public String getData6() { return Data6; } public MissionUpdateDetail setData6(String value) { this.Data6 = value; return this; } public String getData7() { return Data7; } public MissionUpdateDetail setData7(String value) { this.Data7 = value; return this; } public String getData8() { return Data8; } public MissionUpdateDetail setData8(String value) { this.Data8 = value; return this; } public String getData9() { return Data9; } public MissionUpdateDetail setData9(String value) { this.Data9 = value; return this; } public String getData10() { return Data10; } public MissionUpdateDetail setData10(String value) { this.Data10 = value; return this; } public String getData11() { return Data11; } public MissionUpdateDetail setData11(String value) { this.Data11 = value; return this; } public String getStockroomName() { return StockroomName; } public MissionUpdateDetail setStockroomName(String value) { this.StockroomName = value; return this; } public String getVersionSelected() { return VersionSelected; } public MissionUpdateDetail setVersionSelected(String value) { this.VersionSelected = value; return this; } public String getOwner() { return Owner; } public MissionUpdateDetail setOwner(String value) { this.Owner = value; return this; } public Boolean isUpdateStockQty() { return UpdateStockQty; } public MissionUpdateDetail setUpdateStockQty(Boolean value) { this.UpdateStockQty = value; return this; } } }