/* Options: Date: 2026-09-21 22:51:49 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: GetVariantStockByGtinAndID.* //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="/GetVariantStockByGtinAndID") public static class GetVariantStockByGtinAndID { /** * 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...)") public String Gtin = null; /** * Id of this stock */ @ApiMember(Description="Id of this stock") public Integer StockID = null; public String getGtin() { return Gtin; } public GetVariantStockByGtinAndID setGtin(String value) { this.Gtin = value; return this; } public Integer getStockID() { return StockID; } public GetVariantStockByGtinAndID setStockID(Integer value) { this.StockID = value; return this; } } }