/* Options: Date: 2026-09-21 22:54:16 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: GetVariantStockByGtinAndID.* //ExcludeTypes: //DefaultImports: */ // @Route("/GetVariantStockByGtinAndID") export class GetVariantStockByGtinAndID { /** @description 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 Gtin: string; /** @description Id of this stock */ // @ApiMember(Description="Id of this stock") public StockID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetVariantStockByGtinAndID'; } public getMethod() { return 'POST'; } public createResponse() {} }