import { ISearch } from "./search"; /** The object used to specify the arguments when searching for a . */ export interface IWorkHolidaySearch extends ISearch { /** * Gets or sets search for WorkHolidays with this Name. Wildcard can be used by prepending/appending * "%" to string. Example "%name%". */ name: string; } //# sourceMappingURL=work_holiday_search.d.ts.map