/* Options: Date: 2026-09-02 15:38:52 Version: 10.09 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: ResetServerEvents.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } // @Route("/reset-serverevents") export class ResetServerEvents implements IReturnVoid { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ResetServerEvents'; } public getMethod() { return 'POST'; } public createResponse() {} }