NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOpenMiniVersionBuildQ...

36 lines
1.1 KiB
C#
Raw Permalink 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>
/// AlipayOpenMiniVersionBuildQueryResponse.
/// </summary>
public class AlipayOpenMiniVersionBuildQueryResponse : AopResponse
{
/// <summary>
/// 构建的状态0-构建排队中1-正在构建2-构建成功3-构建失败5-构建超时
/// </summary>
[XmlElement("build_status")]
public string BuildStatus { get; set; }
/// <summary>
/// 创建版本的状态0-构建排队中1-正在构建2-构建成功3-构建失败5-构建超时6-版本创建成功
/// </summary>
[XmlElement("create_status")]
public string CreateStatus { get; set; }
/// <summary>
/// 是否需要轮询
/// </summary>
[XmlElement("need_rotation")]
public string NeedRotation { get; set; }
/// <summary>
/// 是否创建版本
/// </summary>
[XmlElement("version_created")]
public string VersionCreated { get; set; }
}
}