import { ISearch } from "./search"; import { IUserSearch } from "./user_search"; /** * The object used to specify the arguments when searching for {@link IDutyStatusAvailability} * objects. */ export interface IDutyStatusAvailabilitySearch extends ISearch { /** Gets or sets the date from which the availability is calculated. */ fromDate?: Date; /** Gets or sets search for an entry based on the specific {@link IId}. */ id: string; /** Gets or sets the date to which the availability is calculated. */ toDate?: Date; /** * Gets or sets search for duty status availability objects with this {@link IUserSearch}. * Available UserSearch options are:. IdDriverGroupsDriverGroupListSearch */ userSearch: IUserSearch; } //# sourceMappingURL=duty_status_availability_search.d.ts.map