using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// ZhimaMerchantOrderRentCompleteResponse. /// public class ZhimaMerchantOrderRentCompleteResponse : AopResponse { /// /// 资金流水号,用于商户与支付宝进行对账 /// [JsonProperty("alipay_fund_order_no")] public string AlipayFundOrderNo { get; set; } /// /// 信用借还的订单号 /// [JsonProperty("order_no")] public string OrderNo { get; set; } /// /// 借用人支付宝userId. /// [JsonProperty("user_id")] public string UserId { get; set; } } }