using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPcreditHuabeiAuthSettleApplyResponse. /// public class AlipayPcreditHuabeiAuthSettleApplyResponse : AopResponse { /// /// 根据商户传入的轻会员协议结算周期内累计消费数据与支付宝端轻会员协议结算周期内消费数据比对之后,若数据不一致,则会返回对应的异常数据比对结果。 /// [XmlElement("fail_reason")] public string FailReason { get; set; } /// /// 商户本次操作的请求流水号,用于标示请求流水的唯一性,不能包含除中文、英文、数字以外的字符,需要保证在商户端不重复。 /// [XmlElement("out_request_no")] public string OutRequestNo { get; set; } } }