DotNetCore.SKIT.FlurlHttpCl.../src/SKIT.FlurlHttpClient.Wechat.Api/Models/Card/SubMerchant/CardSubMerchantBatchGetRequest.cs

31 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /card/submerchant/batchget 接口的请求。</para>
/// </summary>
public class CardSubMerchantBatchGetRequest : WechatApiRequest, IMapResponse<CardSubMerchantBatchGetRequest, CardSubMerchantBatchGetResponse>
{
/// <summary>
/// 获取或设置起始的子商户 ID。
/// <para>默认值0</para>
/// </summary>
[Newtonsoft.Json.JsonProperty("begin_id")]
[System.Text.Json.Serialization.JsonPropertyName("begin_id")]
public string NextMerchantId { get; set; } = "0";
/// <summary>
/// 获取或设置分页每页数量。
/// </summary>
[Newtonsoft.Json.JsonProperty("limit")]
[System.Text.Json.Serialization.JsonPropertyName("limit")]
public int Limit { get; set; } = 10;
/// <summary>
/// 获取或设置指定子商户状态。
/// </summary>
[Newtonsoft.Json.JsonProperty("status")]
[System.Text.Json.Serialization.JsonPropertyName("status")]
public string? Status { get; set; }
}
}