using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanReturnGoodsAgreeRequest : IRequest<YouZanReturnGoodsAgreeResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.trade.returngoods.agree";
|
}
|
|
public string GetApiVersion()
|
{
|
return "3.0.1";
|
}
|
|
public IDictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("version", version);
|
dic.Add("refund_id", refund_id);
|
dic.Add("name", name);
|
dic.Add("mobile", mobile);
|
dic.Add("address", address);
|
return dic;
|
}
|
/// <summary>
|
/// 退款版本号
|
/// </summary>
|
public long version { get; set; }
|
/// <summary>
|
/// 维权ID(售后单编号)
|
/// </summary>
|
public string refund_id { get; set; }
|
|
/// <summary>
|
/// 收货人
|
/// </summary>
|
public string name { get; set; }
|
|
/// <summary>
|
/// 收货手机号
|
/// </summary>
|
public string mobile { get; set; }
|
|
/// <summary>
|
/// 退货地址
|
/// </summary>
|
public string address { get; set; }
|
|
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public void Validate()
|
{
|
|
}
|
}
|
}
|