using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsAutoUserPointQueryModel Data Structure.
///
[Serializable]
public class AlipayInsAutoUserPointQueryModel : AopObject
{
///
/// 车险活动类型编码。 攒油活动:SAVE_OIL
///
[XmlElement("auto_campaign_type")]
public string AutoCampaignType { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}