mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
47 lines
1.6 KiB
C#
47 lines
1.6 KiB
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /channels/ec/sharer/search_sharer 接口的响应。</para>
|
|
/// </summary>
|
|
[Obsolete("相关接口或字段于 2025-03-07 下线。")]
|
|
public class ChannelsECSharerSearchSharerResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置分享员 OpenId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("openid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("openid")]
|
|
public string OpenId { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置分享员 UnionId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("unionid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("unionid")]
|
|
public string? UnionId { get; set; }
|
|
|
|
/// <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; }
|
|
}
|
|
}
|