/* Options: Date: 2024-05-12 08:12:01 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: HelloWithType.* //ExcludeTypes: //DefaultImports: */ export class HelloType { public result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloWithTypeResponse { public result: HelloType; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloWithType implements IReturn { public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'HelloWithType'; } public getMethod() { return 'POST'; } public createResponse() { return new HelloWithTypeResponse(); } }