/* Options: Date: 2024-05-10 01:04:20 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: SendGet.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class SendVerbResponse { public id: number; public pathInfo: string; public requestMethod: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SendGet implements IReturn, IGet { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendGet'; } public getMethod() { return 'GET'; } public createResponse() { return new SendVerbResponse(); } }