2025-05-06 15:40:49 +08:00
|
|
|
using System;
|
|
|
|
|
2023-02-06 19:46:57 +08:00
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// <para>表示 [POST] /channels/ec/sharer/search_sharer 接口的响应。</para>
|
|
|
|
/// </summary>
|
2025-05-06 15:40:49 +08:00
|
|
|
[Obsolete("相关接口或字段于 2025-03-07 下线。")]
|
2023-02-06 19:46:57 +08:00
|
|
|
public class ChannelsECSharerSearchSharerResponse : WechatApiResponse
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 获取或设置分享员 OpenId。
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("openid")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("openid")]
|
|
|
|
public string OpenId { get; set; } = default!;
|
|
|
|
|
2024-04-29 20:09:35 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 获取或设置分享员 UnionId。
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("unionid")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("unionid")]
|
|
|
|
public string? UnionId { get; set; }
|
|
|
|
|
2023-02-06 19:46:57 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 获取或设置分享员昵称。
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("nickname")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("nickname")]
|
|
|
|
public string Nickname { get; set; } = default!;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 获取或设置分享员类型。
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("sharer_type")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("sharer_type")]
|
|
|
|
public int SharerType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 获取或设置绑定时间戳。
|
|
|
|
/// </summary>
|
|
|
|
[Newtonsoft.Json.JsonProperty("bind_time")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("bind_time")]
|
|
|
|
public long BindTimestamp { get; set; }
|
|
|
|
}
|
|
|
|
}
|