mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-03 23:05:00 +00:00
39 lines
1.4 KiB
C#
39 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Implements a common set of data about a codec
|
|
/// </summary>
|
|
public interface iVideoCodecInfo
|
|
{
|
|
VideoCodecInfo CodecInfo { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stores general information about a codec
|
|
/// </summary>
|
|
public abstract class VideoCodecInfo
|
|
{
|
|
[JsonProperty("multiSiteOptionIsEnabled", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract bool MultiSiteOptionIsEnabled { get; }
|
|
[JsonProperty("ipAddress", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract string IpAddress { get; }
|
|
[JsonProperty("sipPhoneNumber", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract string SipPhoneNumber { get; }
|
|
[JsonProperty("e164Alias", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract string E164Alias { get; }
|
|
[JsonProperty("h323Id", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract string H323Id { get; }
|
|
[JsonProperty("sipUri", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract string SipUri { get; }
|
|
[JsonProperty("autoAnswerEnabled", NullValueHandling = NullValueHandling.Ignore)]
|
|
public abstract bool AutoAnswerEnabled { get; }
|
|
}
|
|
} |