using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// TmallDeviceTradePrecreateResponse.
///
public class TmallDeviceTradePrecreateResponse : TopResponse
{
///
/// 链接有效结束时间
///
[XmlElement("life_end")]
public string LifeEnd { get; set; }
///
/// 链接有效起始时间
///
[XmlElement("life_start")]
public string LifeStart { get; set; }
///
/// 链接二维码图片
///
[XmlElement("qr_code")]
public string QrCode { get; set; }
///
/// 短链接
///
[XmlElement("short_url")]
public string ShortUrl { get; set; }
}
}