mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-11 16:52:41 +00:00
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import { MarginDurations } from '../types/margin-durations.type';
|
|
import { Schedule } from '../types/schedule.type';
|
|
|
|
export interface IRequestTime {
|
|
departure?: string;
|
|
fromDate?: string;
|
|
toDate?: string;
|
|
schedule?: Schedule;
|
|
marginDuration?: number;
|
|
marginDurations?: MarginDurations;
|
|
timezone?: string;
|
|
}
|