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