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