using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Domain;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanItemAddRequest : IRequest<YouZanItemAddResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.item.add";
|
}
|
|
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;
|
//YouZanDictionary Params = new YouZanDictionary
|
//{
|
// {"param", this.param}
|
//};
|
//return Params;
|
}
|
|
|
public YouZanItemAddDomain param { get; set; }
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public void Validate()
|
{
|
|
}
|
}
|
}
|