using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobileCodeCreateResponse.
///
public class AlipayMobileCodeCreateResponse : AopResponse
{
///
/// 业务关联的id,如订单号,userId
///
[JsonProperty("biz_linked_id")]
public string BizLinkedId { get; set; }
///
/// 业务类型,类型产品名称
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 码值状态, init:初始 normal:正常 pause:暂停 stop:停止
///
[JsonProperty("code_status")]
public string CodeStatus { get; set; }
///
/// 发码接口传入的扩展参数,业务自定义,码平台不用理解。
///
[JsonProperty("context_str")]
public string ContextStr { get; set; }
///
/// 动态生成图片地址
///
[JsonProperty("dynamic_img_url")]
public string DynamicImgUrl { get; set; }
///
/// 编码失效时间(yyyy-MM-dd hh:mm:ss)
///
[JsonProperty("expire_date")]
public string ExpireDate { get; set; }
///
/// 如果是true,则扫一扫下发跳转地址直接取自BizLinkedId 否则,从路由信息里取跳转地址
///
[JsonProperty("is_direct")]
public string IsDirect { get; set; }
///
/// 备注信息字段
///
[JsonProperty("memo")]
public string Memo { get; set; }
///
/// 业务用到的码值
///
[JsonProperty("qr_code")]
public string QrCode { get; set; }
///
/// 原始码值
///
[JsonProperty("qr_token")]
public string QrToken { get; set; }
///
/// 发码来源,业务自定义
///
[JsonProperty("source_id")]
public string SourceId { get; set; }
///
/// 编码启动时间(yyy-MM-dd hh:mm:ss),为空表示立即启用
///
[JsonProperty("start_date")]
public string StartDate { get; set; }
///
/// 发码请求中带的支付宝用户id
///
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}