using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayInsSceneApplicationOrderapplyCreateModel Data Structure. /// [Serializable] public class AlipayInsSceneApplicationOrderapplyCreateModel : AopObject { /// /// 业务字段 /// [XmlElement("biz_data")] public string BizData { get; set; } /// /// 赔付政策类型 /// [XmlArray("claim_strategy_list")] [XmlArrayItem("claim_strategy")] public List ClaimStrategyList { get; set; } /// /// havana_id /// [XmlElement("havana_id")] public string HavanaId { get; set; } /// /// 订单信息 /// [XmlElement("order_info")] public InsOrderInfo OrderInfo { get; set; } /// /// 外部业务号(幂等单号) /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 保单号 /// [XmlElement("policy_no")] public string PolicyNo { get; set; } /// /// 产品号 /// [XmlElement("prod_code")] public string ProdCode { get; set; } } }