36 lines
882 B
C#
36 lines
882 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayMobilePublicQrcodeCreateResponse.
|
||
/// </summary>
|
||
public class AlipayMobilePublicQrcodeCreateResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 返回结果码,如200,标识成功
|
||
/// </summary>
|
||
[XmlElement("code")]
|
||
public string Code { get; set; }
|
||
|
||
/// <summary>
|
||
/// 图片地址
|
||
/// </summary>
|
||
[XmlElement("code_img")]
|
||
public string CodeImg { get; set; }
|
||
|
||
/// <summary>
|
||
/// 码过期时间,单位:秒
|
||
/// </summary>
|
||
[XmlElement("expire_second")]
|
||
public long ExpireSecond { get; set; }
|
||
|
||
/// <summary>
|
||
/// 结果吗描述信息
|
||
/// </summary>
|
||
[XmlElement("msg")]
|
||
public string Msg { get; set; }
|
||
}
|
||
}
|