using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayPcreditHuabeiAuthRefundApplyResponse.
///
public class AlipayPcreditHuabeiAuthRefundApplyResponse : AopResponse
{
///
/// 授权支付单ID
///
[XmlElement("auth_opt_id")]
public string AuthOptId { get; set; }
///
/// 退款操作错误原因描述
///
[XmlElement("fail_reason")]
public string FailReason { get; set; }
///
/// 外部请求号
///
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 是否可重试
///
[XmlElement("retry")]
public bool Retry { get; set; }
}
}