import { BaseModel } from './base'; import { HttpRequestType } from './HttpRequestType'; import { SearchPropertyValue } from './SearchPropertyValue'; export interface Schedule extends BaseModel { Name: string; Description: string; RequestType: HttpRequestType; Url: string; Company: string; Application: string; APIKey: string; PollingTimeDayInterval: string; IsActive: boolean; IsProtected: boolean; IsOneOff: boolean; StartDate: Date; Filter: SearchPropertyValue[]; TimeOfTheDay: string; Day?: string; LastRunTime: Date; TruncateDataAfterDays: number; }