using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanTradeDetailGetRequest : IRequest<YouZanTradeDetailGetResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.trade.get";
|
}
|
public string GetApiVersion()
|
{
|
return "4.0.2";
|
}
|
public IDictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("tid", tid);
|
return dic;
|
}
|
|
public void Validate()
|
{
|
|
}
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public string tid { get; set; }
|
}
|
}
|