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

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);
interface TimeBean {
    hour: number;
    min: number;
    sec: number;
}

Properties

Properties

hour: number

Hour in 24-hour format (0-23)

min: number

Minutes (0-59)

sec: number

Seconds (0-59)