NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniInnerappServi...

61 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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