using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniInnerversionSubstatusModifyModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniInnerversionSubstatusModifyModel : AopObject
{
///
/// 小程序开发版本
///
[XmlElement("app_version")]
public string AppVersion { get; set; }
///
/// 端标识 淘宝:com.taobao.app 支付宝:com.alipay.alipaywallet
///
[XmlElement("bundle_id")]
public string BundleId { get; set; }
///
/// 租户编码
///
[XmlElement("inst_code")]
public string InstCode { get; set; }
///
/// 小程序ID
///
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
///
/// 子状态
///
[XmlElement("sub_status")]
public string SubStatus { get; set; }
}
}