using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniInnerbaseinfoPrecreateModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniInnerbaseinfoPrecreateModel : AopObject
{
///
/// 小程序类目ID列表
///
[XmlElement("app_category_ids")]
public string AppCategoryIds { get; set; }
///
/// 小程序应用描述
///
[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; }
///
/// 应用创建方,接入时请联系minicenter owner添加
///
[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; }
///
/// 新小程序前台类目,一级与二级、三级用下划线隔开,最多可以选四个类目,类目之间;隔开。使用后不再读取app_category_ids值,老前台类目将废弃
///
[XmlElement("mini_category_ids")]
public string MiniCategoryIds { get; set; }
///
/// 小程序业务主体
///
[XmlElement("owner_entity")]
public string OwnerEntity { get; set; }
///
/// 接入方所属域,接入前请联系系统owner提供 MAYI:蚂蚁域内应用 ALIBABA:阿里域内应用
///
[XmlElement("partner_domain")]
public string PartnerDomain { get; set; }
///
/// 小程序主账户ID
///
[XmlElement("pid")]
public string Pid { get; set; }
///
/// 小程序客服电话
///
[XmlElement("service_phone")]
public string ServicePhone { get; set; }
}
}