api-client-dotnet/Retailcrm/Versions/V5/Delivery.cs
Alex Lushpai 72cac6d6f0
Multiversion client (#6)
* Multiversion sdk
* Remove redundant code
* More test coverage;
2017-10-30 13:51:45 +03:00

29 lines
806 B
C#

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