2022-12-06 21:03:35 +08:00
|
|
|
using System.Collections.Generic;
|
2021-06-12 18:17:06 +08:00
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Ads.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [GET] /adcreatives/get 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AdCreativesGetRequest : WechatAdsRequest
|
|
|
|
|
{
|
2022-12-06 21:03:35 +08:00
|
|
|
public static class Types
|
|
|
|
|
{
|
|
|
|
|
public class Filter : Abstractions.CommonFilter
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-12 18:17:06 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置广告创意 ID。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public long? AdCreativeId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置过滤条件。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
2022-12-06 21:03:35 +08:00
|
|
|
public IList<Types.Filter>? Filters { get; set; }
|
2021-06-12 18:17:06 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置页大小。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public int? PageSize { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置页码。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public int? Page { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|