using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsSceneApplicationBatchqueryModel Data Structure. /// [Serializable] public class AlipayInsSceneApplicationBatchqueryModel : AopObject { /// /// 投保人 /// [JsonProperty("applicant")] public InsPerson Applicant { get; set; } /// /// 商户生成的外部投保业务号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 渠道来源 /// [JsonProperty("source")] public string Source { get; set; } } }