import { ISearch } from "./search"; import { IDeviceSearch } from "./device_search"; /** * The object used to specify the arguments when searching for {@link ITripTypeChange}(s).
*/ export interface ITripTypeChangeSearch extends ISearch { /** * Gets or sets search for {@link IDeviceSearch} Id. Available DeviceSearch options * are:. IdGroupsGroupListSearch */ deviceSearch: IDeviceSearch; /** Gets or sets search for {@link ITripTypeChange}s recorded at this date or after. */ fromDate?: Date; /** * Gets or sets a value indicating whether gets or sets a value to include the first * {@link IFromDate} is null this has no effect. */ includeFromDateOverlap: boolean; /** Gets or sets search for {@link ITripTypeChange}s recorded at this date or before. */ toDate?: Date; } //# sourceMappingURL=trip_type_change_search.d.ts.map