/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface LocalTime { seconds: number; minutes: number; /** * hours since midnight */ hours: number; /** * day of the month */ dayOfMonth: number; /** * Months since January (0-11) */ month: number; /** * year since 1900 */ year: number; /** * days since sunday */ dayOfWeek: number; /** * day since January 1 */ dayOfYear: number; /** * Daylight Saving Time Flag */ isdst: number; }