NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEbppInvoiceApplyResul...

18 lines
697 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEbppInvoiceApplyResultSyncResponse.
/// </summary>
public class AlipayEbppInvoiceApplyResultSyncResponse : AopResponse
{
/// <summary>
/// 标注是否需要调用方重试。 当结果返回失败时code 不等于 10000 且 msg 不等于 SUCCESS 如果该字段返回true表明该失败的情况通过重试补偿可解决为false表明失败情况通过重试无法解决可以停止重试根据返回的错误码尝试解决。
/// </summary>
[XmlElement("retry_flag")]
public bool RetryFlag { get; set; }
}
}