NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingToolPromocom...

55 lines
2.1 KiB
C#
Raw Permalink 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>
/// AlipayMarketingToolPromocommoptOpeneventSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingToolPromocommoptOpeneventSendModel : AopObject
{
/// <summary>
/// 外部事件发生时间必须是yyyy-MM-dd HH:mm:ss格式
/// </summary>
[XmlElement("biz_time")]
public string BizTime { get; set; }
/// <summary>
/// 唯一事件编码用来区分不同的事件类型。事件类型是给定的当前事件类型只有PARKING停车场事件一种
/// </summary>
[XmlElement("event_code")]
public string EventCode { get; set; }
/// <summary>
/// 每一个事件码对应的扩展信息是Map<String,String>的类型JSON格式化的字符串。 事件类型为PARKING的KEY如下 parking_lot_id停车场ID必填 action IN进场、OUT 出场(必填) content_id内容ID必填
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 事件发生的纬度信息。经度信息和纬度信息必须同时存在,要么都填,要么都不填。
/// </summary>
[XmlElement("latitude")]
public long Latitude { get; set; }
/// <summary>
/// 事件发生的经度信息。经度信息和纬度信息必须同时存在,要么都填,要么都不填。
/// </summary>
[XmlElement("longitude")]
public long Longitude { get; set; }
/// <summary>
/// 事件唯一编号用来做幂等控制。每一次用户在商户所发生的事件out_biz_no都不能一样。比如用户每次进入停车场、离开停车场的out_biz_no不能一样。
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 支付宝用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}