using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsScenePolicyEndorseApplyModel Data Structure.
///
[Serializable]
public class AlipayInsScenePolicyEndorseApplyModel : AopObject
{
///
/// 批单项列表
///
[JsonProperty("endorse_items")]
public List EndorseItems { get; set; }
///
/// 商户生成的批改请求单号【幂等字段】
///
[JsonProperty("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 保单凭证号;蚂蚁保险平台生成的保单凭证号,用户可以通过此单号去保险公司查询保单信息.
///
[JsonProperty("policy_no")]
public string PolicyNo { get; set; }
///
/// 批单来源
///
[JsonProperty("source")]
public string Source { get; set; }
}
}