using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOpenMiniInnerappPluginservicePublishModel Data Structure. /// [Serializable] public class AlipayOpenMiniInnerappPluginservicePublishModel : AopObject { /// /// 功能类型,目前支持的有:1039支付, 1040会员, 1041基础, 1056资金, 1058信用, 1111口碑, 330120安全, 360101营销 /// [XmlArray("ability_type_list")] [XmlArrayItem("string")] public List AbilityTypeList { get; set; } /// /// 服务发布logo /// [XmlElement("app_logo")] public string AppLogo { get; set; } /// /// 业务来源 /// [XmlElement("app_origin")] public string AppOrigin { get; set; } /// /// 服务描述 /// [XmlElement("description")] public string Description { get; set; } /// /// 移动端详情,用于能力中心展示 /// [XmlElement("detail_for_client")] public string DetailForClient { get; set; } /// /// pc端详,用于能力中心展示 /// [XmlElement("detail_for_pc")] public string DetailForPc { get; set; } /// /// 插件id /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 可订购人群,1003个人, 1004企业,-1无限制 /// [XmlElement("sell_crowd")] public string SellCrowd { get; set; } /// /// 发布后是否展示,01展示(默认)、02隐藏 /// [XmlElement("show_type")] public string ShowType { get; set; } /// /// 服务标题 /// [XmlElement("title")] public string Title { get; set; } /// /// pc端url地址,不需要则为空 /// [XmlElement("visit_url_for_pc")] public string VisitUrlForPc { get; set; } } }