/* Options: Date: 2024-05-12 23:16:25 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: HelloPost.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IPost { } export class HelloBase { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloVerbResponse { public result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class HelloPost extends HelloBase implements IReturn, IPost { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'HelloPost'; } public getMethod() { return 'POST'; } public createResponse() { return new HelloVerbResponse(); } }