Time value structure for system time operations.
Represents a specific time of day with hour, minute, and second components. Used when updating system time through the KosTime model.
const morningTime: TimeBean = { hour: 9, // 9 AM (24-hour format) min: 30, // 30 minutes sec: 0 // 0 seconds};const afternoonTime: TimeBean = { hour: 15, // 3 PM (24-hour format) min: 45, sec: 30};await timeModel.updateSystemTime(morningTime); Copy
const morningTime: TimeBean = { hour: 9, // 9 AM (24-hour format) min: 30, // 30 minutes sec: 0 // 0 seconds};const afternoonTime: TimeBean = { hour: 15, // 3 PM (24-hour format) min: 45, sec: 30};await timeModel.updateSystemTime(morningTime);
Hour in 24-hour format (0-23)
Minutes (0-59)
Seconds (0-59)
Time value structure for system time operations.
Represents a specific time of day with hour, minute, and second components. Used when updating system time through the KosTime model.
Example