103 lines
3.2 KiB
C#
103 lines
3.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenMiniInnerappCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenMiniInnerappCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 小程序类目,二级类目与三级类目下划线隔开,最多可以选择3个类目,类目之间以;隔开
|
||
/// </summary>
|
||
[XmlElement("app_category_ids")]
|
||
public string AppCategoryIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序描述,20-200个字符
|
||
/// </summary>
|
||
[XmlElement("app_desc")]
|
||
public string AppDesc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序英文名称,插件不填
|
||
/// </summary>
|
||
[XmlElement("app_english_name")]
|
||
public string AppEnglishName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序logo
|
||
/// </summary>
|
||
[XmlElement("app_logo")]
|
||
public string AppLogo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序名称
|
||
/// </summary>
|
||
[XmlElement("app_name")]
|
||
public string AppName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 来源的业务方,接入文档中申请的业务来源
|
||
/// </summary>
|
||
[XmlElement("app_origin")]
|
||
public string AppOrigin { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序简介,在搜索透出,插件不需要填
|
||
/// </summary>
|
||
[XmlElement("app_slogan")]
|
||
public string AppSlogan { get; set; }
|
||
|
||
/// <summary>
|
||
/// 应用子类型
|
||
/// </summary>
|
||
[XmlElement("app_sub_type")]
|
||
public string AppSubType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 应用类型
|
||
/// </summary>
|
||
[XmlElement("app_type")]
|
||
public string AppType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 三方应用ID,仅在创建模板小程序时需要传入
|
||
/// </summary>
|
||
[XmlElement("isv_app_id")]
|
||
public string IsvAppId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序ID,仅特殊场景使用,普通业务方无需关注该参数
|
||
/// </summary>
|
||
[XmlElement("mini_app_id")]
|
||
public string MiniAppId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 新小程序前台类目,格式为 第一个一级类目_第一个二级类目;第二个一级类目_第二个二级类目_第二个三级类目,详细类目可以通过 https://docs.open.alipay.com/api_49/alipay.open.mini.category.query接口查询mini_category_list。使用后不再读取app_category_ids值,老前台类目将废弃
|
||
/// </summary>
|
||
[XmlElement("mini_category_ids")]
|
||
public string MiniCategoryIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建的小程序所属的PID
|
||
/// </summary>
|
||
[XmlElement("pid")]
|
||
public string Pid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 邮箱,与客服电话二选一
|
||
/// </summary>
|
||
[XmlElement("service_email")]
|
||
public string ServiceEmail { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客服电话,插件不需要
|
||
/// </summary>
|
||
[XmlElement("service_phone")]
|
||
public string ServicePhone { get; set; }
|
||
}
|
||
}
|