mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 12:56:03 +03:00
18 lines
377 B
C#
18 lines
377 B
C#
|
namespace Retailcrm.Versions.V3
|
|||
|
{
|
|||
|
public partial class Client
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Update statistic
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public Response StatisticUpdate()
|
|||
|
{
|
|||
|
return Request.MakeRequest(
|
|||
|
"/statistic/update",
|
|||
|
Request.MethodGet
|
|||
|
);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|