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