/* Options: Date: 2026-06-13 13:39:24 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: RefreshILEventSetRiskBucketLossBandCountsRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } export interface IPost { } // @Route("/riskstore/maintenance/refresh-il-eventset-riskbucket-lossband-counts", "POST") export class RefreshILEventSetRiskBucketLossBandCountsRequest implements IReturnVoid, IPost { /** @description List of ILEventSetIds to refresh (leave empty for all) */ // @ApiMember(Description="List of ILEventSetIds to refresh (leave empty for all)") public ilEventSetIds: number[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RefreshILEventSetRiskBucketLossBandCountsRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }