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