using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InsClaim Data Structure.
///
[Serializable]
public class InsClaim : AopObject
{
///
/// 理赔因子;标准json 格式
///
[JsonProperty("biz_data")]
public string BizData { get; set; }
///
/// 实际赔付金额 ;单位分
///
[JsonProperty("claim_fee")]
public long ClaimFee { get; set; }
///
/// 赔案号
///
[JsonProperty("claim_no")]
public string ClaimNo { get; set; }
///
/// 赔付时间
///
[JsonProperty("claim_pay_time")]
public string ClaimPayTime { get; set; }
///
/// 赔案进度;根据更新时间倒序
///
[JsonProperty("claim_progress")]
public List ClaimProgress { get; set; }
///
/// 赔案状态.ACCEPTED:已受理;REJECTED:已拒赔;PAID:已赔付
///
[JsonProperty("claim_status")]
public string ClaimStatus { get; set; }
///
/// 商户生成的外部理赔请求单号
///
[JsonProperty("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 当状态是拒赔时给出拒赔原因
///
[JsonProperty("reject_reason")]
public string RejectReason { get; set; }
}
}