api-client-dotnet/Retailcrm/Versions/V5/Telephony.cs

29 lines
835 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace Retailcrm.Versions.V5
{
public partial class Client
{
/// <summary>
/// Get telephony settings
/// </summary>
/// <param name="code"></param>
/// <returns></returns>
public new Response TelephonySettingsGet(string code)
{
throw new ArgumentException("This method is unavailable in API V5", code);
}
/// <summary>
/// Edit telephony settings
/// </summary>
/// <param name="configuration"></param>
/// <returns></returns>
public new Response TelephonySettingsEdit(Dictionary<string, object> configuration)
{
throw new ArgumentException("This method is unavailable in API V5", configuration.ToString());
}
}
}