mt-sdk 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (300) hide show
  1. mt_sdk-0.0.1/LICENSE +28 -0
  2. mt_sdk-0.0.1/MANIFEST.in +2 -0
  3. mt_sdk-0.0.1/PKG-INFO +170 -0
  4. mt_sdk-0.0.1/README.md +153 -0
  5. mt_sdk-0.0.1/moderntreasury/__init__.py +12 -0
  6. mt_sdk-0.0.1/moderntreasury/api_helper.py +19 -0
  7. mt_sdk-0.0.1/moderntreasury/configuration.py +289 -0
  8. mt_sdk-0.0.1/moderntreasury/controllers/__init__.py +40 -0
  9. mt_sdk-0.0.1/moderntreasury/controllers/account_collection_flow_controller.py +228 -0
  10. mt_sdk-0.0.1/moderntreasury/controllers/account_detail_controller.py +239 -0
  11. mt_sdk-0.0.1/moderntreasury/controllers/balance_report_controller.py +140 -0
  12. mt_sdk-0.0.1/moderntreasury/controllers/base_controller.py +67 -0
  13. mt_sdk-0.0.1/moderntreasury/controllers/connection_controller.py +83 -0
  14. mt_sdk-0.0.1/moderntreasury/controllers/counterparty_controller.py +325 -0
  15. mt_sdk-0.0.1/moderntreasury/controllers/document_controller.py +441 -0
  16. mt_sdk-0.0.1/moderntreasury/controllers/event_controller.py +135 -0
  17. mt_sdk-0.0.1/moderntreasury/controllers/expected_payment_controller.py +279 -0
  18. mt_sdk-0.0.1/moderntreasury/controllers/external_account_controller.py +340 -0
  19. mt_sdk-0.0.1/moderntreasury/controllers/incoming_payment_detail_controller.py +253 -0
  20. mt_sdk-0.0.1/moderntreasury/controllers/internal_account_controller.py +226 -0
  21. mt_sdk-0.0.1/moderntreasury/controllers/invoice_controller.py +186 -0
  22. mt_sdk-0.0.1/moderntreasury/controllers/invoice_line_item_controller.py +257 -0
  23. mt_sdk-0.0.1/moderntreasury/controllers/ledger_account_category_controller.py +437 -0
  24. mt_sdk-0.0.1/moderntreasury/controllers/ledger_account_controller.py +316 -0
  25. mt_sdk-0.0.1/moderntreasury/controllers/ledger_account_payout_controller.py +219 -0
  26. mt_sdk-0.0.1/moderntreasury/controllers/ledger_account_statement_controller.py +119 -0
  27. mt_sdk-0.0.1/moderntreasury/controllers/ledger_controller.py +257 -0
  28. mt_sdk-0.0.1/moderntreasury/controllers/ledger_entry_controller.py +235 -0
  29. mt_sdk-0.0.1/moderntreasury/controllers/ledger_event_handler_controller.py +218 -0
  30. mt_sdk-0.0.1/moderntreasury/controllers/ledger_transaction_controller.py +498 -0
  31. mt_sdk-0.0.1/moderntreasury/controllers/ledgerable_event_controller.py +119 -0
  32. mt_sdk-0.0.1/moderntreasury/controllers/line_item_controller.py +196 -0
  33. mt_sdk-0.0.1/moderntreasury/controllers/paper_item_controller.py +131 -0
  34. mt_sdk-0.0.1/moderntreasury/controllers/payment_flow_controller.py +236 -0
  35. mt_sdk-0.0.1/moderntreasury/controllers/payment_order_controller.py +558 -0
  36. mt_sdk-0.0.1/moderntreasury/controllers/payment_reference_controller.py +124 -0
  37. mt_sdk-0.0.1/moderntreasury/controllers/ping_controller.py +70 -0
  38. mt_sdk-0.0.1/moderntreasury/controllers/return_controller.py +182 -0
  39. mt_sdk-0.0.1/moderntreasury/controllers/reversal_controller.py +177 -0
  40. mt_sdk-0.0.1/moderntreasury/controllers/routing_detail_controller.py +239 -0
  41. mt_sdk-0.0.1/moderntreasury/controllers/transaction_controller.py +225 -0
  42. mt_sdk-0.0.1/moderntreasury/controllers/transaction_line_item_controller.py +82 -0
  43. mt_sdk-0.0.1/moderntreasury/controllers/validation_controller.py +85 -0
  44. mt_sdk-0.0.1/moderntreasury/controllers/virtual_account_controller.py +248 -0
  45. mt_sdk-0.0.1/moderntreasury/exceptions/__init__.py +6 -0
  46. mt_sdk-0.0.1/moderntreasury/exceptions/api_exception.py +36 -0
  47. mt_sdk-0.0.1/moderntreasury/exceptions/error_message_exception.py +54 -0
  48. mt_sdk-0.0.1/moderntreasury/http/__init__.py +11 -0
  49. mt_sdk-0.0.1/moderntreasury/http/auth/__init__.py +5 -0
  50. mt_sdk-0.0.1/moderntreasury/http/auth/basic_auth.py +125 -0
  51. mt_sdk-0.0.1/moderntreasury/http/http_call_back.py +20 -0
  52. mt_sdk-0.0.1/moderntreasury/http/http_client_provider.py +23 -0
  53. mt_sdk-0.0.1/moderntreasury/http/http_method_enum.py +25 -0
  54. mt_sdk-0.0.1/moderntreasury/http/http_request.py +55 -0
  55. mt_sdk-0.0.1/moderntreasury/http/http_response.py +45 -0
  56. mt_sdk-0.0.1/moderntreasury/http/proxy_settings.py +50 -0
  57. mt_sdk-0.0.1/moderntreasury/models/__init__.py +236 -0
  58. mt_sdk-0.0.1/moderntreasury/models/account.py +526 -0
  59. mt_sdk-0.0.1/moderntreasury/models/account_1.py +381 -0
  60. mt_sdk-0.0.1/moderntreasury/models/account_collection_flow.py +287 -0
  61. mt_sdk-0.0.1/moderntreasury/models/account_collection_flow_create_request.py +82 -0
  62. mt_sdk-0.0.1/moderntreasury/models/account_collection_flow_update_request.py +66 -0
  63. mt_sdk-0.0.1/moderntreasury/models/account_detail.py +332 -0
  64. mt_sdk-0.0.1/moderntreasury/models/account_detail_1.py +99 -0
  65. mt_sdk-0.0.1/moderntreasury/models/account_detail_create_request.py +100 -0
  66. mt_sdk-0.0.1/moderntreasury/models/account_number_type_2_enum.py +66 -0
  67. mt_sdk-0.0.1/moderntreasury/models/account_number_type_enum.py +69 -0
  68. mt_sdk-0.0.1/moderntreasury/models/account_type_5_enum.py +75 -0
  69. mt_sdk-0.0.1/moderntreasury/models/account_type_enum.py +75 -0
  70. mt_sdk-0.0.1/moderntreasury/models/accounting.py +139 -0
  71. mt_sdk-0.0.1/moderntreasury/models/accounting_1.py +86 -0
  72. mt_sdk-0.0.1/moderntreasury/models/accounts_type_1_enum.py +40 -0
  73. mt_sdk-0.0.1/moderntreasury/models/accounts_type_enum.py +43 -0
  74. mt_sdk-0.0.1/moderntreasury/models/address.py +401 -0
  75. mt_sdk-0.0.1/moderntreasury/models/address_request.py +209 -0
  76. mt_sdk-0.0.1/moderntreasury/models/async_response.py +82 -0
  77. mt_sdk-0.0.1/moderntreasury/models/balance.py +203 -0
  78. mt_sdk-0.0.1/moderntreasury/models/balance_report.py +207 -0
  79. mt_sdk-0.0.1/moderntreasury/models/balance_report_type_1_enum.py +49 -0
  80. mt_sdk-0.0.1/moderntreasury/models/balance_report_type_enum.py +52 -0
  81. mt_sdk-0.0.1/moderntreasury/models/balance_type_enum.py +65 -0
  82. mt_sdk-0.0.1/moderntreasury/models/balances.py +87 -0
  83. mt_sdk-0.0.1/moderntreasury/models/balances_1.py +111 -0
  84. mt_sdk-0.0.1/moderntreasury/models/balances_2.py +161 -0
  85. mt_sdk-0.0.1/moderntreasury/models/balances_3.py +184 -0
  86. mt_sdk-0.0.1/moderntreasury/models/charge_bearer_enum.py +64 -0
  87. mt_sdk-0.0.1/moderntreasury/models/code_1_enum.py +186 -0
  88. mt_sdk-0.0.1/moderntreasury/models/code_enum.py +67 -0
  89. mt_sdk-0.0.1/moderntreasury/models/connection.py +338 -0
  90. mt_sdk-0.0.1/moderntreasury/models/contact_detail.py +305 -0
  91. mt_sdk-0.0.1/moderntreasury/models/contact_detail_create_request.py +109 -0
  92. mt_sdk-0.0.1/moderntreasury/models/contact_identifier_type_enum.py +60 -0
  93. mt_sdk-0.0.1/moderntreasury/models/content_type_enum.py +43 -0
  94. mt_sdk-0.0.1/moderntreasury/models/counterparty.py +234 -0
  95. mt_sdk-0.0.1/moderntreasury/models/counterparty_billing_address.py +152 -0
  96. mt_sdk-0.0.1/moderntreasury/models/counterparty_collect_account_request.py +158 -0
  97. mt_sdk-0.0.1/moderntreasury/models/counterparty_collect_account_response.py +100 -0
  98. mt_sdk-0.0.1/moderntreasury/models/counterparty_create_request.py +279 -0
  99. mt_sdk-0.0.1/moderntreasury/models/counterparty_shipping_address.py +152 -0
  100. mt_sdk-0.0.1/moderntreasury/models/counterparty_update_request.py +180 -0
  101. mt_sdk-0.0.1/moderntreasury/models/created_at_enum.py +43 -0
  102. mt_sdk-0.0.1/moderntreasury/models/currency_1_enum.py +45 -0
  103. mt_sdk-0.0.1/moderntreasury/models/currency_enum.py +637 -0
  104. mt_sdk-0.0.1/moderntreasury/models/direction_10_enum.py +46 -0
  105. mt_sdk-0.0.1/moderntreasury/models/direction_14_enum.py +45 -0
  106. mt_sdk-0.0.1/moderntreasury/models/direction_15_enum.py +43 -0
  107. mt_sdk-0.0.1/moderntreasury/models/direction_1_enum.py +46 -0
  108. mt_sdk-0.0.1/moderntreasury/models/direction_4_enum.py +45 -0
  109. mt_sdk-0.0.1/moderntreasury/models/direction_5_enum.py +62 -0
  110. mt_sdk-0.0.1/moderntreasury/models/direction_9_enum.py +46 -0
  111. mt_sdk-0.0.1/moderntreasury/models/direction_enum.py +47 -0
  112. mt_sdk-0.0.1/moderntreasury/models/document.py +238 -0
  113. mt_sdk-0.0.1/moderntreasury/models/document_create_request.py +125 -0
  114. mt_sdk-0.0.1/moderntreasury/models/document_detail.py +174 -0
  115. mt_sdk-0.0.1/moderntreasury/models/documentable_type_1_enum.py +70 -0
  116. mt_sdk-0.0.1/moderntreasury/models/documentable_type_2_enum.py +70 -0
  117. mt_sdk-0.0.1/moderntreasury/models/documentable_type_enum.py +74 -0
  118. mt_sdk-0.0.1/moderntreasury/models/effective_at_enum.py +43 -0
  119. mt_sdk-0.0.1/moderntreasury/models/errors.py +131 -0
  120. mt_sdk-0.0.1/moderntreasury/models/event.py +196 -0
  121. mt_sdk-0.0.1/moderntreasury/models/expected_payment.py +430 -0
  122. mt_sdk-0.0.1/moderntreasury/models/expected_payment_create_request.py +437 -0
  123. mt_sdk-0.0.1/moderntreasury/models/expected_payment_update_request.py +446 -0
  124. mt_sdk-0.0.1/moderntreasury/models/external_account.py +333 -0
  125. mt_sdk-0.0.1/moderntreasury/models/external_account_complete_verification_request.py +85 -0
  126. mt_sdk-0.0.1/moderntreasury/models/external_account_create_request.py +395 -0
  127. mt_sdk-0.0.1/moderntreasury/models/external_account_update_request.py +236 -0
  128. mt_sdk-0.0.1/moderntreasury/models/external_account_verify_request.py +113 -0
  129. mt_sdk-0.0.1/moderntreasury/models/fallback_type_enum.py +44 -0
  130. mt_sdk-0.0.1/moderntreasury/models/field_enum.py +100 -0
  131. mt_sdk-0.0.1/moderntreasury/models/file.py +131 -0
  132. mt_sdk-0.0.1/moderntreasury/models/foreign_exchange_indicator_enum.py +61 -0
  133. mt_sdk-0.0.1/moderntreasury/models/incoming_payment_detail.py +433 -0
  134. mt_sdk-0.0.1/moderntreasury/models/incoming_payment_detail_create_request.py +259 -0
  135. mt_sdk-0.0.1/moderntreasury/models/incoming_payment_detail_update_request.py +86 -0
  136. mt_sdk-0.0.1/moderntreasury/models/internal_account.py +589 -0
  137. mt_sdk-0.0.1/moderntreasury/models/internal_account_create_request.py +214 -0
  138. mt_sdk-0.0.1/moderntreasury/models/internal_account_update_request.py +155 -0
  139. mt_sdk-0.0.1/moderntreasury/models/invoice.py +422 -0
  140. mt_sdk-0.0.1/moderntreasury/models/invoice_create_request.py +381 -0
  141. mt_sdk-0.0.1/moderntreasury/models/invoice_line_item.py +213 -0
  142. mt_sdk-0.0.1/moderntreasury/models/invoice_line_item_create_request.py +162 -0
  143. mt_sdk-0.0.1/moderntreasury/models/invoice_line_item_update_request.py +411 -0
  144. mt_sdk-0.0.1/moderntreasury/models/invoice_update_request.py +436 -0
  145. mt_sdk-0.0.1/moderntreasury/models/invoicer_address.py +152 -0
  146. mt_sdk-0.0.1/moderntreasury/models/itemizable_type_1_enum.py +43 -0
  147. mt_sdk-0.0.1/moderntreasury/models/itemizable_type_enum.py +45 -0
  148. mt_sdk-0.0.1/moderntreasury/models/ledger.py +189 -0
  149. mt_sdk-0.0.1/moderntreasury/models/ledger_account.py +276 -0
  150. mt_sdk-0.0.1/moderntreasury/models/ledger_account_category.py +233 -0
  151. mt_sdk-0.0.1/moderntreasury/models/ledger_account_category_create_request.py +191 -0
  152. mt_sdk-0.0.1/moderntreasury/models/ledger_account_category_update_request.py +136 -0
  153. mt_sdk-0.0.1/moderntreasury/models/ledger_account_create_request.py +238 -0
  154. mt_sdk-0.0.1/moderntreasury/models/ledger_account_normal_balance_enum.py +45 -0
  155. mt_sdk-0.0.1/moderntreasury/models/ledger_account_payout.py +291 -0
  156. mt_sdk-0.0.1/moderntreasury/models/ledger_account_payout_create_request.py +226 -0
  157. mt_sdk-0.0.1/moderntreasury/models/ledger_account_payout_update_request.py +137 -0
  158. mt_sdk-0.0.1/moderntreasury/models/ledger_account_statement.py +279 -0
  159. mt_sdk-0.0.1/moderntreasury/models/ledger_account_statement_create_request.py +161 -0
  160. mt_sdk-0.0.1/moderntreasury/models/ledger_account_update_request.py +136 -0
  161. mt_sdk-0.0.1/moderntreasury/models/ledger_balance.py +121 -0
  162. mt_sdk-0.0.1/moderntreasury/models/ledger_balances.py +100 -0
  163. mt_sdk-0.0.1/moderntreasury/models/ledger_balances_with_effective_at.py +138 -0
  164. mt_sdk-0.0.1/moderntreasury/models/ledger_create_request.py +126 -0
  165. mt_sdk-0.0.1/moderntreasury/models/ledger_entry.py +296 -0
  166. mt_sdk-0.0.1/moderntreasury/models/ledger_entry_create_request.py +269 -0
  167. mt_sdk-0.0.1/moderntreasury/models/ledger_entry_of_transaction_version.py +265 -0
  168. mt_sdk-0.0.1/moderntreasury/models/ledger_event_handler.py +224 -0
  169. mt_sdk-0.0.1/moderntreasury/models/ledger_event_handler_conditions.py +96 -0
  170. mt_sdk-0.0.1/moderntreasury/models/ledger_event_handler_create_request.py +195 -0
  171. mt_sdk-0.0.1/moderntreasury/models/ledger_event_handler_ledger_entries.py +97 -0
  172. mt_sdk-0.0.1/moderntreasury/models/ledger_event_handler_ledger_transaction_template.py +125 -0
  173. mt_sdk-0.0.1/moderntreasury/models/ledger_transaction.py +312 -0
  174. mt_sdk-0.0.1/moderntreasury/models/ledger_transaction_create_request.py +278 -0
  175. mt_sdk-0.0.1/moderntreasury/models/ledger_transaction_reversal_create_request.py +240 -0
  176. mt_sdk-0.0.1/moderntreasury/models/ledger_transaction_update_request.py +192 -0
  177. mt_sdk-0.0.1/moderntreasury/models/ledger_transaction_version.py +312 -0
  178. mt_sdk-0.0.1/moderntreasury/models/ledger_type_enum.py +46 -0
  179. mt_sdk-0.0.1/moderntreasury/models/ledger_update_request.py +136 -0
  180. mt_sdk-0.0.1/moderntreasury/models/ledgerable_event.py +258 -0
  181. mt_sdk-0.0.1/moderntreasury/models/ledgerable_event_create_request.py +237 -0
  182. mt_sdk-0.0.1/moderntreasury/models/ledgerable_type_2_enum.py +71 -0
  183. mt_sdk-0.0.1/moderntreasury/models/ledgerable_type_5_enum.py +70 -0
  184. mt_sdk-0.0.1/moderntreasury/models/ledgerable_type_6_enum.py +67 -0
  185. mt_sdk-0.0.1/moderntreasury/models/ledgerable_type_enum.py +47 -0
  186. mt_sdk-0.0.1/moderntreasury/models/legacy_document_create_request.py +98 -0
  187. mt_sdk-0.0.1/moderntreasury/models/line_item.py +250 -0
  188. mt_sdk-0.0.1/moderntreasury/models/line_item_request.py +153 -0
  189. mt_sdk-0.0.1/moderntreasury/models/line_item_update_request.py +86 -0
  190. mt_sdk-0.0.1/moderntreasury/models/mreturn.py +735 -0
  191. mt_sdk-0.0.1/moderntreasury/models/normal_balance_2_enum.py +45 -0
  192. mt_sdk-0.0.1/moderntreasury/models/normal_balance_enum.py +45 -0
  193. mt_sdk-0.0.1/moderntreasury/models/order_by.py +108 -0
  194. mt_sdk-0.0.1/moderntreasury/models/originating_account_number_type_enum.py +68 -0
  195. mt_sdk-0.0.1/moderntreasury/models/originating_routing_number_type_enum.py +84 -0
  196. mt_sdk-0.0.1/moderntreasury/models/paper_item.py +313 -0
  197. mt_sdk-0.0.1/moderntreasury/models/party_address.py +152 -0
  198. mt_sdk-0.0.1/moderntreasury/models/party_type_5_enum.py +59 -0
  199. mt_sdk-0.0.1/moderntreasury/models/party_type_enum.py +59 -0
  200. mt_sdk-0.0.1/moderntreasury/models/payment_direction_enum.py +43 -0
  201. mt_sdk-0.0.1/moderntreasury/models/payment_flow.py +406 -0
  202. mt_sdk-0.0.1/moderntreasury/models/payment_flow_create_request.py +127 -0
  203. mt_sdk-0.0.1/moderntreasury/models/payment_flow_update_request.py +66 -0
  204. mt_sdk-0.0.1/moderntreasury/models/payment_method_1_enum.py +53 -0
  205. mt_sdk-0.0.1/moderntreasury/models/payment_method_enum.py +49 -0
  206. mt_sdk-0.0.1/moderntreasury/models/payment_order.py +1414 -0
  207. mt_sdk-0.0.1/moderntreasury/models/payment_order_async_create_request.py +894 -0
  208. mt_sdk-0.0.1/moderntreasury/models/payment_order_create_request.py +926 -0
  209. mt_sdk-0.0.1/moderntreasury/models/payment_order_update_request.py +941 -0
  210. mt_sdk-0.0.1/moderntreasury/models/payment_reference.py +270 -0
  211. mt_sdk-0.0.1/moderntreasury/models/payment_reference_object.py +185 -0
  212. mt_sdk-0.0.1/moderntreasury/models/payment_type_13_enum.py +104 -0
  213. mt_sdk-0.0.1/moderntreasury/models/payment_type_1_enum.py +107 -0
  214. mt_sdk-0.0.1/moderntreasury/models/payment_type_2_enum.py +104 -0
  215. mt_sdk-0.0.1/moderntreasury/models/payment_type_4_enum.py +106 -0
  216. mt_sdk-0.0.1/moderntreasury/models/payment_type_5_enum.py +45 -0
  217. mt_sdk-0.0.1/moderntreasury/models/payment_type_6_enum.py +107 -0
  218. mt_sdk-0.0.1/moderntreasury/models/payment_type_enum.py +45 -0
  219. mt_sdk-0.0.1/moderntreasury/models/ping_response.py +69 -0
  220. mt_sdk-0.0.1/moderntreasury/models/priority_4_enum.py +43 -0
  221. mt_sdk-0.0.1/moderntreasury/models/priority_enum.py +61 -0
  222. mt_sdk-0.0.1/moderntreasury/models/reason_1_enum.py +56 -0
  223. mt_sdk-0.0.1/moderntreasury/models/reason_enum.py +54 -0
  224. mt_sdk-0.0.1/moderntreasury/models/receiving_account.py +526 -0
  225. mt_sdk-0.0.1/moderntreasury/models/receiving_account_1.py +385 -0
  226. mt_sdk-0.0.1/moderntreasury/models/receiving_account_type_enum.py +57 -0
  227. mt_sdk-0.0.1/moderntreasury/models/reconciliation_method_enum.py +47 -0
  228. mt_sdk-0.0.1/moderntreasury/models/reference_number_type_1_enum.py +204 -0
  229. mt_sdk-0.0.1/moderntreasury/models/reference_number_type_enum.py +238 -0
  230. mt_sdk-0.0.1/moderntreasury/models/referenceable_type_1_enum.py +46 -0
  231. mt_sdk-0.0.1/moderntreasury/models/referenceable_type_enum.py +49 -0
  232. mt_sdk-0.0.1/moderntreasury/models/return_create_request.py +192 -0
  233. mt_sdk-0.0.1/moderntreasury/models/returnable_type_1_enum.py +52 -0
  234. mt_sdk-0.0.1/moderntreasury/models/returnable_type_enum.py +69 -0
  235. mt_sdk-0.0.1/moderntreasury/models/reversal.py +186 -0
  236. mt_sdk-0.0.1/moderntreasury/models/reversal_create_request.py +129 -0
  237. mt_sdk-0.0.1/moderntreasury/models/role_enum.py +59 -0
  238. mt_sdk-0.0.1/moderntreasury/models/routing_detail.py +387 -0
  239. mt_sdk-0.0.1/moderntreasury/models/routing_detail_1.py +112 -0
  240. mt_sdk-0.0.1/moderntreasury/models/routing_detail_create_request.py +117 -0
  241. mt_sdk-0.0.1/moderntreasury/models/routing_number_lookup_request.py +213 -0
  242. mt_sdk-0.0.1/moderntreasury/models/routing_number_type_1_enum.py +82 -0
  243. mt_sdk-0.0.1/moderntreasury/models/routing_number_type_7_enum.py +60 -0
  244. mt_sdk-0.0.1/moderntreasury/models/routing_number_type_8_enum.py +82 -0
  245. mt_sdk-0.0.1/moderntreasury/models/routing_number_type_enum.py +84 -0
  246. mt_sdk-0.0.1/moderntreasury/models/status_11_enum.py +48 -0
  247. mt_sdk-0.0.1/moderntreasury/models/status_12_enum.py +48 -0
  248. mt_sdk-0.0.1/moderntreasury/models/status_15_enum.py +49 -0
  249. mt_sdk-0.0.1/moderntreasury/models/status_16_enum.py +49 -0
  250. mt_sdk-0.0.1/moderntreasury/models/status_17_enum.py +52 -0
  251. mt_sdk-0.0.1/moderntreasury/models/status_18_enum.py +74 -0
  252. mt_sdk-0.0.1/moderntreasury/models/status_19_enum.py +57 -0
  253. mt_sdk-0.0.1/moderntreasury/models/status_1_enum.py +48 -0
  254. mt_sdk-0.0.1/moderntreasury/models/status_20_enum.py +46 -0
  255. mt_sdk-0.0.1/moderntreasury/models/status_21_enum.py +46 -0
  256. mt_sdk-0.0.1/moderntreasury/models/status_22_enum.py +46 -0
  257. mt_sdk-0.0.1/moderntreasury/models/status_24_enum.py +70 -0
  258. mt_sdk-0.0.1/moderntreasury/models/status_2_enum.py +49 -0
  259. mt_sdk-0.0.1/moderntreasury/models/status_3_enum.py +87 -0
  260. mt_sdk-0.0.1/moderntreasury/models/status_4_enum.py +72 -0
  261. mt_sdk-0.0.1/moderntreasury/models/status_5_enum.py +54 -0
  262. mt_sdk-0.0.1/moderntreasury/models/status_6_enum.py +55 -0
  263. mt_sdk-0.0.1/moderntreasury/models/status_7_enum.py +46 -0
  264. mt_sdk-0.0.1/moderntreasury/models/status_8_enum.py +46 -0
  265. mt_sdk-0.0.1/moderntreasury/models/status_9_enum.py +49 -0
  266. mt_sdk-0.0.1/moderntreasury/models/status_enum.py +52 -0
  267. mt_sdk-0.0.1/moderntreasury/models/subtype_enum.py +87 -0
  268. mt_sdk-0.0.1/moderntreasury/models/supported_payment_type_enum.py +104 -0
  269. mt_sdk-0.0.1/moderntreasury/models/transactable_type_enum.py +58 -0
  270. mt_sdk-0.0.1/moderntreasury/models/transaction.py +389 -0
  271. mt_sdk-0.0.1/moderntreasury/models/transaction_line_item.py +254 -0
  272. mt_sdk-0.0.1/moderntreasury/models/type_10_enum.py +66 -0
  273. mt_sdk-0.0.1/moderntreasury/models/type_11_enum.py +107 -0
  274. mt_sdk-0.0.1/moderntreasury/models/type_12_enum.py +46 -0
  275. mt_sdk-0.0.1/moderntreasury/models/type_13_enum.py +104 -0
  276. mt_sdk-0.0.1/moderntreasury/models/type_14_enum.py +64 -0
  277. mt_sdk-0.0.1/moderntreasury/models/type_16_enum.py +43 -0
  278. mt_sdk-0.0.1/moderntreasury/models/type_1_enum.py +107 -0
  279. mt_sdk-0.0.1/moderntreasury/models/type_4_enum.py +67 -0
  280. mt_sdk-0.0.1/moderntreasury/models/type_5_enum.py +107 -0
  281. mt_sdk-0.0.1/moderntreasury/models/type_6_enum.py +91 -0
  282. mt_sdk-0.0.1/moderntreasury/models/type_enum.py +46 -0
  283. mt_sdk-0.0.1/moderntreasury/models/vendor_code_type_1_enum.py +102 -0
  284. mt_sdk-0.0.1/moderntreasury/models/vendor_code_type_enum.py +99 -0
  285. mt_sdk-0.0.1/moderntreasury/models/verification_status_1_enum.py +51 -0
  286. mt_sdk-0.0.1/moderntreasury/models/verification_status_enum.py +60 -0
  287. mt_sdk-0.0.1/moderntreasury/models/virtual_account.py +287 -0
  288. mt_sdk-0.0.1/moderntreasury/models/virtual_account_create_request.py +272 -0
  289. mt_sdk-0.0.1/moderntreasury/models/virtual_account_update_request.py +135 -0
  290. mt_sdk-0.0.1/moderntreasury/moderntreasury_client.py +349 -0
  291. mt_sdk-0.0.1/moderntreasury/utilities/__init__.py +6 -0
  292. mt_sdk-0.0.1/moderntreasury/utilities/file_wrapper.py +45 -0
  293. mt_sdk-0.0.1/moderntreasury/utilities/union_type_lookup.py +76 -0
  294. mt_sdk-0.0.1/mt_sdk.egg-info/PKG-INFO +170 -0
  295. mt_sdk-0.0.1/mt_sdk.egg-info/SOURCES.txt +299 -0
  296. mt_sdk-0.0.1/mt_sdk.egg-info/dependency_links.txt +1 -0
  297. mt_sdk-0.0.1/mt_sdk.egg-info/requires.txt +7 -0
  298. mt_sdk-0.0.1/mt_sdk.egg-info/top_level.txt +3 -0
  299. mt_sdk-0.0.1/pyproject.toml +25 -0
  300. mt_sdk-0.0.1/setup.cfg +8 -0
mt_sdk-0.0.1/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ License:
2
+ ========
3
+ The MIT License (MIT)
4
+ http://opensource.org/licenses/MIT
5
+
6
+ Copyright (c) 2014 - 2026 APIMATIC Limited
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ THE SOFTWARE.
25
+
26
+ Trade Mark:
27
+ ==========
28
+ APIMATIC is a trade mark for APIMATIC Limited
@@ -0,0 +1,2 @@
1
+ include LICENSE
2
+ include README.md
mt_sdk-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,170 @@
1
+ Metadata-Version: 2.4
2
+ Name: mt-sdk
3
+ Version: 0.0.1
4
+ Summary: MT SDKs APIMatic
5
+ Author-email: Muhammad Rafay <muhammad.rafay@apimatic.io>
6
+ Project-URL: Documentation, https://www.moderntreasury.com/?utm_source=google&utm_medium=ppc&utm_campaign=&utm_content=169294787899&utm_term=&hsa_acc=9452648776&hsa_cam=21819247407&hsa_grp=169294787899&hsa_ad=717856558505&hsa_src=g&hsa_tgt=kwl-3500001&hsa_kw=&hsa_mt=a&hsa_net=adwords&hsa_ver=3&gad_source=1&gad_campaignid=21819247407&gbraid=0AAAAAC2R_wBaJpG0S4ymnCuEjxmibrT_s&gclid=Cj0KCQjw_vnQBhCxARIsADcZyxLbDIUqLBHj8kibLedgEbqmbBUMSGdoRn7au3zjNSQupu551HjzkY4aAiJeEALw_wcB
7
+ Requires-Python: >=3.7
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: apimatic-core>=0.2.24,~=0.2.0
11
+ Requires-Dist: apimatic-core-interfaces>=0.1.8,~=0.1.0
12
+ Requires-Dist: apimatic-requests-client-adapter>=0.1.10,~=0.1.0
13
+ Requires-Dist: python-dotenv<2.0,>=0.21
14
+ Provides-Extra: testutils
15
+ Requires-Dist: pytest>=7.2.2; extra == "testutils"
16
+ Dynamic: license-file
17
+
18
+
19
+ # Getting Started with Modern Treasury
20
+
21
+ ## Introduction
22
+
23
+ The Modern Treasury REST API. Please see https://docs.moderntreasury.com for more details.
24
+
25
+ ## Install the Package
26
+
27
+ The package is compatible with Python versions `3.7+`.
28
+ Install the package from PyPi using the following pip command:
29
+
30
+ ```bash
31
+ pip install mt-sdk==0.0.1
32
+ ```
33
+
34
+ You can also view the package at:
35
+ https://pypi.python.org/pypi/mt-sdk/0.0.1
36
+
37
+ ## Test the SDK
38
+
39
+ You can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:
40
+
41
+ Navigate to the root directory of the SDK and run the following commands
42
+
43
+
44
+ pip install -r test-requirements.txt
45
+ pytest
46
+
47
+
48
+ ## Initialize the API Client
49
+
50
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/client.md)
51
+
52
+ The following parameters are configurable for the API Client:
53
+
54
+ | Parameter | Type | Description |
55
+ | --- | --- | --- |
56
+ | environment | [`Environment`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/README.md#environments) | The API environment. <br> **Default: `Environment.PRODUCTION`** |
57
+ | http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
58
+ | override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
59
+ | http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
60
+ | timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
61
+ | max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
62
+ | backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
63
+ | retry_statuses | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
64
+ | retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT"]** |
65
+ | proxy_settings | [`ProxySettings`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
66
+ | basic_auth_credentials | [`BasicAuthCredentials`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |
67
+
68
+ The API client can be initialized as follows:
69
+
70
+ ### Code-Based Client Initialization
71
+
72
+ ```python
73
+ from moderntreasury.configuration import Environment
74
+ from moderntreasury.http.auth.basic_auth import BasicAuthCredentials
75
+ from moderntreasury.moderntreasury_client import ModerntreasuryClient
76
+
77
+ client = ModerntreasuryClient(
78
+ basic_auth_credentials=BasicAuthCredentials(
79
+ username='BasicAuthUserName',
80
+ password='BasicAuthPassword'
81
+ ),
82
+ environment=Environment.PRODUCTION
83
+ )
84
+ ```
85
+
86
+ ### Environment-Based Client Initialization
87
+
88
+ ```python
89
+ from moderntreasury.moderntreasury_client import ModerntreasuryClient
90
+
91
+ # Specify the path to your .env file if it’s located outside the project’s root directory.
92
+ client = ModerntreasuryClient.from_environment(dotenv_path='/path/to/.env')
93
+ ```
94
+
95
+ See the [Environment-Based Client Initialization](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/environment-based-client-initialization.md) section for details.
96
+
97
+ ## Environments
98
+
99
+ The SDK can be configured to use a different environment for making API calls. Available environments are:
100
+
101
+ ### Fields
102
+
103
+ | Name | Description |
104
+ | --- | --- |
105
+ | PRODUCTION | **Default** |
106
+ | ENVIRONMENT2 | - |
107
+
108
+ ## Authorization
109
+
110
+ This API uses the following authentication schemes.
111
+
112
+ * [`basic_auth (Basic Authentication)`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/auth/basic-authentication.md)
113
+
114
+ ## List of APIs
115
+
116
+ * [Account Detail](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/account-detail.md)
117
+ * [Balance Report](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/balance-report.md)
118
+ * [Connection](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/connection.md)
119
+ * [Counterparty](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/counterparty.md)
120
+ * [Document](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/document.md)
121
+ * [Event](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/event.md)
122
+ * [Expected Payment](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/expected-payment.md)
123
+ * [External Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/external-account.md)
124
+ * [Incoming Payment Detail](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/incoming-payment-detail.md)
125
+ * [Internal Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/internal-account.md)
126
+ * [Invoice Line Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/invoice-line-item.md)
127
+ * [Invoice](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/invoice.md)
128
+ * [Ledger Account Category](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account-category.md)
129
+ * [Ledger Account Payout](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account-payout.md)
130
+ * [Ledger Account Statement](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account-statement.md)
131
+ * [Ledger Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account.md)
132
+ * [Ledger Entry](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-entry.md)
133
+ * [Ledger Event Handler](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-event-handler.md)
134
+ * [Ledger Transaction](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-transaction.md)
135
+ * [Ledgerable Event](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledgerable-event.md)
136
+ * [Ledger](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger.md)
137
+ * [Line Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/line-item.md)
138
+ * [Paper Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/paper-item.md)
139
+ * [Payment Order](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/payment-order.md)
140
+ * [Payment Reference](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/payment-reference.md)
141
+ * [Ping](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ping.md)
142
+ * [Return](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/return.md)
143
+ * [Reversal](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/reversal.md)
144
+ * [Routing Detail](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/routing-detail.md)
145
+ * [Transaction Line Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/transaction-line-item.md)
146
+ * [Transaction](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/transaction.md)
147
+ * [Validation](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/validation.md)
148
+ * [Virtual Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/virtual-account.md)
149
+ * [Account Collection Flow](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/account-collection-flow.md)
150
+ * [Payment Flow](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/payment-flow.md)
151
+
152
+ ## SDK Infrastructure
153
+
154
+ ### Configuration
155
+
156
+ * [ProxySettings](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/proxy-settings.md)
157
+ * [Environment-Based Client Initialization](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/environment-based-client-initialization.md)
158
+
159
+ ### HTTP
160
+
161
+ * [HttpResponse](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/http-response.md)
162
+ * [HttpRequest](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/http-request.md)
163
+
164
+ ### Utilities
165
+
166
+ * [ApiHelper](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/api-helper.md)
167
+ * [HttpDateTime](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/http-date-time.md)
168
+ * [RFC3339DateTime](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/rfc3339-date-time.md)
169
+ * [UnixDateTime](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/unix-date-time.md)
170
+
mt_sdk-0.0.1/README.md ADDED
@@ -0,0 +1,153 @@
1
+
2
+ # Getting Started with Modern Treasury
3
+
4
+ ## Introduction
5
+
6
+ The Modern Treasury REST API. Please see https://docs.moderntreasury.com for more details.
7
+
8
+ ## Install the Package
9
+
10
+ The package is compatible with Python versions `3.7+`.
11
+ Install the package from PyPi using the following pip command:
12
+
13
+ ```bash
14
+ pip install mt-sdk==0.0.1
15
+ ```
16
+
17
+ You can also view the package at:
18
+ https://pypi.python.org/pypi/mt-sdk/0.0.1
19
+
20
+ ## Test the SDK
21
+
22
+ You can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:
23
+
24
+ Navigate to the root directory of the SDK and run the following commands
25
+
26
+
27
+ pip install -r test-requirements.txt
28
+ pytest
29
+
30
+
31
+ ## Initialize the API Client
32
+
33
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/client.md)
34
+
35
+ The following parameters are configurable for the API Client:
36
+
37
+ | Parameter | Type | Description |
38
+ | --- | --- | --- |
39
+ | environment | [`Environment`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/README.md#environments) | The API environment. <br> **Default: `Environment.PRODUCTION`** |
40
+ | http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
41
+ | override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
42
+ | http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
43
+ | timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
44
+ | max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
45
+ | backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
46
+ | retry_statuses | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
47
+ | retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT"]** |
48
+ | proxy_settings | [`ProxySettings`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
49
+ | basic_auth_credentials | [`BasicAuthCredentials`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |
50
+
51
+ The API client can be initialized as follows:
52
+
53
+ ### Code-Based Client Initialization
54
+
55
+ ```python
56
+ from moderntreasury.configuration import Environment
57
+ from moderntreasury.http.auth.basic_auth import BasicAuthCredentials
58
+ from moderntreasury.moderntreasury_client import ModerntreasuryClient
59
+
60
+ client = ModerntreasuryClient(
61
+ basic_auth_credentials=BasicAuthCredentials(
62
+ username='BasicAuthUserName',
63
+ password='BasicAuthPassword'
64
+ ),
65
+ environment=Environment.PRODUCTION
66
+ )
67
+ ```
68
+
69
+ ### Environment-Based Client Initialization
70
+
71
+ ```python
72
+ from moderntreasury.moderntreasury_client import ModerntreasuryClient
73
+
74
+ # Specify the path to your .env file if it’s located outside the project’s root directory.
75
+ client = ModerntreasuryClient.from_environment(dotenv_path='/path/to/.env')
76
+ ```
77
+
78
+ See the [Environment-Based Client Initialization](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/environment-based-client-initialization.md) section for details.
79
+
80
+ ## Environments
81
+
82
+ The SDK can be configured to use a different environment for making API calls. Available environments are:
83
+
84
+ ### Fields
85
+
86
+ | Name | Description |
87
+ | --- | --- |
88
+ | PRODUCTION | **Default** |
89
+ | ENVIRONMENT2 | - |
90
+
91
+ ## Authorization
92
+
93
+ This API uses the following authentication schemes.
94
+
95
+ * [`basic_auth (Basic Authentication)`](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/auth/basic-authentication.md)
96
+
97
+ ## List of APIs
98
+
99
+ * [Account Detail](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/account-detail.md)
100
+ * [Balance Report](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/balance-report.md)
101
+ * [Connection](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/connection.md)
102
+ * [Counterparty](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/counterparty.md)
103
+ * [Document](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/document.md)
104
+ * [Event](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/event.md)
105
+ * [Expected Payment](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/expected-payment.md)
106
+ * [External Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/external-account.md)
107
+ * [Incoming Payment Detail](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/incoming-payment-detail.md)
108
+ * [Internal Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/internal-account.md)
109
+ * [Invoice Line Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/invoice-line-item.md)
110
+ * [Invoice](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/invoice.md)
111
+ * [Ledger Account Category](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account-category.md)
112
+ * [Ledger Account Payout](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account-payout.md)
113
+ * [Ledger Account Statement](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account-statement.md)
114
+ * [Ledger Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-account.md)
115
+ * [Ledger Entry](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-entry.md)
116
+ * [Ledger Event Handler](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-event-handler.md)
117
+ * [Ledger Transaction](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger-transaction.md)
118
+ * [Ledgerable Event](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledgerable-event.md)
119
+ * [Ledger](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ledger.md)
120
+ * [Line Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/line-item.md)
121
+ * [Paper Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/paper-item.md)
122
+ * [Payment Order](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/payment-order.md)
123
+ * [Payment Reference](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/payment-reference.md)
124
+ * [Ping](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/ping.md)
125
+ * [Return](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/return.md)
126
+ * [Reversal](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/reversal.md)
127
+ * [Routing Detail](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/routing-detail.md)
128
+ * [Transaction Line Item](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/transaction-line-item.md)
129
+ * [Transaction](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/transaction.md)
130
+ * [Validation](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/validation.md)
131
+ * [Virtual Account](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/virtual-account.md)
132
+ * [Account Collection Flow](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/account-collection-flow.md)
133
+ * [Payment Flow](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/controllers/payment-flow.md)
134
+
135
+ ## SDK Infrastructure
136
+
137
+ ### Configuration
138
+
139
+ * [ProxySettings](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/proxy-settings.md)
140
+ * [Environment-Based Client Initialization](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/environment-based-client-initialization.md)
141
+
142
+ ### HTTP
143
+
144
+ * [HttpResponse](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/http-response.md)
145
+ * [HttpRequest](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/http-request.md)
146
+
147
+ ### Utilities
148
+
149
+ * [ApiHelper](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/api-helper.md)
150
+ * [HttpDateTime](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/http-date-time.md)
151
+ * [RFC3339DateTime](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/rfc3339-date-time.md)
152
+ * [UnixDateTime](https://www.github.com/sdks-io/mt-python-sdk/tree/0.0.1/doc/unix-date-time.md)
153
+
@@ -0,0 +1,12 @@
1
+ # ruff: noqa: D104 | Missing docstring in public package
2
+ # ruff: noqa: RUF022 | `__all__` is not sorted
3
+ __all__ = [
4
+ "api_helper",
5
+ "configuration",
6
+ "controllers",
7
+ "exceptions",
8
+ "http",
9
+ "models",
10
+ "moderntreasury_client",
11
+ "utilities",
12
+ ]
@@ -0,0 +1,19 @@
1
+ """
2
+ moderntreasury
3
+
4
+ This file was automatically generated by APIMATIC v3.0 (
5
+ https://www.apimatic.io ).
6
+ """
7
+
8
+ from apimatic_core.utilities.api_helper import ApiHelper as CoreApiHelper
9
+
10
+
11
+ class APIHelper(CoreApiHelper):
12
+ """
13
+ A Helper Class for various functions associated with API Calls.
14
+
15
+ This class contains static methods for operations that need to be
16
+ performed during API requests. All of the methods inside this class are
17
+ static methods, there is no need to ever initialise an instance of this
18
+ class.
19
+ """