using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MiniAppBaseInfoQueryResponse Data Structure. /// [Serializable] public class MiniAppBaseInfoQueryResponse : AopObject { /// /// 小程序应用描述 /// [XmlElement("app_desc")] public string AppDesc { get; set; } /// /// tinyapp /// [XmlElement("app_english_name")] public string AppEnglishName { get; set; } /// /// 手淘开放平台鉴权key,支付宝不需要 /// [XmlElement("app_key")] public string AppKey { get; set; } /// /// 小程序应用logo图标 /// [XmlElement("app_logo")] public string AppLogo { get; set; } /// /// 小程序名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 小程序简介 /// [XmlElement("app_slogan")] public string AppSlogan { get; set; } /// /// 小程序类型,TINYAPP_TEMPLATE,TINYAPP_NORMAL,TINYAPP_PLUGIN /// [XmlElement("app_sub_type")] public string AppSubType { get; set; } /// /// 小程序所属主体信息 /// [XmlElement("dev_id")] public string DevId { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 小程序id /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 应用创建来源,alipay = 支付宝,taobao = 淘宝 /// [XmlElement("origin")] public string Origin { get; set; } /// /// 1:表示上线状态 0:初始化状态 -1 下架状态 /// [XmlElement("status")] public string Status { get; set; } } }