/* Options: Date: 2026-09-21 22:53:55 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: StockGetList.* //ExcludeTypes: //DefaultImports: */ // @Route("/StockGetList") export class StockGetList { /** @description Limit to a certain amount of result (Eg. 50 result) */ // @ApiMember(Description="Limit to a certain amount of result (Eg. 50 result)") public Limit?: number; /** @description Will return only stock entries containing search key withing its label, GTIN or any other attributes */ // @ApiMember(Description="Will return only stock entries containing search key withing its label, GTIN or any other attributes") public SearchKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StockGetList'; } public getMethod() { return 'POST'; } public createResponse() {} }