NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppAppcontentInte...

57 lines
1.6 KiB
C#
Raw Permalink 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenAppAppcontentInternalQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppAppcontentInternalQueryModel : AopObject
{
/// <summary>
/// 当前页码
/// </summary>
[XmlElement("page_num")]
public string PageNum { get; set; }
/// <summary>
/// 分页条数最大20
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 商户PID
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// 查询模式 QUERY_MINIAPP_BY_PID: 根据PID查询小程序服务支持分页 QUERY_FUNCTION_BY_APPID: 根据APPID查询功能服务不支持分页 QUERY_FUNCTION_BY_SERVICE_CODES: 根据服务编码批量查询功能服务,不支持分页
/// </summary>
[XmlElement("query_mode")]
public string QueryMode { get; set; }
/// <summary>
/// appid
/// </summary>
[XmlElement("ref_app_id")]
public string RefAppId { get; set; }
/// <summary>
/// 请求方系统名称
/// </summary>
[XmlElement("request_system")]
public string RequestSystem { get; set; }
/// <summary>
/// 服务编码列表单次最多10个
/// </summary>
[XmlArray("service_code_list")]
[XmlArrayItem("string")]
public List<string> ServiceCodeList { get; set; }
}
}