/* Options: Date: 2024-05-17 03:59:26 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: SendJson.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/sendjson") export class SendJson implements IReturn { public id: number; public name: string; public requestStream: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendJson'; } public getMethod() { return 'POST'; } public createResponse() { return ''; } }