mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
Updated enum values in CodecActiveCallItem
This commit is contained in:
@@ -17,6 +17,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||||||
|
|
||||||
public eCodecCallStatus Status { get; set; }
|
public eCodecCallStatus Status { get; set; }
|
||||||
|
|
||||||
|
public eCodecCallDirection Direction { get; set; }
|
||||||
|
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
|
|
||||||
public object CallMetaData { get; set; }
|
public object CallMetaData { get; set; }
|
||||||
@@ -24,11 +26,16 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||||||
|
|
||||||
public enum eCodecCallType
|
public enum eCodecCallType
|
||||||
{
|
{
|
||||||
Unknown = 0, Audio, Video
|
Unknown = 0, Audio, Video, AudioCanEscalate, ForwardAllCall
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum eCodecCallStatus
|
public enum eCodecCallStatus
|
||||||
{
|
{
|
||||||
Unknown = 0, Dialing, Connected, Incoming, OnHold, Disconnected
|
Unknown = 0, Idle, Dialing, Ringing, Connecting, Connected, Disconnecting, Incoming, OnHold, EarlyMedia, Preserved, RemotePreserved, Disconnected
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum eCodecCallDirection
|
||||||
|
{
|
||||||
|
Unknown = 0, Incoming, Outgoing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user