/* Options: Date: 2024-05-18 08:46:55 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetItems.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Item { public name: string; public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Items { public results: Item[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetItems implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetItems'; } public getMethod() { return 'GET'; } public createResponse() { return new Items(); } }