SystemCalendarEntry

data class SystemCalendarEntry(val startYear: Int? = null, val startMonth: MonthNumber, val startDay: Int, val endYear: Int? = null, val endMonth: MonthNumber, val endDay: Int)(source)

A calendar entry defining an operating period for the system.

Constructors

Link copied to clipboard
constructor(startYear: Int? = null, startMonth: MonthNumber, startDay: Int, endYear: Int? = null, endMonth: MonthNumber, endDay: Int)

Properties

Link copied to clipboard
@SerialName(value = "end_day")
val endDay: Int

Ending date for the system operations (1-31).

Link copied to clipboard
@SerialName(value = "end_month")
val endMonth: MonthNumber

Ending month for the system operations (1-12).

Link copied to clipboard
@SerialName(value = "end_year")
val endYear: Int?

Ending year for the system operations.

Link copied to clipboard
@SerialName(value = "start_day")
val startDay: Int

Starting date for the system operations (1-31).

Link copied to clipboard
@SerialName(value = "start_month")
val startMonth: MonthNumber

Starting month for the system operations (1-12).

Link copied to clipboard
@SerialName(value = "start_year")
val startYear: Int?

Starting year for the system operations.