NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsAutoPointReceiveQu...

31 lines
872 B
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>
/// AlipayInsAutoPointReceiveQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsAutoPointReceiveQueryModel : AopObject
{
/// <summary>
/// 车险活动类型编码。 攒油活动SAVE_OIL
/// </summary>
[XmlElement("auto_campaign_type")]
public string AutoCampaignType { 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; }
}
}