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