/* Options: Date: 2026-09-21 22:51:27 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: UpdatePhysicalStockQuantity.* //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="/UpdatePhysicalStockQuantity") public static class UpdatePhysicalStockQuantity { /** * Global Trade Item Number : usually is the barcode of product (EAN, UPC, Gencode, etc...) */ @ApiMember(Description="Global Trade Item Number : usually is the barcode of product (EAN, UPC, Gencode, etc...)", IsRequired=true) public String Gtin = null; /** * Quantity moved (delta quantity) */ @ApiMember(Description="Quantity moved (delta quantity)") public Double DeltaQuantity = null; public String getGtin() { return Gtin; } public UpdatePhysicalStockQuantity setGtin(String value) { this.Gtin = value; return this; } public Double getDeltaQuantity() { return DeltaQuantity; } public UpdatePhysicalStockQuantity setDeltaQuantity(Double value) { this.DeltaQuantity = value; return this; } } }