/* Options: Date: 2024-05-11 18:02:00 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: HelloWithInheritance.* //ExcludeTypes: //DefaultImports: */ export class HelloBase { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloResponseBase { public refId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloWithInheritanceResponse extends HelloResponseBase { public result: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class HelloWithInheritance extends HelloBase implements IReturn { public name: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'HelloWithInheritance'; } public getMethod() { return 'POST'; } public createResponse() { return new HelloWithInheritanceResponse(); } }