/* Options: Date: 2025-12-06 05:27:00 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.sbbet.ath.cx //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProductInstance.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ProductInstance { public id: string; public name: string; public title: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/product-instance") export class GetProductInstance implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetProductInstance'; } public getMethod() { return 'POST'; } public createResponse() { return new ProductInstance(); } }