using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniInnerappCreateModel Data Structure. /// [Serializable] public class AlipayOpenMiniInnerappCreateModel : AopObject { /// /// 小程序类目,二级类目与三级类目下划线隔开,最多可以选择3个类目,类目之间以;隔开 /// [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; } /// /// 小程序logo /// [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; } /// /// 应用子类型 /// [XmlElement("app_sub_type")] public string AppSubType { get; set; } /// /// 应用类型 /// [XmlElement("app_type")] public string AppType { get; set; } /// /// 三方应用ID,仅在创建模板小程序时需要传入 /// [XmlElement("isv_app_id")] public string IsvAppId { get; set; } /// /// 小程序ID,仅特殊场景使用,普通业务方无需关注该参数 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 新小程序前台类目,格式为 第一个一级类目_第一个二级类目;第二个一级类目_第二个二级类目_第二个三级类目,详细类目可以通过 https://docs.open.alipay.com/api_49/alipay.open.mini.category.query接口查询mini_category_list。使用后不再读取app_category_ids值,老前台类目将废弃 /// [XmlElement("mini_category_ids")] public string MiniCategoryIds { get; set; } /// /// 创建的小程序所属的PID /// [XmlElement("pid")] public string Pid { get; set; } /// /// 邮箱,与客服电话二选一 /// [XmlElement("service_email")] public string ServiceEmail { get; set; } /// /// 客服电话,插件不需要 /// [XmlElement("service_phone")] public string ServicePhone { get; set; } } }