import { ISearch } from "./search"; import { IDeviceSearch } from "./device_search"; import { IZoneSearch } from "./zone_search"; /** * The object used to specify the arguments when searching for {@link ILogRecord} * from GPSZoneDistance page(s). */ export interface ILogRecordZoneDistanceSearch extends ISearch { /** * Gets or sets search for {@link ILogRecordZoneDistance}s that were created for {@link * IDeviceSearch}(s). Available DeviceSearch options are:. Id */ deviceSearch: IDeviceSearch; /** * Gets or sets search for {@link ILogRecordZoneDistance}s that were recorded at this * date or after. */ fromDate?: Date; /** * Gets or sets search for {@link ILogRecordZoneDistance}s that were recorded at this * date or before. */ toDate?: Date; /** * Gets or sets search for {@link ILogRecordZoneDistance}s that were created for {@link * IZoneSearch}(s). Available ZoneSearch options are:. Id */ zoneSearch: IZoneSearch; } //# sourceMappingURL=log_record_zone_distance_search.d.ts.map