mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
71 lines
2.2 KiB
C#
71 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
public class CiscoSparkCodecPropertiesConfig
|
|
{
|
|
[JsonProperty("communicationMonitorProperties")]
|
|
public CommunicationMonitorConfig CommunicationMonitorProperties { get; set; }
|
|
|
|
[JsonProperty("favorites")]
|
|
public List<CodecActiveCallItem> Favorites { get; set; }
|
|
|
|
/// <summary>
|
|
/// Valid values: "Local" or "Corporate"
|
|
/// </summary>
|
|
[JsonProperty("phonebookMode")]
|
|
public string PhonebookMode { get; set; }
|
|
|
|
[JsonProperty("showSelfViewByDefault")]
|
|
public bool ShowSelfViewByDefault { get; set; }
|
|
|
|
[JsonProperty("sharing")]
|
|
public SharingProperties Sharing { get; set; }
|
|
|
|
/// <summary>
|
|
/// Enables external source switching capability
|
|
/// </summary>
|
|
[JsonProperty("externalSourceListEnabled")]
|
|
public bool ExternalSourceListEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// The name of the routing input port on the codec to which the external switch is connected
|
|
/// </summary>
|
|
[JsonProperty("externalSourceInputPort")]
|
|
public string ExternalSourceInputPort { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optionsal property to set the limit of any phonebook queries for directory or searching
|
|
/// </summary>
|
|
[JsonProperty("phonebookResultsLimit")]
|
|
public uint PhonebookResultsLimit { get; set; }
|
|
|
|
[JsonProperty("UiBranding")]
|
|
public BrandingLogoProperties UiBranding { get; set; }
|
|
|
|
}
|
|
|
|
public class SharingProperties
|
|
{
|
|
[JsonProperty("autoShareContentWhileInCall")]
|
|
public bool AutoShareContentWhileInCall { get; set; }
|
|
}
|
|
|
|
public class BrandingLogoProperties
|
|
{
|
|
[JsonProperty("enable")]
|
|
public bool Enable { get; set; }
|
|
|
|
[JsonProperty("brandingUrl")]
|
|
public string BrandingUrl { get; set; }
|
|
}
|
|
} |