using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayInsSceneHealthGiftBatchqueryModel Data Structure. /// [Serializable] public class AlipayInsSceneHealthGiftBatchqueryModel : AopObject { /// /// 赠险业务标志 HEALTH_BEAN_SIMPLE_UPGRADE 免费医疗金、HEALTH_GUARDIAN_GOLD 守护金、HEALTH_DSDB_NEW_OUTPATIENT 多收多宝新门诊 /// [XmlArray("biz_type_list")] [XmlArrayItem("string")] public List BizTypeList { get; set; } /// /// 查询某渠道记录的起期,注意,只对health_send_flow_list、health_gain_flow_list字段生效 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// health_gift_batch_gain_sum_insured_list 健康险赠险待领取权益,目前包含待领取保额,准入 health_gift_batch_valid_gift_list 用户生效赠险查询结果 health_gift_batch_already_opened_list 健康险赠险险种是否已开通查询结果 health_gift_batch_my_sum_insured_list 健康险赠险用户总保额查询结果 health_send_flow_list 赠险发放流水列表 health_gain_flow_list 赠险领取流水列表 gained_sum_insured_by_source 赠险从某个source领取的保额 /// [XmlArray("operation_list")] [XmlArrayItem("string")] public List OperationList { get; set; } /// /// 赠险产品组类型。 赠险通用产品组 COMMON_GIFT_INSURANCE_PRODUCT_GROUP、 C端赠险产品组 CUSTOMER_GIFT_INSURANCE_PRODUCT_GROUP、 B端赠险产品组 BUSINESS_GIFT_INSURANCE_PRODUCT_GROUP、 相互保赠险产品组 XHB_GIFT_INSURANCE_PRODUCT_GROUP /// [XmlArray("product_group_biz_type_list")] [XmlArrayItem("string")] public List ProductGroupBizTypeList { get; set; } /// /// 来源 /// [XmlElement("source")] public string Source { get; set; } /// /// 查询某渠道记录的起期,注意,只对health_send_flow_list、health_gain_flow_list字段生效 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }