/* Options: Date: 2024-05-14 19:02:17 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: SendRestGet.* //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); } } // @Route("/sendrestget/{Id}", "GET") export class SendRestGet implements IReturn, IGet { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendRestGet'; } public getMethod() { return 'GET'; } public createResponse() { return new SendVerbResponse(); } }