using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Domain;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanProductUpdateRequest : IRequest<YouZanProductUpdateResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.item.incremental.update";
|
}
|
|
public string GetApiVersion()
|
{
|
return "1.0.1";
|
}
|
|
public IDictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("param", param);
|
return dic;
|
}
|
|
public YouZanProductUpdateReqDomain param { get; set; }
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public void Validate()
|
{
|
|
}
|
}
|
}
|