using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayFundAuthOperationCancelResponse. /// public class AlipayFundAuthOperationCancelResponse : AopResponse { /// /// 本次撤销触发的资金动作 close:关闭冻结明细,无资金解冻 unfreeze:产生了资金解冻 /// [XmlElement("action")] public string Action { get; set; } /// /// 支付宝资金授权订单号。 /// [XmlElement("auth_no")] public string AuthNo { get; set; } /// /// 支付宝的冻结操作流水号。 /// [XmlElement("operation_id")] public string OperationId { get; set; } /// /// 商户的授权资金订单号。 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 商户的冻结操作流水号 。 /// [XmlElement("out_request_no")] public string OutRequestNo { get; set; } } }