using System;
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
///
/// 表示 [GET] /customservice/kfsession/waitcase 接口的响应。
///
public class CustomServiceKfSessionGetWaitCaseResponse : WechatApiResponse
{
public static class Types
{
public class WaitCase
{
///
/// 获取或设置用户 OpenId。
///
[Newtonsoft.Json.JsonProperty("openid")]
[System.Text.Json.Serialization.JsonPropertyName("openid")]
public string OpenId { get; set; } = default!;
///
/// 获取或设置最后一条消息的时间戳。
///
[Newtonsoft.Json.JsonProperty("latest_time")]
[System.Text.Json.Serialization.JsonPropertyName("latest_time")]
public long LatestTimestamp { get; set; }
}
}
///
/// 获取或设置未接入会话数量。
///
[Newtonsoft.Json.JsonProperty("count")]
[System.Text.Json.Serialization.JsonPropertyName("count")]
public int Count { get; set; }
///
/// 获取或设置未接入会话列表。
///
[Newtonsoft.Json.JsonProperty("waitcaselist")]
[System.Text.Json.Serialization.JsonPropertyName("waitcaselist")]
public Types.WaitCase[] WaitCaseList { get; set; } = default!;
}
}