mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 21:06:02 +03:00
49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Web.Script.Serialization;
|
|||
|
|
|||
|
namespace Retailcrm.Versions.V4
|
|||
|
{
|
|||
|
public partial class Client
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Price types
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public Response PriceTypes()
|
|||
|
{
|
|||
|
return Request.MakeRequest(
|
|||
|
"/reference/price-types",
|
|||
|
Request.MethodGet
|
|||
|
);
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Price type edit
|
|||
|
/// </summary>
|
|||
|
/// <param name="type"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public Response PriceTypesEdit(Dictionary<string, object> type)
|
|||
|
{
|
|||
|
if (!type.ContainsKey("code"))
|
|||
|
{
|
|||
|
throw new ArgumentException("Parameter `code` is missing");
|
|||
|
}
|
|||
|
|
|||
|
if (!type.ContainsKey("name"))
|
|||
|
{
|
|||
|
throw new ArgumentException("Parameter `name` is missing");
|
|||
|
}
|
|||
|
|
|||
|
return Request.MakeRequest(
|
|||
|
$"/reference/price-types/{type["code"].ToString()}/edit",
|
|||
|
Request.MethodPost,
|
|||
|
new Dictionary<string, object>
|
|||
|
{
|
|||
|
{ "priceType", new JavaScriptSerializer().Serialize(type) }
|
|||
|
}
|
|||
|
);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|