/* Options: Date: 2025-11-08 10:57:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //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(); } }