using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Domain { public class AlibabaGetRefundReasonListDomain { public string code { get; set; } public string message { get; set; } public bool success { get; set; } public AlibabaGetRefundReasonListDomainResult result { get; set; } } public class AlibabaGetRefundReasonListDomainResult { public List reasons { get; set; } } public class AlibabaGetRefundReasonListDomainResultReasons { /// /// 原因id /// public long id { get; set; } /// /// 原因 /// public string name { get; set; } /// /// 凭证是否必须上传 /// public bool needVoucher { get; set; } /// /// 是否支持退运费 /// public bool noRefundCarriage { get; set; } /// /// 提示 /// public string tip { get; set; } } }