using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserPassGrouplistQueryModel Data Structure.
///
[Serializable]
public class AlipayUserPassGrouplistQueryModel : AopObject
{
///
/// 城市编码,国标码,如果need_shopinfo=true,必须传值
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 卡券分组标识,当前值:card(卡)、voucher(券)、ticket(票)、cert(证件)
///
[XmlElement("group_type")]
public string GroupType { get; set; }
///
/// 是否需要店铺信息,true表需要,false或空表不需要
///
[XmlElement("need_shopinfo")]
public bool NeedShopinfo { get; set; }
///
/// 页码
///
[XmlElement("page_num")]
public long PageNum { get; set; }
///
/// 页大小
///
[XmlElement("page_size")]
public long PageSize { get; set; }
///
/// 商户和支付宝交互时,用于代表支付宝分配给商户ID
///
[XmlElement("partner_id")]
public string PartnerId { get; set; }
///
/// pass有效状态: CURRENT:当前的, PAST:失效的
///
[XmlElement("time_status")]
public string TimeStatus { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}