From 4737a10882cee1184ca7372976fc2d3a85e129d7 Mon Sep 17 00:00:00 2001 From: rboy1 <3846367+rboy1@users.noreply.github.com> Date: Fri, 14 Apr 2023 09:47:07 -0400 Subject: [PATCH] EDGE_CHILD New device type --- src/Model/DeviceIntegrationType.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Model/DeviceIntegrationType.cs b/src/Model/DeviceIntegrationType.cs index 2dd536d..7a85395 100644 --- a/src/Model/DeviceIntegrationType.cs +++ b/src/Model/DeviceIntegrationType.cs @@ -156,7 +156,13 @@ public enum DeviceIntegrationType /// Enum ZWAVE for value: ZWAVE /// [EnumMember(Value = "ZWAVE")] - ZWAVE = 21 + ZWAVE = 21, + + /// + /// Enum EDGE_CHILD for value: EDGE_CHILD + /// + [EnumMember(Value = "EDGE_CHILD")] + EDGE_CHILD = 22, }