24 lines
689 B
C#
24 lines
689 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenMiniExperienceQueryResponse.
|
||
/// </summary>
|
||
public class AlipayOpenMiniExperienceQueryResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 小程序体验版二维码地址
|
||
/// </summary>
|
||
[XmlElement("exp_qr_code_url")]
|
||
public string ExpQrCodeUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 体验版打包状态,expVersionPackged-体验版打包成功,expVersionPackaging-体验版打包中,notExpVersion-非体验版
|
||
/// </summary>
|
||
[XmlElement("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
}
|