NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialAntiepSceneSend...

61 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}