using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsUnderwriteClaimReportQueryModel Data Structure.
///
[Serializable]
public class AlipayInsUnderwriteClaimReportQueryModel : AopObject
{
///
/// 理赔申请报案号,通过理赔申请【alipay.ins.scene.claim.apply】接口的返回字段claim_report_no获取
///
[JsonProperty("claim_report_no")]
public string ClaimReportNo { get; set; }
}
}