using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayInsSceneProductInquiryApplyModel Data Structure.
///
[Serializable]
public class AlipayInsSceneProductInquiryApplyModel : AopObject
{
///
/// 保险产品的投保人,当产品价格和投保人有关时候需传值
///
[XmlElement("applicant")]
public InsPerson Applicant { get; set; }
///
/// 投保业务参数,标准json格式支付串
///
[XmlElement("biz_data")]
public string BizData { get; set; }
///
/// 份数
///
[XmlElement("copies_count")]
public string CopiesCount { get; set; }
///
/// 保险被保人,产品价格和被保人相关时传值。
///
[XmlArray("insureds")]
[XmlArrayItem("ins_person")]
public List Insureds { get; set; }
///
/// 询价流水号,标识一次询价请求
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 险种保障期限,数字+"Y/M/D"结尾,非固定期限险种或多固定期限险种必填
///
[XmlElement("period")]
public string Period { get; set; }
///
/// 保险产品码,由保险产品小二分配
///
[XmlElement("prod_code")]
public string ProdCode { get; set; }
///
/// 投保来源渠道,由保险产品小二分配
///
[XmlElement("source")]
public string Source { get; set; }
///
/// 产品险种对应的保额(金额类型,单位为分,例如100000为1000元)。产品保额类型为金额时必传
///
[XmlElement("sum_insured")]
public long SumInsured { get; set; }
}
}