SearchEventsFilter class

Represents the filtering criteria for searching events in the FingerprintJS Pro API.

Constructors

SearchEventsFilter({String? query, String? from, String? to, int? limit, int? offset, String? sort})
Constructor
SearchEventsFilter.fromJson(Map<String, dynamic> json)
Creates an instance of SearchEventsFilter from a JSON map.
factory

Properties

from String?
The start timestamp or date for filtering events.
final
hashCode int
The hash code for this object.
no setterinherited
limit int?
The maximum number of events to return.
final
offset int?
The offset for pagination.
final
query String?
A search term to match against event properties.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sort String?
The sort order or sort field (e.g., "asc", "desc", or a specific field name).
final
to String?
The end timestamp or date for filtering events.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts this instance into a JSON map.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited