Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace BankPayment.PaymentModel
  5. {
  6.  
  7. public class InvoiceSettings
  8. {
  9. public object custom_fields { get; set; }
  10. public object default_payment_method { get; set; }
  11. public object footer { get; set; }
  12. }
  13.  
  14. public class Metadata
  15. {
  16. }
  17.  
  18. public class Sources
  19. {
  20. public string @object { get; set; }
  21. public List<object> data { get; set; }
  22. public bool has_more { get; set; }
  23. public int total_count { get; set; }
  24. public string url { get; set; }
  25. }
  26.  
  27. public class Subscriptions
  28. {
  29. public string @object { get; set; }
  30. public List<object> data { get; set; }
  31. public bool has_more { get; set; }
  32. public int total_count { get; set; }
  33. public string url { get; set; }
  34. }
  35.  
  36. public class TaxIds
  37. {
  38. public string @object { get; set; }
  39. public List<object> data { get; set; }
  40. public bool has_more { get; set; }
  41. public int total_count { get; set; }
  42. public string url { get; set; }
  43. }
  44.  
  45. public class Datum
  46. {
  47. public string id { get; set; }
  48. public string @object { get; set; }
  49. public int account_balance { get; set; }
  50. public object address { get; set; }
  51. public int balance { get; set; }
  52. public int created { get; set; }
  53. public string currency { get; set; }
  54. public object default_source { get; set; }
  55. public bool delinquent { get; set; }
  56. public object description { get; set; }
  57. public object discount { get; set; }
  58. public object email { get; set; }
  59. public string invoice_prefix { get; set; }
  60. public InvoiceSettings invoice_settings { get; set; }
  61. public bool livemode { get; set; }
  62. public Metadata metadata { get; set; }
  63. public object name { get; set; }
  64. public object phone { get; set; }
  65. public List<object> preferred_locales { get; set; }
  66. public object shipping { get; set; }
  67. public Sources sources { get; set; }
  68. public Subscriptions subscriptions { get; set; }
  69. public string tax_exempt { get; set; }
  70. public TaxIds tax_ids { get; set; }
  71. public object tax_info { get; set; }
  72. public object tax_info_verification { get; set; }
  73. }
  74.  
  75. public class GetAllCustomers
  76. {
  77. public string @object { get; set; }
  78. public string url { get; set; }
  79. public bool has_more { get; set; }
  80. public List<Datum> data { get; set; }
  81. }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement