You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.7 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.Common.TrustDoc
  6. {
  7. public class VerificationStatusResponse
  8. {
  9. public string id { get; set; }
  10. public string public_id { get; set; }
  11. public string id_for_helper { get; set; }
  12. public string state { get; set; }
  13. public string result { get; set; }
  14. public DateTime accepted_at { get; set; }
  15. public DateTime plans_selected_at { get; set; }
  16. public DateTime document_submitted_at { get; set; }
  17. public DateTime prepared_at { get; set; }
  18. public DateTime verified_at { get; set; }
  19. public ComparingData comparing_data { get; set; }
  20. public List<Record> records { get; set; }
  21. }
  22. public class Record
  23. {
  24. public string state { get; set; }
  25. public string result { get; set; }
  26. public DateTime verified_at { get; set; }
  27. public Plan plan { get; set; }
  28. public Document document { get; set; }
  29. public List<Reason> reasons { get; set; }
  30. }
  31. public class Data
  32. {
  33. public string token { get; set; }
  34. public DateTime expired_at { get; set; }
  35. public List<string> image_urls { get; set; }
  36. public List<string> text_urls { get; set; }
  37. public List<string> video_urls { get; set; }
  38. }
  39. public class Document
  40. {
  41. public IdDocument id_document { get; set; }
  42. public Data data { get; set; }
  43. public Selfie selfie { get; set; }
  44. }
  45. public class IdDocument
  46. {
  47. public string type { get; set; }
  48. public object first_submitted_at { get; set; }
  49. public DateTime submitted_at { get; set; }
  50. public string source_plan_id { get; set; }
  51. }
  52. }