Record Class IdAuditSearchParameters

java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdAuditSearchParameters
Record Components:
timeRange - Only events created within this time range are returned
owner - Only include events with this owner
type - Only include events with this type
limit - The limit on the number of returned events

public record IdAuditSearchParameters(IdTimeRange timeRange, Optional<String> owner, Optional<String> type, int limit) extends Record
The immutable parameters required to list audit events.