using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayInsAutoUserMsgSendModel Data Structure.
///
[Serializable]
public class AlipayInsAutoUserMsgSendModel : AopObject
{
///
/// 业务发生时间
///
[XmlElement("biz_time")]
public string BizTime { get; set; }
///
/// 扩展信息。因为车险触达用户的渠道有多种。不同渠道所需的扩展信息不同,开发前需和车险技术同学确认好。
///
[XmlArray("extend_info")]
[XmlArrayItem("auto_mkt_touch_extend_info_entry")]
public List ExtendInfo { get; set; }
///
/// 外部业务号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 场景码。【车险技术分配的场景码】
///
[XmlElement("scene_code")]
public string SceneCode { get; set; }
///
/// 来源
///
[XmlElement("source")]
public string Source { get; set; }
///
/// 模版中的可变字段的值,根据不同场景,所需要的字段都不一样。要和车险业务以及技术确认好。
///
[XmlArray("template_content_info")]
[XmlArrayItem("auto_mkt_touch_extend_info_entry")]
public List TemplateContentInfo { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}