using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanReturnOrderGetRequest : IRequest<YouZanReturnOrderGetResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.retail.open.returnorder.get";
|
}
|
|
public string GetApiVersion()
|
{
|
return "3.0.0";
|
}
|
|
public IDictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("return_order_no", return_order_no);
|
return dic;
|
}
|
|
public string return_order_no { get; set; }
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public void Validate()
|
{
|
}
|
}
|
}
|