using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Domain;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanPointIncreaseRequest : IRequest<YouZanPointIncreaseResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.crm.customer.points.increase";
|
}
|
|
public string GetApiVersion()
|
{
|
return "4.0.0";
|
}
|
|
public IDictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("params", paramsData);
|
return dic;
|
}
|
|
public YouZanPointIncreaseDomain paramsData { get; set; }
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public void Validate()
|
{
|
|
}
|
}
|
}
|