using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniInnerappServiceQueryModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniInnerappServiceQueryModel : AopObject
{
///
/// 业务来源,新接入方需要向支付宝申请专用来源,否则不予接入。https://yuque.antfin-inc.com/tinyapp-all/qddncu/bidushixiang
///
[XmlElement("app_origin")]
public string AppOrigin { get; set; }
///
/// 小程序应用子类型
///
[XmlElement("app_sub_type")]
public string AppSubType { get; set; }
///
/// 是否需要展示offline状态插件,不传默认为false(不展示)
///
[XmlElement("include_offline")]
public bool IncludeOffline { get; set; }
///
/// 关键词
///
[XmlElement("keyword")]
public string Keyword { get; set; }
///
/// 插件id或模板id
///
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
///
/// 页码,默认第一页
///
[XmlElement("page_num")]
public string PageNum { get; set; }
///
/// 分页数,默认每页10个
///
[XmlElement("page_size")]
public string PageSize { get; set; }
///
/// 是否在服务市场透出,SHOW展示、HIDE隐藏
///
[XmlElement("show_type")]
public string ShowType { get; set; }
}
}