NewGaoKaoApi/PaymentSDK/AliPay/Domain/AppVersionInfo.cs

43 lines
1.3 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.Domain
{
/// <summary>
/// AppVersionInfo Data Structure.
/// </summary>
[Serializable]
public class AppVersionInfo : AopObject
{
/// <summary>
/// 版本号一般为x.y.x格式其中x、y、z都是数字
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 端信息,默认为支付宝端
/// </summary>
[XmlElement("bundle_id")]
public string BundleId { get; set; }
/// <summary>
/// 版本创建时间,精确到秒
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 版本描述,介绍此版本的主要变更和功能
/// </summary>
[XmlElement("version_description")]
public string VersionDescription { get; set; }
/// <summary>
/// 版本状态可选值为INIT: 开发中, AUDITING: 审核中, AUDIT_REJECT: 审核驳回, WAIT_RELEASE: 待上架, GRAY: 灰度中, RELEASE: 已上架, OFFLINE: 已下架, AUDIT_OFFLINE: 被强制下架;
/// </summary>
[XmlElement("version_status")]
public string VersionStatus { get; set; }
}
}