Date value structure for system date operations.
Represents a specific calendar date with month, day, and year components. Used when updating system date through the KosTime model.
const newYear: DateBean = { month: 1, // January day: 1, // 1st year: 2024 // 2024};const independence: DateBean = { month: 7, // July day: 4, // 4th year: 2024};await timeModel.updateSystemDate(newYear); Copy
const newYear: DateBean = { month: 1, // January day: 1, // 1st year: 2024 // 2024};const independence: DateBean = { month: 7, // July day: 4, // 4th year: 2024};await timeModel.updateSystemDate(newYear);
Month (1-12, where 1 = January, 12 = December)
Day of the month (1-31, depending on month)
Full year (e.g., 2024)
Date value structure for system date operations.
Represents a specific calendar date with month, day, and year components. Used when updating system date through the KosTime model.
Example