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