/* Options: Date: 2026-08-14 03:59:21 Version: 10.09 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: EchoCollections.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } // @Route("/echo/collections") export class EchoCollections implements IReturn { public stringList?: string[]; public stringArray?: string[]; public stringMap?: { [index:string]: string; }; public intStringMap?: { [index:number]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EchoCollections'; } public getMethod() { return 'POST'; } public createResponse() { return new EchoCollections(); } }