using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipaySocialAntiepSceneSendModel Data Structure.
///
[Serializable]
public class AlipaySocialAntiepSceneSendModel : AopObject
{
///
/// 行为业务参数,用于业务流处理时所需参数转换,map 的 json格式
///
[XmlElement("action_biz_info")]
public string ActionBizInfo { get; set; }
///
/// 行为幂等id,用于防止重复提交
///
[XmlElement("action_biz_no")]
public string ActionBizNo { get; set; }
///
/// 上报行为的code码,用于服务端取出对应的场景信息并处理对应的后续行为
///
[XmlElement("action_code")]
public string ActionCode { get; set; }
///
/// 行为发生的时间戳,单位是ms
///
[XmlElement("action_time")]
public long ActionTime { get; set; }
///
/// 请求类型,需传OPENAPI
///
[XmlElement("request_type")]
public string RequestType { get; set; }
///
/// 场景类型,新增需找开发者协定值
///
[XmlElement("scene_code")]
public string SceneCode { get; set; }
///
/// 请求来源
///
[XmlElement("source")]
public string Source { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}