|
| 1 | +namespace SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop.Models |
| 2 | +{ |
| 3 | + /// <summary> |
| 4 | + /// <para>表示 [GET] /customer_service/{version}/performance 接口的响应。</para> |
| 5 | + /// </summary> |
| 6 | + public class CustomerServiceGetPerformanceResponse : TikTokShopResponse<CustomerServiceGetPerformanceResponse.Types.Data> |
| 7 | + { |
| 8 | + public static class Types |
| 9 | + { |
| 10 | + public class Data |
| 11 | + { |
| 12 | + public static class Types |
| 13 | + { |
| 14 | + public class Performance |
| 15 | + { |
| 16 | + /// <summary> |
| 17 | + /// 获取或设置会话数。 |
| 18 | + /// </summary> |
| 19 | + [Newtonsoft.Json.JsonProperty("support_session_count")] |
| 20 | + [System.Text.Json.Serialization.JsonPropertyName("support_session_count")] |
| 21 | + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.TextualNumberReadOnlyConverter))] |
| 22 | + public int SupportSessionCount { get; set; } |
| 23 | + |
| 24 | + /// <summary> |
| 25 | + /// 获取或设置回复率(单位:百分数)。 |
| 26 | + /// </summary> |
| 27 | + [Newtonsoft.Json.JsonProperty("response_percentage")] |
| 28 | + [System.Text.Json.Serialization.JsonPropertyName("response_percentage")] |
| 29 | + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.TextualNumberReadOnlyConverter))] |
| 30 | + public decimal ResponsePercentage { get; set; } |
| 31 | + |
| 32 | + /// <summary> |
| 33 | + /// 获取或设置客户满意率(单位:百分数)。 |
| 34 | + /// </summary> |
| 35 | + [Newtonsoft.Json.JsonProperty("satisfaction_percentage")] |
| 36 | + [System.Text.Json.Serialization.JsonPropertyName("satisfaction_percentage")] |
| 37 | + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.TextualNumberReadOnlyConverter))] |
| 38 | + public decimal SatisfactionPercentage { get; set; } |
| 39 | + |
| 40 | + /// <summary> |
| 41 | + /// 获取或设置平均首次响应时间(单位:分钟)。 |
| 42 | + /// </summary> |
| 43 | + [Newtonsoft.Json.JsonProperty("response_time_mins")] |
| 44 | + [System.Text.Json.Serialization.JsonPropertyName("response_time_mins")] |
| 45 | + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.TextualNumberReadOnlyConverter))] |
| 46 | + public decimal AverageResponseTime { get; set; } |
| 47 | + } |
| 48 | + } |
| 49 | + |
| 50 | + /// <summary> |
| 51 | + /// 获取或设置统计数据。 |
| 52 | + /// </summary> |
| 53 | + [Newtonsoft.Json.JsonProperty("performance")] |
| 54 | + [System.Text.Json.Serialization.JsonPropertyName("performance")] |
| 55 | + public Types.Performance Performance { get; set; } = default!; |
| 56 | + } |
| 57 | + } |
| 58 | + } |
| 59 | +} |
0 commit comments