43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayInsAutoUserPointReceiveModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayInsAutoUserPointReceiveModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 车险活动类型编码。 攒油:SAVE_OIL
|
||
/// </summary>
|
||
[XmlElement("auto_campaign_type")]
|
||
public string AutoCampaignType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 扩展参数。 BIZ_END_TIME:业务结束时间,值为时间戳
|
||
/// </summary>
|
||
[XmlElement("extend_info")]
|
||
public string ExtendInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号
|
||
/// </summary>
|
||
[XmlElement("out_biz_no")]
|
||
public string OutBizNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车险活动的接入场景。 例如,车险攒油活动的接入场景码。 高德导航:gaode_use
|
||
/// </summary>
|
||
[XmlElement("scene_type")]
|
||
public string SceneType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 蚂蚁统一会员ID
|
||
/// </summary>
|
||
[XmlElement("user_id")]
|
||
public string UserId { get; set; }
|
||
}
|
||
}
|