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