using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEbppPdeductBillPayStatusResponse. /// public class AlipayEbppPdeductBillPayStatusResponse : AopResponse { /// /// 支付宝协议流水 /// [JsonProperty("agreement_id")] public string AgreementId { get; set; } /// /// 支付宝流billNo /// [JsonProperty("order_no")] public string OrderNo { get; set; } /// /// 订单的结果码 /// [JsonProperty("order_result_code")] public string OrderResultCode { get; set; } /// /// 订单的结果描述 /// [JsonProperty("order_result_msg")] public string OrderResultMsg { get; set; } /// /// 外部订单流水 /// [JsonProperty("out_order_no")] public string OutOrderNo { get; set; } /// /// 支付宝订单支付状态。 0:未知状态。 1:支付成功。 2:支付失败。 /// [JsonProperty("status")] public string Status { get; set; } } }