diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasParticipants.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasParticipants.cs
index 776c91d3..11c5f147 100644
--- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasParticipants.cs
+++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasParticipants.cs
@@ -17,13 +17,13 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
/// Removes the participant from the meeting
///
///
- void RemoveParticipant(Participant participant);
+ void RemoveParticipant(int userId);
///
/// Sets the participant as the new host
///
///
- void SetParticipantAsHost(Participant participant);
+ void SetParticipantAsHost(int userId);
}
///
diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs
index 3b1d294d..5cfb4f0e 100644
--- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs
+++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs
@@ -2529,14 +2529,14 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
public CodecParticipants Participants { get; private set; }
- public void RemoveParticipant(Participant participant)
+ public void RemoveParticipant(int userId)
{
- SendText(string.Format("zCommand Call Expel Id: {0}", participant.UserId));
+ SendText(string.Format("zCommand Call Expel Id: {0}", userId));
}
- public void SetParticipantAsHost(Participant participant)
+ public void SetParticipantAsHost(int userId)
{
- SendText(string.Format("zCommand Call HostChange Id: {0}", participant.UserId));
+ SendText(string.Format("zCommand Call HostChange Id: {0}", userId));
}
#endregion