NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOpenMiniExperienceQue...

24 lines
689 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}