VerifyUserResponse.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace KdanCommon.DocAI.Data
  8. {
  9. public partial class VerifyUserResponse
  10. {
  11. [JsonProperty("user_id")]
  12. public long UserId { get; set; }
  13. [JsonProperty("email")]
  14. public string Email { get; set; }
  15. [JsonProperty("redact")]
  16. public Redact Redact { get; set; }
  17. [JsonProperty("chatbot")]
  18. public Chatbot Chatbot { get; set; }
  19. [JsonProperty("available_licenses")]
  20. public string AvailableLicenses { get; set; }
  21. [JsonProperty("current_time")]
  22. public DateTimeOffset CurrentTime { get; set; }
  23. [JsonProperty("access_ai")]
  24. public bool AccessAi { get; set; }
  25. }
  26. public partial class Chatbot
  27. {
  28. [JsonProperty("bot_used")]
  29. public int BotUsed { get; set; }
  30. [JsonProperty("available_bots")]
  31. public int AvailableBots { get; set; }
  32. }
  33. public partial class Redact
  34. {
  35. [JsonProperty("pages_used")]
  36. public int PagesUsed { get; set; }
  37. [JsonProperty("available_pages")]
  38. public int AvailablePages { get; set; }
  39. }
  40. }