NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserPassGrouplistQuer...

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