/* Options: Date: 2026-06-13 12:51:35 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RefreshILEventSetRiskBucketLossBandCountsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/riskstore/maintenance/refresh-il-eventset-riskbucket-lossband-counts", Verbs="POST") public static class RefreshILEventSetRiskBucketLossBandCountsRequest implements IReturnVoid, IPost { /** * List of ILEventSetIds to refresh (leave empty for all) */ @ApiMember(Description="List of ILEventSetIds to refresh (leave empty for all)") public ArrayList ilEventSetIds = null; public ArrayList getIlEventSetIds() { return ilEventSetIds; } public RefreshILEventSetRiskBucketLossBandCountsRequest setIlEventSetIds(ArrayList value) { this.ilEventSetIds = value; return this; } } }