/* Options: Date: 2024-05-08 14:19:33 Version: 6.111 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: */ 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() {} }