SceneCreateParameters

@Serializable
data class SceneCreateParameters(    val actions: List<SceneActionReference>,     val metadata: SceneMetadata,     val group: ResourceReference,     val palette: ScenePalette? = null,     val speed: Percentage? = null,     val autoDynamic: Boolean? = null)

Parameters used for creating a new Scene on the Hue bridge.

Constructors

Link copied to clipboard
fun SceneCreateParameters(    actions: List<SceneActionReference>,     metadata: SceneMetadata,     group: ResourceReference,     palette: ScenePalette? = null,     speed: Percentage? = null,     autoDynamic: Boolean? = null)

Properties

Link copied to clipboard

Actions to be applied to each device in the scene's group.

Link copied to clipboard
val autoDynamic: Boolean? = null

Indicates whether to automatically start the scene dynamically on active recall.

Link copied to clipboard

The group of lights in the scene.

Link copied to clipboard

User-supplied configuration info for the scene.

Link copied to clipboard
val palette: ScenePalette? = null

Group of colors that describe the palette of colors used to be used when playing dynamics.

Link copied to clipboard
val speed: Percentage? = null

The speed of the dynamic palette.