using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniInnerbaseinfoCreateModel Data Structure. /// [Serializable] public class AlipayOpenMiniInnerbaseinfoCreateModel : AopObject { /// /// 小程序应用名称 /// [XmlElement("app_alias_name")] public string AppAliasName { get; set; } /// /// 小程序类目ID列表 /// [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_origin")] public string AppOrigin { get; set; } /// /// 小程序应用简介,一句话描述小程序功能 /// [XmlElement("app_slogan")] public string AppSlogan { get; set; } /// /// 小程序类型 普通小程序:TINYAPP_NORMAL /// [XmlElement("app_sub_type")] public string AppSubType { get; set; } /// /// 小程序类型,H5 or RN,区分于 app_sub_type /// [XmlElement("app_type")] public string AppType { get; set; } /// /// 多端类型 /// [XmlElement("client_type")] public string ClientType { get; set; } /// /// 租户编码,不同租户下的数据是隔离的 支付宝:alipay 淘宝:taobao /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 需要同步的小程序ID /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 新小程序前台类目,一级与二级、三级用下划线隔开,最多可以选四个类目,类目之间;隔开。使用后不再读取app_category_ids值,老前台类目将废弃 /// [XmlElement("mini_category_ids")] public string MiniCategoryIds { get; set; } /// /// 应用主体 /// [XmlElement("owner_entity")] public string OwnerEntity { get; set; } /// /// 应用来源 MAYI:蚂蚁域内应用 ALIBABA:阿里域内应用 /// [XmlElement("partner_domain")] public string PartnerDomain { get; set; } /// /// 小程序管理员虚拟 ID /// [XmlElement("pid")] public string Pid { get; set; } /// /// 客服邮箱 /// [XmlElement("service_mail")] public string ServiceMail { get; set; } /// /// 客服电话 /// [XmlElement("service_phone")] public string ServicePhone { get; set; } } }