mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 21:06:02 +03:00
72cac6d6f0
* Multiversion sdk * Remove redundant code * More test coverage;
29 lines
835 B
C#
29 lines
835 B
C#
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());
|
|
}
|
|
}
|
|
}
|