/* Options: Date: 2026-06-13 13:33:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProcessReCalculateEventSetMetricsRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } // @Route("/riskstore/eventset/recalculate-metrics", "POST") export class ReCalculateEventSetMetricsRequest implements IReturnVoid, IPost { /** @description List of event set ids to recalculate (leave empty for all) */ // @ApiMember(DataType="string", Description="List of event set ids to recalculate (leave empty for all)", Format="uuid") public eventSetIds: number[]; /** @description The request id */ // @ApiMember(DataType="string", Description="The request id", Format="uuid", IsRequired=true) public requestId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ReCalculateEventSetMetricsRequest'; } public getMethod() { return 'POST'; } public createResponse() {} } // @Route("/riskstore/eventset/recalculate-metrics", "POST") export class ProcessReCalculateEventSetMetricsRequest extends ReCalculateEventSetMetricsRequest implements IReturnVoid { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'ProcessReCalculateEventSetMetricsRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }