using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniDeveloppackageQueryModel Data Structure. /// [Serializable] public class AlipayOpenMiniDeveloppackageQueryModel : AopObject { /// /// 一个端的标识,用于区分不同的客户端,每接入一个客户端,都需要向小程序应用中心申请bundelId入驻 /// [XmlElement("bundle_id")] public string BundleId { get; set; } /// /// 部署版本号,一个应用、租户、端在应用中心唯一的一条发布记录版本号。 /// [XmlElement("deploy_version")] public string DeployVersion { get; set; } /// /// 开发者标识的版本,这个版本号和deploy_version是二选一。 /// [XmlElement("developer_version")] public string DeveloperVersion { get; set; } /// /// 租户类型,由应用中心分配 /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 小程序ID /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 拉包协议版本 /// [XmlElement("protocol")] public string Protocol { get; set; } /// /// 类型,目前分为“DEBUG(调试版)、TRIAL(试用版)” /// [XmlElement("scene")] public string Scene { get; set; } /// /// 用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }