using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayCommerceTransportOfflinepayVirtualcardSendModel Data Structure.
///
[Serializable]
public class AlipayCommerceTransportOfflinepayVirtualcardSendModel : AopObject
{
///
/// 虚拟卡信息同步动作
///
[JsonProperty("action")]
public string Action { get; set; }
///
/// 用户虚拟卡余额,单位元。
///
[JsonProperty("balance")]
public string Balance { get; set; }
///
/// hex格式表示的虚拟卡数据,卡数据将在虚拟卡二维码中透传。
///
[JsonProperty("card_data")]
public string CardData { get; set; }
///
/// 用户虚拟卡卡号
///
[JsonProperty("card_no")]
public string CardNo { get; set; }
///
/// 虚拟卡卡类型
///
[JsonProperty("card_type")]
public string CardType { get; set; }
///
/// 表示虚拟卡是否可用
///
[JsonProperty("disabled")]
public string Disabled { get; set; }
///
/// 卡状态不可用时,标示卡的具体不可用状态。 CARD_OVERDUE ---- 欠费,CARD_REVOKING ---- 退卡中
///
[JsonProperty("disabled_code")]
public string DisabledCode { get; set; }
///
/// 当虚拟卡不可用时,提示用户不可用原因。
///
[JsonProperty("disabled_tips")]
public string DisabledTips { get; set; }
///
/// json格式字符串,存放扩展信息。discount_type ---- 优惠标识
///
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
///
/// 虚拟卡最后更新时间 使用标准java时间格式
///
[JsonProperty("last_update_time")]
public string LastUpdateTime { get; set; }
///
/// 支付宝用户id
///
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}