Capacity Schedule Data
@Serializable
A data class to represent the data associated with a CapacitySchedule.
Parameters
capacity Items
the items on the schedule
initial Start Time
the start time of the schedule. Defaults to 0.0
is Schedule Repeatable
indicates if the schedule should repeat. The default is false.
is Auto Start Flag
indicates if the schedule should automatically start itself. The default is true.
Constructors
Link copied to clipboard
constructor(capacityItems: List<CapacityItemData>, initialStartTime: Double = 0.0, isScheduleRepeatable: Boolean = false, isAutoStartFlag: Boolean = true)
constructor(capacities: IntArray, duration: Double, initialStartTime: Double = 0.0, isScheduleRepeatable: Boolean = false, isAutoStartFlag: Boolean = true)
A data class to represent the data associated with a CapacitySchedule.