NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsSceneProductInquir...

69 lines
2.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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