mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 04:46:02 +03:00
72cac6d6f0
* Multiversion sdk * Remove redundant code * More test coverage;
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
|
|
);
|
|
}
|
|
}
|
|
}
|