using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniInnerbaseinfoModifyModel Data Structure. /// [Serializable] public class AlipayOpenMiniInnerbaseinfoModifyModel : AopObject { /// /// 类目列表 /// [XmlElement("app_category_ids")] public string AppCategoryIds { get; set; } /// /// 小程序应用描述,20-200个字 /// [XmlElement("app_desc")] public string AppDesc { get; set; } /// /// 小程序应用英文名称 /// [XmlElement("app_english_name")] public string AppEnglishName { get; set; } /// /// 手淘开放平台鉴权key,支付宝不需要 /// [XmlElement("app_key")] public string AppKey { get; set; } /// /// 小程序logo图标,建议上传像素为180*180 /// [XmlElement("app_logo")] public string AppLogo { get; set; } /// /// 小程序应用名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 小程序应用简介,一句话描述小程序功能 /// [XmlElement("app_slogan")] public string AppSlogan { get; set; } /// /// 租户code,alipay 或是 taobao /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 小程序Id /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 小程序客服邮箱 /// [XmlElement("service_email")] public string ServiceEmail { get; set; } /// /// 小程序客服电话 /// [XmlElement("service_phone")] public string ServicePhone { get; set; } } }