Class FuelUsedSearch
- Namespace
- Geotab.Checkmate.ObjectModel.Fuel
- Assembly
- Geotab.Checkmate.ObjectModel.dll
The object used to specify the arguments when searching for FuelUsed.
This search has been designed to work efficiently with these parameters:
public class FuelUsedSearch : Search, IEntity
- Inheritance
-
FuelUsedSearch
- Implements
- Inherited Members
Constructors
FuelUsedSearch()
Initializes a new instance of the FuelUsedSearch class.
public FuelUsedSearch()
FuelUsedSearch(Id)
Initializes a new instance of the FuelUsedSearch class.
public FuelUsedSearch(Id id)
Parameters
id
IdThe id.
Properties
DeviceSearch
Gets or sets filter by the DeviceSearch options. Providing a device ID will search for any FuelUsed data that are assigned to that Device. Providing the Groups will search for FuelUsed data for that have Devices in that group. Available DeviceSearch options are:
public DeviceSearch? DeviceSearch { get; set; }
Property Value
FromDate
Gets or sets the from date, which is used to search for FuelUsed records recorded on or after this date.
public DateTime? FromDate { get; set; }
Property Value
IncludeDeleted
Gets or sets a value indicating whether search includes records that have the dtDeleted column set
public bool IncludeDeleted { get; set; }
Property Value
MaxVersion
Gets or sets the maximum row version of the FuelUsed search criteria.
public long? MaxVersion { get; set; }
Property Value
ToDate
Gets or sets the to date, which is used to search for FuelUsed records recorded on or before this date.
public DateTime? ToDate { get; set; }
Property Value
Version
Gets or sets the row version of the FuelUsed search criteria.
public override long? Version { get; set; }