NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsAutoUserPointRecei...

43 lines
1.3 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>
/// 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; }
}
}