using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceTransportOfflinepayVirtualcardBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayCommerceTransportOfflinepayVirtualcardBatchqueryModel : AopObject
{
///
/// 卡号。和卡类型一起,唯一确定一张卡。为空时将返回该用户该卡类型下的所有卡。
///
[XmlElement("card_no")]
public string CardNo { get; set; }
///
/// 卡类型。每种虚拟卡都有对应的卡类型,该值由支付宝分配给商户。
///
[XmlElement("card_type")]
public string CardType { get; set; }
///
/// 是否返回包含已删除卡片 false:不返回已删除卡片,默认值; true:返回已删除卡片
///
[XmlElement("include_deleted")]
public bool IncludeDeleted { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}