Skip to content

Commit 310a8ba

Browse files
committed
Added auto_dynamic property on UpdateScene
1 parent 4898613 commit 310a8ba

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/HueApi/Models/Requests/UpdateScene.cs

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ public class UpdateScene : BaseResourceRequest
2121
[JsonPropertyName("speed")]
2222
public double? Speed { get; set; }
2323

24+
/// <summary>
25+
/// Indicates whether to automatically start the scene dynamically on active recall
26+
/// </summary>
27+
[JsonPropertyName("auto_dynamic")]
28+
public bool? AutoDynamic { get; set; }
29+
2430
}
2531

2632
[JsonConverter(typeof(JsonStringEnumConverter))]

0 commit comments

Comments
 (0)