import { ISearch } from "../search"; import { IDeviceSearch } from "../device_search"; /** The object used to specify the arguments when searching for a {@link IFuelUsed}. */ export interface IFuelUsedSearch extends ISearch { /** * Gets or sets the device search criteria for the {@link IFuelUsed} records with this * {@link DeviceSearch} Id. Available DeviceSearch options are:. IdGroupsGroupListSearch */ deviceSearch?: IDeviceSearch; /** * Gets or sets the from date, which is used to search for {@link IFuelUsed} records * recorded on or after this date. */ fromDate?: Date; /** * Gets or sets the to date, which is used to search for {@link IFuelUsed} records * recorded on or before this date. */ toDate?: Date; } //# sourceMappingURL=fuel_used_search.d.ts.map