You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
882 B
C#

9 months ago
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; }
}
}