NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsUnderwriteClaimRep...

19 lines
545 B
C#
Raw Permalink 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.Domain
{
/// <summary>
/// AlipayInsUnderwriteClaimReportQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsUnderwriteClaimReportQueryModel : AopObject
{
/// <summary>
/// 理赔申请报案号通过理赔申请【alipay.ins.scene.claim.apply】接口的返回字段claim_report_no获取
/// </summary>
[XmlElement("claim_report_no")]
public string ClaimReportNo { get; set; }
}
}