using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniMiniappHistoryQueryModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniMiniappHistoryQueryModel : AopObject
{
///
/// 管控的令牌
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 请求的列表长度
///
[XmlElement("size")]
public string Size { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}