using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniDeploypackageQueryModel Data Structure. /// [Serializable] public class AlipayOpenMiniDeploypackageQueryModel : AopObject { /// /// 端标识 /// [XmlElement("bundle_id")] public string BundleId { get; set; } /// /// 客户端层面的渠道:CHANNEL_OFFICIAL 正式包 CHANNEL_RC 灰度包 /// [XmlElement("channel")] public string Channel { get; set; } /// /// 客户端版本 /// [XmlElement("client")] public string Client { get; set; } /// /// 设备号 /// [XmlElement("diu")] public string Diu { get; set; } /// /// 环境:prepub 预发、线上 production) /// [XmlElement("env")] public string Env { get; set; } /// /// 本地已存在的包信息 /// [XmlElement("existed")] public string Existed { get; set; } /// /// 灰度规则 /// [XmlElement("gray_rules")] public string GrayRules { get; set; } /// /// 只在应用应用互保,本地应用版本信息 /// [XmlElement("local_app_info")] public string LocalAppInfo { get; set; } /// /// 平台标识 /// [XmlElement("platform")] public string Platform { get; set; } /// /// 是否开启互保 /// [XmlElement("prefer_local")] public string PreferLocal { get; set; } /// /// 协议版本号 /// [XmlElement("protocol")] public string Protocol { get; set; } /// /// 拉包请求的数据 /// [XmlElement("query")] public string Query { get; set; } /// /// 请求同步/异步标识 /// [XmlElement("req_mode")] public string ReqMode { get; set; } /// /// 客户端sdk版本号,一般输出给多端使用 /// [XmlElement("sdk")] public string Sdk { get; set; } /// /// 是否开启强大的RPC功能 /// [XmlElement("stable_rpc")] public string StableRpc { get; set; } /// /// 系统版本号 /// [XmlElement("system")] public string System { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }