/* Options: Date: 2026-06-13 13:09:45 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: ProcessIngestEventSetRequest.* //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 { public static class ProcessIngestEventSetRequest { public Long eventSetId = null; public Boolean isRollupEventSet = null; public Long getEventSetId() { return eventSetId; } public ProcessIngestEventSetRequest setEventSetId(Long value) { this.eventSetId = value; return this; } public Boolean getIsRollupEventSet() { return isRollupEventSet; } public ProcessIngestEventSetRequest setIsRollupEventSet(Boolean value) { this.isRollupEventSet = value; return this; } } }