mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-05 15:55:02 +00:00
62 lines
1.8 KiB
C#
62 lines
1.8 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; }
|
|
|
|
[JsonProperty("externalSourceListEnabled")]
|
|
public bool ExternalSourceListEnabled { 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; }
|
|
}
|
|
} |