using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobilePublicQrcodeCreateResponse.
///
public class AlipayMobilePublicQrcodeCreateResponse : AopResponse
{
///
/// 返回结果码,如200,标识成功
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 图片地址
///
[JsonProperty("code_img")]
public string CodeImg { get; set; }
///
/// 码过期时间,单位:秒
///
[JsonProperty("expire_second")]
public long ExpireSecond { get; set; }
///
/// 结果吗描述信息
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}