mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-17 21:56:26 +08:00
25 lines
931 B
C#
25 lines
931 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /goldplan/merchants/open-advertising-show 接口的请求。</para>
|
|
/// </summary>
|
|
public class OpenGoldPlanAdvertisingShowRequest : WechatTenpayRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置子商户号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_mchid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_mchid")]
|
|
public string SubMerchantId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置同业过滤标签值列表。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("advertising_industry_filters")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("advertising_industry_filters")]
|
|
public IList<string>? AdvertisingIndustryFilterList { get; set; }
|
|
}
|
|
}
|