/* Options: Date: 2026-09-02 15:37:43 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: HelloInterface.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IPoco { name: string; } export interface IEmptyInterface { } export class EmptyClass { public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloInterface { public poco: IPoco; public emptyInterface: IEmptyInterface; public emptyClass: EmptyClass; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'HelloInterface'; } public getMethod() { return 'POST'; } public createResponse() {} }