fortis-python-sdk 1.0.8__tar.gz → 1.0.10__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 (1413) hide show
  1. fortis_python_sdk-1.0.10/MANIFEST.in +2 -0
  2. fortis_python_sdk-1.0.10/PKG-INFO +183 -0
  3. fortis_python_sdk-1.0.10/README.md +166 -0
  4. fortis_python_sdk-1.0.10/fortis_python_sdk.egg-info/PKG-INFO +183 -0
  5. fortis_python_sdk-1.0.10/fortis_python_sdk.egg-info/SOURCES.txt +709 -0
  6. fortis_python_sdk-1.0.10/fortisapi/__init__.py +12 -0
  7. fortis_python_sdk-1.0.10/fortisapi/api_helper.py +19 -0
  8. fortis_python_sdk-1.0.10/fortisapi/configuration.py +294 -0
  9. fortis_python_sdk-1.0.10/fortisapi/controllers/__init__.py +40 -0
  10. fortis_python_sdk-1.0.10/fortisapi/controllers/apple_pay_validate_merchant_controller.py +84 -0
  11. fortis_python_sdk-1.0.10/fortisapi/controllers/async_processing_controller.py +78 -0
  12. fortis_python_sdk-1.0.10/fortisapi/controllers/base_controller.py +67 -0
  13. fortis_python_sdk-1.0.10/fortisapi/controllers/batches_controller.py +184 -0
  14. fortis_python_sdk-1.0.10/fortisapi/controllers/calculate_surcharge_controller.py +76 -0
  15. fortis_python_sdk-1.0.10/fortisapi/controllers/contacts_controller.py +398 -0
  16. fortis_python_sdk-1.0.10/fortisapi/controllers/declined_recurring_transactions_controller.py +326 -0
  17. fortis_python_sdk-1.0.10/fortisapi/controllers/device_terms_controller.py +242 -0
  18. fortis_python_sdk-1.0.10/fortisapi/controllers/elements_controller.py +129 -0
  19. fortis_python_sdk-1.0.10/fortisapi/controllers/enterprise_link_redirect_controller.py +81 -0
  20. fortis_python_sdk-1.0.10/fortisapi/controllers/full_boarding_controller.py +85 -0
  21. fortis_python_sdk-1.0.10/fortisapi/controllers/level_3_data_controller.py +219 -0
  22. fortis_python_sdk-1.0.10/fortisapi/controllers/locations_controller.py +478 -0
  23. fortis_python_sdk-1.0.10/fortisapi/controllers/m_3_ds_authentication_controller.py +90 -0
  24. fortis_python_sdk-1.0.10/fortisapi/controllers/m_3_ds_transactions_controller.py +84 -0
  25. fortis_python_sdk-1.0.10/fortisapi/controllers/merchant_deposits_controller.py +295 -0
  26. fortis_python_sdk-1.0.10/fortisapi/controllers/merchant_details_controller.py +82 -0
  27. fortis_python_sdk-1.0.10/fortisapi/controllers/on_boarding_controller.py +100 -0
  28. fortis_python_sdk-1.0.10/fortisapi/controllers/paylinks_controller.py +396 -0
  29. fortis_python_sdk-1.0.10/fortisapi/controllers/payment_card_reader_token_controller.py +76 -0
  30. fortis_python_sdk-1.0.10/fortisapi/controllers/quick_invoices_controller.py +531 -0
  31. fortis_python_sdk-1.0.10/fortisapi/controllers/recurring_controller.py +545 -0
  32. fortis_python_sdk-1.0.10/fortisapi/controllers/reports_controller.py +302 -0
  33. fortis_python_sdk-1.0.10/fortisapi/controllers/signatures_controller.py +249 -0
  34. fortis_python_sdk-1.0.10/fortisapi/controllers/tags_controller.py +328 -0
  35. fortis_python_sdk-1.0.10/fortisapi/controllers/terminals_controller.py +304 -0
  36. fortis_python_sdk-1.0.10/fortisapi/controllers/tickets_controller.py +249 -0
  37. fortis_python_sdk-1.0.10/fortisapi/controllers/tokens_controller.py +679 -0
  38. fortis_python_sdk-1.0.10/fortisapi/controllers/transaction_ach_retries_controller.py +250 -0
  39. fortis_python_sdk-1.0.10/fortisapi/controllers/transactions_ach_controller.py +398 -0
  40. fortis_python_sdk-1.0.10/fortisapi/controllers/transactions_cash_controller.py +123 -0
  41. fortis_python_sdk-1.0.10/fortisapi/controllers/transactions_credit_card_controller.py +1796 -0
  42. fortis_python_sdk-1.0.10/fortisapi/controllers/transactions_ebt_card_controller.py +147 -0
  43. fortis_python_sdk-1.0.10/fortisapi/controllers/transactions_read_controller.py +248 -0
  44. fortis_python_sdk-1.0.10/fortisapi/controllers/transactions_updates_controller.py +435 -0
  45. fortis_python_sdk-1.0.10/fortisapi/controllers/webhooks_controller.py +493 -0
  46. fortis_python_sdk-1.0.10/fortisapi/exceptions/__init__.py +8 -0
  47. fortis_python_sdk-1.0.10/fortisapi/exceptions/api_exception.py +36 -0
  48. fortis_python_sdk-1.0.10/fortisapi/exceptions/response_401_token_exception.py +77 -0
  49. fortis_python_sdk-1.0.10/fortisapi/exceptions/response_412_exception.py +109 -0
  50. fortis_python_sdk-1.0.10/fortisapi/exceptions/response_error_exception.py +109 -0
  51. fortis_python_sdk-1.0.10/fortisapi/fortisapi_client.py +360 -0
  52. fortis_python_sdk-1.0.10/fortisapi/http/__init__.py +11 -0
  53. fortis_python_sdk-1.0.10/fortisapi/http/auth/__init__.py +8 -0
  54. fortis_python_sdk-1.0.10/fortisapi/http/auth/access_token.py +100 -0
  55. fortis_python_sdk-1.0.10/fortisapi/http/auth/developer_id.py +100 -0
  56. fortis_python_sdk-1.0.10/fortisapi/http/auth/user_api_key.py +100 -0
  57. fortis_python_sdk-1.0.10/fortisapi/http/auth/user_id.py +100 -0
  58. fortis_python_sdk-1.0.10/fortisapi/http/http_call_back.py +20 -0
  59. fortis_python_sdk-1.0.10/fortisapi/http/http_method_enum.py +25 -0
  60. fortis_python_sdk-1.0.10/fortisapi/http/http_request.py +55 -0
  61. fortis_python_sdk-1.0.10/fortisapi/http/http_response.py +45 -0
  62. fortis_python_sdk-1.0.10/fortisapi/http/proxy_settings.py +50 -0
  63. fortis_python_sdk-1.0.10/fortisapi/models/__init__.py +641 -0
  64. fortis_python_sdk-1.0.10/fortisapi/models/account_info.py +519 -0
  65. fortis_python_sdk-1.0.10/fortisapi/models/account_type_12_enum.py +47 -0
  66. fortis_python_sdk-1.0.10/fortisapi/models/account_type_13_enum.py +51 -0
  67. fortis_python_sdk-1.0.10/fortisapi/models/account_type_16_enum.py +51 -0
  68. fortis_python_sdk-1.0.10/fortisapi/models/account_type_enum.py +83 -0
  69. fortis_python_sdk-1.0.10/fortisapi/models/account_vault.py +1408 -0
  70. fortis_python_sdk-1.0.10/fortisapi/models/account_vault_cau_log.py +201 -0
  71. fortis_python_sdk-1.0.10/fortisapi/models/account_vault_cau_product_transaction.py +754 -0
  72. fortis_python_sdk-1.0.10/fortisapi/models/ach_product_transaction.py +3048 -0
  73. fortis_python_sdk-1.0.10/fortisapi/models/ach_sec_code_1_enum.py +59 -0
  74. fortis_python_sdk-1.0.10/fortisapi/models/ach_sec_code_31_enum.py +61 -0
  75. fortis_python_sdk-1.0.10/fortisapi/models/ach_sec_code_3_enum.py +59 -0
  76. fortis_python_sdk-1.0.10/fortisapi/models/ach_sec_code_enum.py +67 -0
  77. fortis_python_sdk-1.0.10/fortisapi/models/acs_challenge_mandated_enum.py +52 -0
  78. fortis_python_sdk-1.0.10/fortisapi/models/action_enum.py +70 -0
  79. fortis_python_sdk-1.0.10/fortisapi/models/active_recurring.py +978 -0
  80. fortis_python_sdk-1.0.10/fortisapi/models/additional_access.py +102 -0
  81. fortis_python_sdk-1.0.10/fortisapi/models/additional_amount.py +201 -0
  82. fortis_python_sdk-1.0.10/fortisapi/models/addon.py +222 -0
  83. fortis_python_sdk-1.0.10/fortisapi/models/addon_transaction_type_enum.py +57 -0
  84. fortis_python_sdk-1.0.10/fortisapi/models/address.py +205 -0
  85. fortis_python_sdk-1.0.10/fortisapi/models/address_1.py +228 -0
  86. fortis_python_sdk-1.0.10/fortisapi/models/address_2.py +204 -0
  87. fortis_python_sdk-1.0.10/fortisapi/models/address_71.py +186 -0
  88. fortis_python_sdk-1.0.10/fortisapi/models/address_match_enum.py +54 -0
  89. fortis_python_sdk-1.0.10/fortisapi/models/address_type_enum.py +50 -0
  90. fortis_python_sdk-1.0.10/fortisapi/models/all_tag.py +194 -0
  91. fortis_python_sdk-1.0.10/fortisapi/models/alt_bank_account.py +180 -0
  92. fortis_python_sdk-1.0.10/fortisapi/models/amount_ind_enum.py +121 -0
  93. fortis_python_sdk-1.0.10/fortisapi/models/app_delivery_enum.py +50 -0
  94. fortis_python_sdk-1.0.10/fortisapi/models/auth_currency_enum.py +168 -0
  95. fortis_python_sdk-1.0.10/fortisapi/models/avs_enum.py +56 -0
  96. fortis_python_sdk-1.0.10/fortisapi/models/balance.py +154 -0
  97. fortis_python_sdk-1.0.10/fortisapi/models/bank_account.py +156 -0
  98. fortis_python_sdk-1.0.10/fortisapi/models/bank_account_1.py +186 -0
  99. fortis_python_sdk-1.0.10/fortisapi/models/batch_risk_config.py +132 -0
  100. fortis_python_sdk-1.0.10/fortisapi/models/billing_address.py +233 -0
  101. fortis_python_sdk-1.0.10/fortisapi/models/billing_address_1.py +258 -0
  102. fortis_python_sdk-1.0.10/fortisapi/models/billing_address_24.py +263 -0
  103. fortis_python_sdk-1.0.10/fortisapi/models/billing_address_5.py +155 -0
  104. fortis_python_sdk-1.0.10/fortisapi/models/body.py +134 -0
  105. fortis_python_sdk-1.0.10/fortisapi/models/branding_domain.py +867 -0
  106. fortis_python_sdk-1.0.10/fortisapi/models/branding_domain_1.py +867 -0
  107. fortis_python_sdk-1.0.10/fortisapi/models/broad_info.py +241 -0
  108. fortis_python_sdk-1.0.10/fortisapi/models/browser_information.py +401 -0
  109. fortis_python_sdk-1.0.10/fortisapi/models/business_category_enum.py +77 -0
  110. fortis_python_sdk-1.0.10/fortisapi/models/business_type_enum.py +365 -0
  111. fortis_python_sdk-1.0.10/fortisapi/models/cardholder.py +324 -0
  112. fortis_python_sdk-1.0.10/fortisapi/models/cardholder_account.py +211 -0
  113. fortis_python_sdk-1.0.10/fortisapi/models/category_enum.py +133 -0
  114. fortis_python_sdk-1.0.10/fortisapi/models/cau_subscribe_type_code_enum.py +50 -0
  115. fortis_python_sdk-1.0.10/fortisapi/models/cau_subscribe_type_id_enum.py +50 -0
  116. fortis_python_sdk-1.0.10/fortisapi/models/cau_summary_status_id_enum.py +53 -0
  117. fortis_python_sdk-1.0.10/fortisapi/models/cc_product_transaction.py +3048 -0
  118. fortis_python_sdk-1.0.10/fortisapi/models/ch_acc_age_ind_enum.py +66 -0
  119. fortis_python_sdk-1.0.10/fortisapi/models/ch_acc_change_ind_enum.py +63 -0
  120. fortis_python_sdk-1.0.10/fortisapi/models/ch_acc_pw_change_ind_enum.py +67 -0
  121. fortis_python_sdk-1.0.10/fortisapi/models/challenge_message_extension.py +177 -0
  122. fortis_python_sdk-1.0.10/fortisapi/models/challenge_window_size_enum.py +73 -0
  123. fortis_python_sdk-1.0.10/fortisapi/models/changelog.py +280 -0
  124. fortis_python_sdk-1.0.10/fortisapi/models/changelog_detail.py +178 -0
  125. fortis_python_sdk-1.0.10/fortisapi/models/children.py +827 -0
  126. fortis_python_sdk-1.0.10/fortisapi/models/communication_type_enum.py +50 -0
  127. fortis_python_sdk-1.0.10/fortisapi/models/conditions.py +125 -0
  128. fortis_python_sdk-1.0.10/fortisapi/models/conditions_18.py +146 -0
  129. fortis_python_sdk-1.0.10/fortisapi/models/conditions_181.py +146 -0
  130. fortis_python_sdk-1.0.10/fortisapi/models/conditions_191.py +146 -0
  131. fortis_python_sdk-1.0.10/fortisapi/models/conditions_27.py +125 -0
  132. fortis_python_sdk-1.0.10/fortisapi/models/conditions_4.py +146 -0
  133. fortis_python_sdk-1.0.10/fortisapi/models/conditions_41.py +146 -0
  134. fortis_python_sdk-1.0.10/fortisapi/models/conditions_42.py +146 -0
  135. fortis_python_sdk-1.0.10/fortisapi/models/conditions_43.py +146 -0
  136. fortis_python_sdk-1.0.10/fortisapi/models/contact.py +179 -0
  137. fortis_python_sdk-1.0.10/fortisapi/models/contact_1.py +827 -0
  138. fortis_python_sdk-1.0.10/fortisapi/models/contact_10.py +169 -0
  139. fortis_python_sdk-1.0.10/fortisapi/models/contact_9.py +244 -0
  140. fortis_python_sdk-1.0.10/fortisapi/models/contact_user_default_entry_page_enum.py +59 -0
  141. fortis_python_sdk-1.0.10/fortisapi/models/context.py +125 -0
  142. fortis_python_sdk-1.0.10/fortisapi/models/country_enum.py +47 -0
  143. fortis_python_sdk-1.0.10/fortisapi/models/created_user.py +1202 -0
  144. fortis_python_sdk-1.0.10/fortisapi/models/currency_code_enum.py +186 -0
  145. fortis_python_sdk-1.0.10/fortisapi/models/currency_type.py +131 -0
  146. fortis_python_sdk-1.0.10/fortisapi/models/data.py +225 -0
  147. fortis_python_sdk-1.0.10/fortisapi/models/data_1.py +105 -0
  148. fortis_python_sdk-1.0.10/fortisapi/models/data_10.py +1283 -0
  149. fortis_python_sdk-1.0.10/fortisapi/models/data_11.py +948 -0
  150. fortis_python_sdk-1.0.10/fortisapi/models/data_12.py +369 -0
  151. fortis_python_sdk-1.0.10/fortisapi/models/data_13.py +263 -0
  152. fortis_python_sdk-1.0.10/fortisapi/models/data_14.py +552 -0
  153. fortis_python_sdk-1.0.10/fortisapi/models/data_15.py +102 -0
  154. fortis_python_sdk-1.0.10/fortisapi/models/data_16.py +930 -0
  155. fortis_python_sdk-1.0.10/fortisapi/models/data_17.py +925 -0
  156. fortis_python_sdk-1.0.10/fortisapi/models/data_18.py +102 -0
  157. fortis_python_sdk-1.0.10/fortisapi/models/data_19.py +631 -0
  158. fortis_python_sdk-1.0.10/fortisapi/models/data_2.py +1139 -0
  159. fortis_python_sdk-1.0.10/fortisapi/models/data_20.py +1661 -0
  160. fortis_python_sdk-1.0.10/fortisapi/models/data_21.py +223 -0
  161. fortis_python_sdk-1.0.10/fortisapi/models/data_22.py +1344 -0
  162. fortis_python_sdk-1.0.10/fortisapi/models/data_23.py +245 -0
  163. fortis_python_sdk-1.0.10/fortisapi/models/data_24.py +219 -0
  164. fortis_python_sdk-1.0.10/fortisapi/models/data_25.py +1464 -0
  165. fortis_python_sdk-1.0.10/fortisapi/models/data_26.py +376 -0
  166. fortis_python_sdk-1.0.10/fortisapi/models/data_27.py +1681 -0
  167. fortis_python_sdk-1.0.10/fortisapi/models/data_28.py +380 -0
  168. fortis_python_sdk-1.0.10/fortisapi/models/data_29.py +4256 -0
  169. fortis_python_sdk-1.0.10/fortisapi/models/data_3.py +296 -0
  170. fortis_python_sdk-1.0.10/fortisapi/models/data_30.py +421 -0
  171. fortis_python_sdk-1.0.10/fortisapi/models/data_31.py +150 -0
  172. fortis_python_sdk-1.0.10/fortisapi/models/data_34.py +103 -0
  173. fortis_python_sdk-1.0.10/fortisapi/models/data_35.py +259 -0
  174. fortis_python_sdk-1.0.10/fortisapi/models/data_36.py +537 -0
  175. fortis_python_sdk-1.0.10/fortisapi/models/data_4.py +482 -0
  176. fortis_python_sdk-1.0.10/fortisapi/models/data_5.py +171 -0
  177. fortis_python_sdk-1.0.10/fortisapi/models/data_6.py +469 -0
  178. fortis_python_sdk-1.0.10/fortisapi/models/data_7.py +230 -0
  179. fortis_python_sdk-1.0.10/fortisapi/models/data_8.py +616 -0
  180. fortis_python_sdk-1.0.10/fortisapi/models/data_9.py +129 -0
  181. fortis_python_sdk-1.0.10/fortisapi/models/debit_credit_enum.py +48 -0
  182. fortis_python_sdk-1.0.10/fortisapi/models/declined_recurring_notification.py +251 -0
  183. fortis_python_sdk-1.0.10/fortisapi/models/default_transaction_type_enum.py +50 -0
  184. fortis_python_sdk-1.0.10/fortisapi/models/delivery_method_enum.py +61 -0
  185. fortis_python_sdk-1.0.10/fortisapi/models/delivery_timeframe_enum.py +61 -0
  186. fortis_python_sdk-1.0.10/fortisapi/models/deposit_type_enum.py +50 -0
  187. fortis_python_sdk-1.0.10/fortisapi/models/detail.py +173 -0
  188. fortis_python_sdk-1.0.10/fortisapi/models/detail_1.py +323 -0
  189. fortis_python_sdk-1.0.10/fortisapi/models/detail_2.py +281 -0
  190. fortis_python_sdk-1.0.10/fortisapi/models/developer_company.py +270 -0
  191. fortis_python_sdk-1.0.10/fortisapi/models/device.py +123 -0
  192. fortis_python_sdk-1.0.10/fortisapi/models/device_binding_status_enum.py +373 -0
  193. fortis_python_sdk-1.0.10/fortisapi/models/device_channel_enum.py +51 -0
  194. fortis_python_sdk-1.0.10/fortisapi/models/document.py +115 -0
  195. fortis_python_sdk-1.0.10/fortisapi/models/e_format_enum.py +62 -0
  196. fortis_python_sdk-1.0.10/fortisapi/models/ebt_plan_enum.py +50 -0
  197. fortis_python_sdk-1.0.10/fortisapi/models/ebt_type_enum.py +61 -0
  198. fortis_python_sdk-1.0.10/fortisapi/models/email_blacklist.py +178 -0
  199. fortis_python_sdk-1.0.10/fortisapi/models/email_enum.py +47 -0
  200. fortis_python_sdk-1.0.10/fortisapi/models/emv_receipt_data.py +244 -0
  201. fortis_python_sdk-1.0.10/fortisapi/models/entry_mode_id_enum.py +73 -0
  202. fortis_python_sdk-1.0.10/fortisapi/models/expand_108_enum.py +48 -0
  203. fortis_python_sdk-1.0.10/fortisapi/models/expand_10_enum.py +42 -0
  204. fortis_python_sdk-1.0.10/fortisapi/models/expand_11_enum.py +99 -0
  205. fortis_python_sdk-1.0.10/fortisapi/models/expand_15_enum.py +42 -0
  206. fortis_python_sdk-1.0.10/fortisapi/models/expand_17_enum.py +96 -0
  207. fortis_python_sdk-1.0.10/fortisapi/models/expand_18_enum.py +84 -0
  208. fortis_python_sdk-1.0.10/fortisapi/models/expand_1_enum.py +75 -0
  209. fortis_python_sdk-1.0.10/fortisapi/models/expand_26_enum.py +87 -0
  210. fortis_python_sdk-1.0.10/fortisapi/models/expand_34_enum.py +42 -0
  211. fortis_python_sdk-1.0.10/fortisapi/models/expand_37_enum.py +42 -0
  212. fortis_python_sdk-1.0.10/fortisapi/models/expand_40_enum.py +63 -0
  213. fortis_python_sdk-1.0.10/fortisapi/models/expand_44_enum.py +48 -0
  214. fortis_python_sdk-1.0.10/fortisapi/models/expand_47_enum.py +69 -0
  215. fortis_python_sdk-1.0.10/fortisapi/models/expand_57_enum.py +54 -0
  216. fortis_python_sdk-1.0.10/fortisapi/models/expand_5_enum.py +48 -0
  217. fortis_python_sdk-1.0.10/fortisapi/models/expand_60_enum.py +171 -0
  218. fortis_python_sdk-1.0.10/fortisapi/models/expand_8_enum.py +57 -0
  219. fortis_python_sdk-1.0.10/fortisapi/models/expand_enum.py +51 -0
  220. fortis_python_sdk-1.0.10/fortisapi/models/field.py +125 -0
  221. fortis_python_sdk-1.0.10/fortisapi/models/field_21.py +267 -0
  222. fortis_python_sdk-1.0.10/fortisapi/models/field_28_enum.py +132 -0
  223. fortis_python_sdk-1.0.10/fortisapi/models/field_29_enum.py +168 -0
  224. fortis_python_sdk-1.0.10/fortisapi/models/field_31_enum.py +75 -0
  225. fortis_python_sdk-1.0.10/fortisapi/models/field_32_enum.py +87 -0
  226. fortis_python_sdk-1.0.10/fortisapi/models/field_34_enum.py +183 -0
  227. fortis_python_sdk-1.0.10/fortisapi/models/field_35_enum.py +195 -0
  228. fortis_python_sdk-1.0.10/fortisapi/models/field_36_enum.py +180 -0
  229. fortis_python_sdk-1.0.10/fortisapi/models/field_37_enum.py +192 -0
  230. fortis_python_sdk-1.0.10/fortisapi/models/field_38_enum.py +102 -0
  231. fortis_python_sdk-1.0.10/fortisapi/models/field_40_enum.py +186 -0
  232. fortis_python_sdk-1.0.10/fortisapi/models/field_42_enum.py +237 -0
  233. fortis_python_sdk-1.0.10/fortisapi/models/field_44_enum.py +198 -0
  234. fortis_python_sdk-1.0.10/fortisapi/models/field_46_enum.py +78 -0
  235. fortis_python_sdk-1.0.10/fortisapi/models/field_47_enum.py +114 -0
  236. fortis_python_sdk-1.0.10/fortisapi/models/field_48_enum.py +126 -0
  237. fortis_python_sdk-1.0.10/fortisapi/models/field_49_enum.py +60 -0
  238. fortis_python_sdk-1.0.10/fortisapi/models/field_51_enum.py +57 -0
  239. fortis_python_sdk-1.0.10/fortisapi/models/field_53_enum.py +210 -0
  240. fortis_python_sdk-1.0.10/fortisapi/models/field_55_enum.py +84 -0
  241. fortis_python_sdk-1.0.10/fortisapi/models/field_57_enum.py +231 -0
  242. fortis_python_sdk-1.0.10/fortisapi/models/field_59_enum.py +75 -0
  243. fortis_python_sdk-1.0.10/fortisapi/models/field_61_enum.py +510 -0
  244. fortis_python_sdk-1.0.10/fortisapi/models/field_configuration.py +202 -0
  245. fortis_python_sdk-1.0.10/fortisapi/models/file.py +412 -0
  246. fortis_python_sdk-1.0.10/fortisapi/models/file_2.py +125 -0
  247. fortis_python_sdk-1.0.10/fortisapi/models/file_5.py +130 -0
  248. fortis_python_sdk-1.0.10/fortisapi/models/filter_by.py +171 -0
  249. fortis_python_sdk-1.0.10/fortisapi/models/footer.py +134 -0
  250. fortis_python_sdk-1.0.10/fortisapi/models/forecast.py +250 -0
  251. fortis_python_sdk-1.0.10/fortisapi/models/format_1_enum.py +47 -0
  252. fortis_python_sdk-1.0.10/fortisapi/models/format_enum.py +47 -0
  253. fortis_python_sdk-1.0.10/fortisapi/models/header.py +134 -0
  254. fortis_python_sdk-1.0.10/fortisapi/models/helppage.py +270 -0
  255. fortis_python_sdk-1.0.10/fortisapi/models/home_phone.py +130 -0
  256. fortis_python_sdk-1.0.10/fortisapi/models/hosted_payment_page.py +558 -0
  257. fortis_python_sdk-1.0.10/fortisapi/models/identity_verification.py +183 -0
  258. fortis_python_sdk-1.0.10/fortisapi/models/identity_verification_2.py +183 -0
  259. fortis_python_sdk-1.0.10/fortisapi/models/identity_verification_27.py +165 -0
  260. fortis_python_sdk-1.0.10/fortisapi/models/idtype_enum.py +47 -0
  261. fortis_python_sdk-1.0.10/fortisapi/models/iias_ind_enum.py +64 -0
  262. fortis_python_sdk-1.0.10/fortisapi/models/industry_type_enum.py +59 -0
  263. fortis_python_sdk-1.0.10/fortisapi/models/initiation_type_enum.py +92 -0
  264. fortis_python_sdk-1.0.10/fortisapi/models/interval_type_enum.py +50 -0
  265. fortis_python_sdk-1.0.10/fortisapi/models/item_list.py +125 -0
  266. fortis_python_sdk-1.0.10/fortisapi/models/item_list_4.py +99 -0
  267. fortis_python_sdk-1.0.10/fortisapi/models/item_list_5.py +130 -0
  268. fortis_python_sdk-1.0.10/fortisapi/models/joi.py +104 -0
  269. fortis_python_sdk-1.0.10/fortisapi/models/joi_18.py +111 -0
  270. fortis_python_sdk-1.0.10/fortisapi/models/joi_19.py +111 -0
  271. fortis_python_sdk-1.0.10/fortisapi/models/joi_27.py +104 -0
  272. fortis_python_sdk-1.0.10/fortisapi/models/joi_4.py +110 -0
  273. fortis_python_sdk-1.0.10/fortisapi/models/kyc_response_object.py +101 -0
  274. fortis_python_sdk-1.0.10/fortisapi/models/level_3_data.py +481 -0
  275. fortis_python_sdk-1.0.10/fortisapi/models/level_3_data_5.py +324 -0
  276. fortis_python_sdk-1.0.10/fortisapi/models/level_3_data_6.py +469 -0
  277. fortis_python_sdk-1.0.10/fortisapi/models/level_3_default.py +481 -0
  278. fortis_python_sdk-1.0.10/fortisapi/models/line_item.py +450 -0
  279. fortis_python_sdk-1.0.10/fortisapi/models/line_item_13.py +449 -0
  280. fortis_python_sdk-1.0.10/fortisapi/models/line_item_19.py +360 -0
  281. fortis_python_sdk-1.0.10/fortisapi/models/line_item_20.py +273 -0
  282. fortis_python_sdk-1.0.10/fortisapi/models/links.py +196 -0
  283. fortis_python_sdk-1.0.10/fortisapi/models/list.py +650 -0
  284. fortis_python_sdk-1.0.10/fortisapi/models/list_1.py +1139 -0
  285. fortis_python_sdk-1.0.10/fortisapi/models/list_10.py +1661 -0
  286. fortis_python_sdk-1.0.10/fortisapi/models/list_11.py +1344 -0
  287. fortis_python_sdk-1.0.10/fortisapi/models/list_12.py +336 -0
  288. fortis_python_sdk-1.0.10/fortisapi/models/list_13.py +640 -0
  289. fortis_python_sdk-1.0.10/fortisapi/models/list_14.py +731 -0
  290. fortis_python_sdk-1.0.10/fortisapi/models/list_15.py +245 -0
  291. fortis_python_sdk-1.0.10/fortisapi/models/list_16.py +219 -0
  292. fortis_python_sdk-1.0.10/fortisapi/models/list_17.py +1464 -0
  293. fortis_python_sdk-1.0.10/fortisapi/models/list_18.py +376 -0
  294. fortis_python_sdk-1.0.10/fortisapi/models/list_19.py +1681 -0
  295. fortis_python_sdk-1.0.10/fortisapi/models/list_20.py +380 -0
  296. fortis_python_sdk-1.0.10/fortisapi/models/list_21.py +4256 -0
  297. fortis_python_sdk-1.0.10/fortisapi/models/list_3.py +296 -0
  298. fortis_python_sdk-1.0.10/fortisapi/models/list_4.py +469 -0
  299. fortis_python_sdk-1.0.10/fortisapi/models/list_5.py +948 -0
  300. fortis_python_sdk-1.0.10/fortisapi/models/list_6.py +1283 -0
  301. fortis_python_sdk-1.0.10/fortisapi/models/list_8.py +552 -0
  302. fortis_python_sdk-1.0.10/fortisapi/models/list_9.py +925 -0
  303. fortis_python_sdk-1.0.10/fortisapi/models/location.py +756 -0
  304. fortis_python_sdk-1.0.10/fortisapi/models/location_18.py +217 -0
  305. fortis_python_sdk-1.0.10/fortisapi/models/location_5.py +227 -0
  306. fortis_python_sdk-1.0.10/fortisapi/models/location_billing_account.py +509 -0
  307. fortis_python_sdk-1.0.10/fortisapi/models/location_type_26_enum.py +51 -0
  308. fortis_python_sdk-1.0.10/fortisapi/models/location_type_enum.py +50 -0
  309. fortis_python_sdk-1.0.10/fortisapi/models/locationmarketplace.py +247 -0
  310. fortis_python_sdk-1.0.10/fortisapi/models/log_email.py +364 -0
  311. fortis_python_sdk-1.0.10/fortisapi/models/log_sms.py +315 -0
  312. fortis_python_sdk-1.0.10/fortisapi/models/marketplace.py +247 -0
  313. fortis_python_sdk-1.0.10/fortisapi/models/masync.py +128 -0
  314. fortis_python_sdk-1.0.10/fortisapi/models/merchant_list.py +193 -0
  315. fortis_python_sdk-1.0.10/fortisapi/models/merchant_risk_indicator.py +341 -0
  316. fortis_python_sdk-1.0.10/fortisapi/models/message_category_enum.py +119 -0
  317. fortis_python_sdk-1.0.10/fortisapi/models/message_extension.py +177 -0
  318. fortis_python_sdk-1.0.10/fortisapi/models/meta.py +107 -0
  319. fortis_python_sdk-1.0.10/fortisapi/models/method_3.py +147 -0
  320. fortis_python_sdk-1.0.10/fortisapi/models/method_50.py +145 -0
  321. fortis_python_sdk-1.0.10/fortisapi/models/method_53_enum.py +56 -0
  322. fortis_python_sdk-1.0.10/fortisapi/models/method_5_enum.py +56 -0
  323. fortis_python_sdk-1.0.10/fortisapi/models/method_enum.py +56 -0
  324. fortis_python_sdk-1.0.10/fortisapi/models/mobile_phone.py +130 -0
  325. fortis_python_sdk-1.0.10/fortisapi/models/modified_user.py +1202 -0
  326. fortis_python_sdk-1.0.10/fortisapi/models/multi_transaction.py +147 -0
  327. fortis_python_sdk-1.0.10/fortisapi/models/operator_1_enum.py +59 -0
  328. fortis_python_sdk-1.0.10/fortisapi/models/operator_enum.py +47 -0
  329. fortis_python_sdk-1.0.10/fortisapi/models/order_22.py +99 -0
  330. fortis_python_sdk-1.0.10/fortisapi/models/order_enum.py +47 -0
  331. fortis_python_sdk-1.0.10/fortisapi/models/owner.py +323 -0
  332. fortis_python_sdk-1.0.10/fortisapi/models/ownership_type_enum.py +71 -0
  333. fortis_python_sdk-1.0.10/fortisapi/models/page.py +132 -0
  334. fortis_python_sdk-1.0.10/fortisapi/models/pagination.py +196 -0
  335. fortis_python_sdk-1.0.10/fortisapi/models/parent.py +827 -0
  336. fortis_python_sdk-1.0.10/fortisapi/models/parent_3.py +756 -0
  337. fortis_python_sdk-1.0.10/fortisapi/models/partner_enum.py +71 -0
  338. fortis_python_sdk-1.0.10/fortisapi/models/paylink_action_enum.py +47 -0
  339. fortis_python_sdk-1.0.10/fortisapi/models/payment_acc_ind_enum.py +67 -0
  340. fortis_python_sdk-1.0.10/fortisapi/models/payment_method_16_enum.py +47 -0
  341. fortis_python_sdk-1.0.10/fortisapi/models/payment_method_1_enum.py +47 -0
  342. fortis_python_sdk-1.0.10/fortisapi/models/payment_method_9_enum.py +50 -0
  343. fortis_python_sdk-1.0.10/fortisapi/models/payment_method_enum.py +50 -0
  344. fortis_python_sdk-1.0.10/fortisapi/models/payment_recurring_notification.py +251 -0
  345. fortis_python_sdk-1.0.10/fortisapi/models/payment_type_priority_enum.py +47 -0
  346. fortis_python_sdk-1.0.10/fortisapi/models/postback_log.py +295 -0
  347. fortis_python_sdk-1.0.10/fortisapi/models/postback_status_id_enum.py +53 -0
  348. fortis_python_sdk-1.0.10/fortisapi/models/pre_order_purchase_ind_enum.py +52 -0
  349. fortis_python_sdk-1.0.10/fortisapi/models/preferred_language_enum.py +51 -0
  350. fortis_python_sdk-1.0.10/fortisapi/models/preferred_protocol_version_enum.py +65 -0
  351. fortis_python_sdk-1.0.10/fortisapi/models/pricing_element.py +147 -0
  352. fortis_python_sdk-1.0.10/fortisapi/models/primary_principal.py +401 -0
  353. fortis_python_sdk-1.0.10/fortisapi/models/primary_principal_1.py +381 -0
  354. fortis_python_sdk-1.0.10/fortisapi/models/process_method_enum.py +47 -0
  355. fortis_python_sdk-1.0.10/fortisapi/models/processor_enum.py +62 -0
  356. fortis_python_sdk-1.0.10/fortisapi/models/product_accountvault.py +317 -0
  357. fortis_python_sdk-1.0.10/fortisapi/models/product_file.py +416 -0
  358. fortis_python_sdk-1.0.10/fortisapi/models/product_file_1.py +414 -0
  359. fortis_python_sdk-1.0.10/fortisapi/models/product_invoice.py +651 -0
  360. fortis_python_sdk-1.0.10/fortisapi/models/product_recurring.py +387 -0
  361. fortis_python_sdk-1.0.10/fortisapi/models/product_token.py +317 -0
  362. fortis_python_sdk-1.0.10/fortisapi/models/product_transaction.py +3048 -0
  363. fortis_python_sdk-1.0.10/fortisapi/models/product_transaction_1.py +3046 -0
  364. fortis_python_sdk-1.0.10/fortisapi/models/purchase.py +501 -0
  365. fortis_python_sdk-1.0.10/fortisapi/models/quick_invoice.py +1260 -0
  366. fortis_python_sdk-1.0.10/fortisapi/models/quick_invoice_setting.py +299 -0
  367. fortis_python_sdk-1.0.10/fortisapi/models/quick_invoice_view.py +176 -0
  368. fortis_python_sdk-1.0.10/fortisapi/models/reason_code.py +131 -0
  369. fortis_python_sdk-1.0.10/fortisapi/models/reason_code_id_1_enum.py +935 -0
  370. fortis_python_sdk-1.0.10/fortisapi/models/reason_code_id_enum.py +578 -0
  371. fortis_python_sdk-1.0.10/fortisapi/models/reason_model_enum.py +74 -0
  372. fortis_python_sdk-1.0.10/fortisapi/models/received_email.py +364 -0
  373. fortis_python_sdk-1.0.10/fortisapi/models/recipients_enum.py +62 -0
  374. fortis_python_sdk-1.0.10/fortisapi/models/recurring.py +978 -0
  375. fortis_python_sdk-1.0.10/fortisapi/models/recurring_3.py +980 -0
  376. fortis_python_sdk-1.0.10/fortisapi/models/recurring_flag_enum.py +64 -0
  377. fortis_python_sdk-1.0.10/fortisapi/models/recurring_split.py +200 -0
  378. fortis_python_sdk-1.0.10/fortisapi/models/recurring_type_id_enum.py +47 -0
  379. fortis_python_sdk-1.0.10/fortisapi/models/registration_field_enum.py +87 -0
  380. fortis_python_sdk-1.0.10/fortisapi/models/rejected_transaction.py +3221 -0
  381. fortis_python_sdk-1.0.10/fortisapi/models/rejected_transaction_ach_retry.py +244 -0
  382. fortis_python_sdk-1.0.10/fortisapi/models/relationship_enum.py +50 -0
  383. fortis_python_sdk-1.0.10/fortisapi/models/reorder_items_ind_enum.py +51 -0
  384. fortis_python_sdk-1.0.10/fortisapi/models/report_export_type_enum.py +53 -0
  385. fortis_python_sdk-1.0.10/fortisapi/models/resource_12_enum.py +52 -0
  386. fortis_python_sdk-1.0.10/fortisapi/models/resource_2_enum.py +50 -0
  387. fortis_python_sdk-1.0.10/fortisapi/models/resource_enum.py +55 -0
  388. fortis_python_sdk-1.0.10/fortisapi/models/response_416_date_range.py +148 -0
  389. fortis_python_sdk-1.0.10/fortisapi/models/response_417_filter_channels.py +148 -0
  390. fortis_python_sdk-1.0.10/fortisapi/models/response_apple_pay_validate_merchant.py +126 -0
  391. fortis_python_sdk-1.0.10/fortisapi/models/response_async_status.py +126 -0
  392. fortis_python_sdk-1.0.10/fortisapi/models/response_batchs_collection.py +228 -0
  393. fortis_python_sdk-1.0.10/fortisapi/models/response_calculate_surcharge.py +126 -0
  394. fortis_python_sdk-1.0.10/fortisapi/models/response_contact.py +126 -0
  395. fortis_python_sdk-1.0.10/fortisapi/models/response_contact_searchs_collection.py +228 -0
  396. fortis_python_sdk-1.0.10/fortisapi/models/response_contacts_collection.py +228 -0
  397. fortis_python_sdk-1.0.10/fortisapi/models/response_declined_recurring_transaction.py +126 -0
  398. fortis_python_sdk-1.0.10/fortisapi/models/response_declined_recurring_transaction_payment.py +126 -0
  399. fortis_python_sdk-1.0.10/fortisapi/models/response_declined_recurring_transaction_resend.py +126 -0
  400. fortis_python_sdk-1.0.10/fortisapi/models/response_declined_recurring_transactions_collection.py +228 -0
  401. fortis_python_sdk-1.0.10/fortisapi/models/response_device_term.py +126 -0
  402. fortis_python_sdk-1.0.10/fortisapi/models/response_device_terms_collection.py +228 -0
  403. fortis_python_sdk-1.0.10/fortisapi/models/response_fullboarding.py +126 -0
  404. fortis_python_sdk-1.0.10/fortisapi/models/response_location.py +126 -0
  405. fortis_python_sdk-1.0.10/fortisapi/models/response_location_info.py +126 -0
  406. fortis_python_sdk-1.0.10/fortisapi/models/response_location_infos_collection.py +228 -0
  407. fortis_python_sdk-1.0.10/fortisapi/models/response_location_searchs_collection.py +228 -0
  408. fortis_python_sdk-1.0.10/fortisapi/models/response_locations_collection.py +228 -0
  409. fortis_python_sdk-1.0.10/fortisapi/models/response_merchant.py +126 -0
  410. fortis_python_sdk-1.0.10/fortisapi/models/response_merchant_deposit.py +126 -0
  411. fortis_python_sdk-1.0.10/fortisapi/models/response_merchant_deposits_collection.py +228 -0
  412. fortis_python_sdk-1.0.10/fortisapi/models/response_merchant_details.py +126 -0
  413. fortis_python_sdk-1.0.10/fortisapi/models/response_onboarding.py +126 -0
  414. fortis_python_sdk-1.0.10/fortisapi/models/response_paylink.py +126 -0
  415. fortis_python_sdk-1.0.10/fortisapi/models/response_paylinks_collection.py +228 -0
  416. fortis_python_sdk-1.0.10/fortisapi/models/response_payment_card_reader_token.py +126 -0
  417. fortis_python_sdk-1.0.10/fortisapi/models/response_quick_invoice.py +126 -0
  418. fortis_python_sdk-1.0.10/fortisapi/models/response_quick_invoice_resend.py +126 -0
  419. fortis_python_sdk-1.0.10/fortisapi/models/response_quick_invoices_collection.py +228 -0
  420. fortis_python_sdk-1.0.10/fortisapi/models/response_recurring.py +126 -0
  421. fortis_python_sdk-1.0.10/fortisapi/models/response_recurrings_collection.py +228 -0
  422. fortis_python_sdk-1.0.10/fortisapi/models/response_reporting_reports_ach_settled_transactions_collection.py +231 -0
  423. fortis_python_sdk-1.0.10/fortisapi/models/response_reporting_reports_cc_settled_transactions_collection.py +231 -0
  424. fortis_python_sdk-1.0.10/fortisapi/models/response_reporting_reports_chargebacks_collection.py +228 -0
  425. fortis_python_sdk-1.0.10/fortisapi/models/response_signature.py +126 -0
  426. fortis_python_sdk-1.0.10/fortisapi/models/response_signatures_collection.py +228 -0
  427. fortis_python_sdk-1.0.10/fortisapi/models/response_tag.py +126 -0
  428. fortis_python_sdk-1.0.10/fortisapi/models/response_tags_collection.py +228 -0
  429. fortis_python_sdk-1.0.10/fortisapi/models/response_terminal.py +126 -0
  430. fortis_python_sdk-1.0.10/fortisapi/models/response_terminals_collection.py +228 -0
  431. fortis_python_sdk-1.0.10/fortisapi/models/response_three_ds_authentication.py +126 -0
  432. fortis_python_sdk-1.0.10/fortisapi/models/response_three_ds_transaction.py +126 -0
  433. fortis_python_sdk-1.0.10/fortisapi/models/response_ticket.py +126 -0
  434. fortis_python_sdk-1.0.10/fortisapi/models/response_ticket_intention.py +126 -0
  435. fortis_python_sdk-1.0.10/fortisapi/models/response_tickets_collection.py +228 -0
  436. fortis_python_sdk-1.0.10/fortisapi/models/response_token.py +126 -0
  437. fortis_python_sdk-1.0.10/fortisapi/models/response_tokens_collection.py +228 -0
  438. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction.py +126 -0
  439. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_ach_retry.py +126 -0
  440. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_ach_retrys_collection.py +228 -0
  441. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_bin_info.py +126 -0
  442. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_intention.py +126 -0
  443. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_level_3.py +126 -0
  444. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_level_3_master.py +126 -0
  445. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_level_3_visa.py +126 -0
  446. fortis_python_sdk-1.0.10/fortisapi/models/response_transaction_processing.py +126 -0
  447. fortis_python_sdk-1.0.10/fortisapi/models/response_transactions_collection.py +228 -0
  448. fortis_python_sdk-1.0.10/fortisapi/models/response_webhook.py +126 -0
  449. fortis_python_sdk-1.0.10/fortisapi/models/result.py +152 -0
  450. fortis_python_sdk-1.0.10/fortisapi/models/retry_transaction.py +3221 -0
  451. fortis_python_sdk-1.0.10/fortisapi/models/retry_transaction_ach_retry.py +246 -0
  452. fortis_python_sdk-1.0.10/fortisapi/models/return_fee_transaction.py +3221 -0
  453. fortis_python_sdk-1.0.10/fortisapi/models/return_fee_transaction_ach_retry.py +246 -0
  454. fortis_python_sdk-1.0.10/fortisapi/models/saved_account.py +1408 -0
  455. fortis_python_sdk-1.0.10/fortisapi/models/scheme_id_enum.py +54 -0
  456. fortis_python_sdk-1.0.10/fortisapi/models/sec_code_enum.py +51 -0
  457. fortis_python_sdk-1.0.10/fortisapi/models/settings.py +148 -0
  458. fortis_python_sdk-1.0.10/fortisapi/models/settled_currency_enum.py +168 -0
  459. fortis_python_sdk-1.0.10/fortisapi/models/severity_enum.py +62 -0
  460. fortis_python_sdk-1.0.10/fortisapi/models/ship_address_usage_ind_enum.py +62 -0
  461. fortis_python_sdk-1.0.10/fortisapi/models/ship_indicator_enum.py +101 -0
  462. fortis_python_sdk-1.0.10/fortisapi/models/ship_name_indicator_enum.py +52 -0
  463. fortis_python_sdk-1.0.10/fortisapi/models/shipping_address.py +264 -0
  464. fortis_python_sdk-1.0.10/fortisapi/models/signature.py +220 -0
  465. fortis_python_sdk-1.0.10/fortisapi/models/sms_blacklist.py +178 -0
  466. fortis_python_sdk-1.0.10/fortisapi/models/sms_enum.py +47 -0
  467. fortis_python_sdk-1.0.10/fortisapi/models/sort.py +132 -0
  468. fortis_python_sdk-1.0.10/fortisapi/models/source_enum.py +56 -0
  469. fortis_python_sdk-1.0.10/fortisapi/models/stack_enum.py +47 -0
  470. fortis_python_sdk-1.0.10/fortisapi/models/status_11.py +131 -0
  471. fortis_python_sdk-1.0.10/fortisapi/models/status_3_enum.py +47 -0
  472. fortis_python_sdk-1.0.10/fortisapi/models/status_5.py +102 -0
  473. fortis_python_sdk-1.0.10/fortisapi/models/status_code_12_enum.py +47 -0
  474. fortis_python_sdk-1.0.10/fortisapi/models/status_code_17_enum.py +102 -0
  475. fortis_python_sdk-1.0.10/fortisapi/models/status_code_enum.py +50 -0
  476. fortis_python_sdk-1.0.10/fortisapi/models/status_enum.py +50 -0
  477. fortis_python_sdk-1.0.10/fortisapi/models/status_id_enum.py +47 -0
  478. fortis_python_sdk-1.0.10/fortisapi/models/surcharge.py +574 -0
  479. fortis_python_sdk-1.0.10/fortisapi/models/surcharge_transaction.py +367 -0
  480. fortis_python_sdk-1.0.10/fortisapi/models/suspicious_acc_activity_enum.py +52 -0
  481. fortis_python_sdk-1.0.10/fortisapi/models/tag.py +194 -0
  482. fortis_python_sdk-1.0.10/fortisapi/models/tag_transaction.py +319 -0
  483. fortis_python_sdk-1.0.10/fortisapi/models/tax_exempt_enum.py +61 -0
  484. fortis_python_sdk-1.0.10/fortisapi/models/tax_surcharge_config_enum.py +47 -0
  485. fortis_python_sdk-1.0.10/fortisapi/models/terminal.py +1253 -0
  486. fortis_python_sdk-1.0.10/fortisapi/models/terminal_2.py +1251 -0
  487. fortis_python_sdk-1.0.10/fortisapi/models/terminal_application.py +411 -0
  488. fortis_python_sdk-1.0.10/fortisapi/models/terminal_cvm.py +293 -0
  489. fortis_python_sdk-1.0.10/fortisapi/models/terminal_manufacturer.py +249 -0
  490. fortis_python_sdk-1.0.10/fortisapi/models/terminal_manufacturer_code_enum.py +55 -0
  491. fortis_python_sdk-1.0.10/fortisapi/models/terminal_router.py +245 -0
  492. fortis_python_sdk-1.0.10/fortisapi/models/terminal_timeouts.py +304 -0
  493. fortis_python_sdk-1.0.10/fortisapi/models/terminal_timeouts_12.py +314 -0
  494. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_req_auth_method_enum.py +154 -0
  495. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_req_prior_auth_method_enum.py +123 -0
  496. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor.py +345 -0
  497. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor_authentication_ind_enum.py +141 -0
  498. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor_authentication_info.py +179 -0
  499. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor_challenge_ind_enum.py +126 -0
  500. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor_dec_req_ind_enum.py +72 -0
  501. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor_prior_authentication_info.py +188 -0
  502. fortis_python_sdk-1.0.10/fortisapi/models/three_ds_requestor_spc_support_enum.py +49 -0
  503. fortis_python_sdk-1.0.10/fortisapi/models/three_ri_ind_enum.py +180 -0
  504. fortis_python_sdk-1.0.10/fortisapi/models/tip_percents.py +160 -0
  505. fortis_python_sdk-1.0.10/fortisapi/models/trans_char_enum.py +45 -0
  506. fortis_python_sdk-1.0.10/fortisapi/models/transaction.py +3219 -0
  507. fortis_python_sdk-1.0.10/fortisapi/models/transaction_batch.py +537 -0
  508. fortis_python_sdk-1.0.10/fortisapi/models/transaction_batch_settlement.py +231 -0
  509. fortis_python_sdk-1.0.10/fortisapi/models/transaction_history.py +246 -0
  510. fortis_python_sdk-1.0.10/fortisapi/models/transaction_level_3.py +152 -0
  511. fortis_python_sdk-1.0.10/fortisapi/models/transaction_reference.py +298 -0
  512. fortis_python_sdk-1.0.10/fortisapi/models/transaction_split.py +221 -0
  513. fortis_python_sdk-1.0.10/fortisapi/models/transaction_status_enum.py +88 -0
  514. fortis_python_sdk-1.0.10/fortisapi/models/transaction_type_enum.py +68 -0
  515. fortis_python_sdk-1.0.10/fortisapi/models/trx_source_code_enum.py +155 -0
  516. fortis_python_sdk-1.0.10/fortisapi/models/trx_source_id_enum.py +155 -0
  517. fortis_python_sdk-1.0.10/fortisapi/models/type_102_enum.py +44 -0
  518. fortis_python_sdk-1.0.10/fortisapi/models/type_103_enum.py +44 -0
  519. fortis_python_sdk-1.0.10/fortisapi/models/type_107_enum.py +44 -0
  520. fortis_python_sdk-1.0.10/fortisapi/models/type_109_enum.py +44 -0
  521. fortis_python_sdk-1.0.10/fortisapi/models/type_10_enum.py +44 -0
  522. fortis_python_sdk-1.0.10/fortisapi/models/type_114_enum.py +44 -0
  523. fortis_python_sdk-1.0.10/fortisapi/models/type_118_enum.py +44 -0
  524. fortis_python_sdk-1.0.10/fortisapi/models/type_11_enum.py +44 -0
  525. fortis_python_sdk-1.0.10/fortisapi/models/type_125_enum.py +44 -0
  526. fortis_python_sdk-1.0.10/fortisapi/models/type_127.py +131 -0
  527. fortis_python_sdk-1.0.10/fortisapi/models/type_128_enum.py +44 -0
  528. fortis_python_sdk-1.0.10/fortisapi/models/type_129_enum.py +44 -0
  529. fortis_python_sdk-1.0.10/fortisapi/models/type_130_enum.py +44 -0
  530. fortis_python_sdk-1.0.10/fortisapi/models/type_131_enum.py +44 -0
  531. fortis_python_sdk-1.0.10/fortisapi/models/type_132_enum.py +44 -0
  532. fortis_python_sdk-1.0.10/fortisapi/models/type_138_enum.py +44 -0
  533. fortis_python_sdk-1.0.10/fortisapi/models/type_139_enum.py +44 -0
  534. fortis_python_sdk-1.0.10/fortisapi/models/type_140_enum.py +44 -0
  535. fortis_python_sdk-1.0.10/fortisapi/models/type_15_enum.py +44 -0
  536. fortis_python_sdk-1.0.10/fortisapi/models/type_16_enum.py +44 -0
  537. fortis_python_sdk-1.0.10/fortisapi/models/type_1_enum.py +44 -0
  538. fortis_python_sdk-1.0.10/fortisapi/models/type_20_enum.py +44 -0
  539. fortis_python_sdk-1.0.10/fortisapi/models/type_21_enum.py +44 -0
  540. fortis_python_sdk-1.0.10/fortisapi/models/type_22_enum.py +44 -0
  541. fortis_python_sdk-1.0.10/fortisapi/models/type_23_enum.py +44 -0
  542. fortis_python_sdk-1.0.10/fortisapi/models/type_27_enum.py +44 -0
  543. fortis_python_sdk-1.0.10/fortisapi/models/type_28_enum.py +44 -0
  544. fortis_python_sdk-1.0.10/fortisapi/models/type_29_enum.py +64 -0
  545. fortis_python_sdk-1.0.10/fortisapi/models/type_2_enum.py +44 -0
  546. fortis_python_sdk-1.0.10/fortisapi/models/type_30_enum.py +44 -0
  547. fortis_python_sdk-1.0.10/fortisapi/models/type_31_enum.py +44 -0
  548. fortis_python_sdk-1.0.10/fortisapi/models/type_35_enum.py +44 -0
  549. fortis_python_sdk-1.0.10/fortisapi/models/type_39_enum.py +44 -0
  550. fortis_python_sdk-1.0.10/fortisapi/models/type_3_enum.py +44 -0
  551. fortis_python_sdk-1.0.10/fortisapi/models/type_43_enum.py +44 -0
  552. fortis_python_sdk-1.0.10/fortisapi/models/type_44_enum.py +44 -0
  553. fortis_python_sdk-1.0.10/fortisapi/models/type_45_enum.py +44 -0
  554. fortis_python_sdk-1.0.10/fortisapi/models/type_46_enum.py +44 -0
  555. fortis_python_sdk-1.0.10/fortisapi/models/type_47_enum.py +44 -0
  556. fortis_python_sdk-1.0.10/fortisapi/models/type_48_enum.py +44 -0
  557. fortis_python_sdk-1.0.10/fortisapi/models/type_4_enum.py +44 -0
  558. fortis_python_sdk-1.0.10/fortisapi/models/type_52_enum.py +44 -0
  559. fortis_python_sdk-1.0.10/fortisapi/models/type_53_enum.py +44 -0
  560. fortis_python_sdk-1.0.10/fortisapi/models/type_54_enum.py +44 -0
  561. fortis_python_sdk-1.0.10/fortisapi/models/type_55_enum.py +44 -0
  562. fortis_python_sdk-1.0.10/fortisapi/models/type_59_enum.py +44 -0
  563. fortis_python_sdk-1.0.10/fortisapi/models/type_5_enum.py +44 -0
  564. fortis_python_sdk-1.0.10/fortisapi/models/type_60_enum.py +44 -0
  565. fortis_python_sdk-1.0.10/fortisapi/models/type_61_enum.py +45 -0
  566. fortis_python_sdk-1.0.10/fortisapi/models/type_62_enum.py +44 -0
  567. fortis_python_sdk-1.0.10/fortisapi/models/type_63_enum.py +91 -0
  568. fortis_python_sdk-1.0.10/fortisapi/models/type_64_enum.py +44 -0
  569. fortis_python_sdk-1.0.10/fortisapi/models/type_65_enum.py +44 -0
  570. fortis_python_sdk-1.0.10/fortisapi/models/type_6_enum.py +44 -0
  571. fortis_python_sdk-1.0.10/fortisapi/models/type_70_enum.py +44 -0
  572. fortis_python_sdk-1.0.10/fortisapi/models/type_71_enum.py +44 -0
  573. fortis_python_sdk-1.0.10/fortisapi/models/type_75_enum.py +44 -0
  574. fortis_python_sdk-1.0.10/fortisapi/models/type_79_enum.py +44 -0
  575. fortis_python_sdk-1.0.10/fortisapi/models/type_83_enum.py +44 -0
  576. fortis_python_sdk-1.0.10/fortisapi/models/type_87_enum.py +44 -0
  577. fortis_python_sdk-1.0.10/fortisapi/models/type_88_enum.py +44 -0
  578. fortis_python_sdk-1.0.10/fortisapi/models/type_92_enum.py +44 -0
  579. fortis_python_sdk-1.0.10/fortisapi/models/type_93_enum.py +44 -0
  580. fortis_python_sdk-1.0.10/fortisapi/models/type_97_enum.py +44 -0
  581. fortis_python_sdk-1.0.10/fortisapi/models/type_98_enum.py +44 -0
  582. fortis_python_sdk-1.0.10/fortisapi/models/type_enum.py +44 -0
  583. fortis_python_sdk-1.0.10/fortisapi/models/type_id_enum.py +59 -0
  584. fortis_python_sdk-1.0.10/fortisapi/models/ui_prefs.py +204 -0
  585. fortis_python_sdk-1.0.10/fortisapi/models/update_if_exists_enum.py +44 -0
  586. fortis_python_sdk-1.0.10/fortisapi/models/user.py +180 -0
  587. fortis_python_sdk-1.0.10/fortisapi/models/user_1.py +1202 -0
  588. fortis_python_sdk-1.0.10/fortisapi/models/user_9.py +1200 -0
  589. fortis_python_sdk-1.0.10/fortisapi/models/user_type_code_enum.py +74 -0
  590. fortis_python_sdk-1.0.10/fortisapi/models/v_1_contacts_request.py +690 -0
  591. fortis_python_sdk-1.0.10/fortisapi/models/v_1_contacts_request_1.py +712 -0
  592. fortis_python_sdk-1.0.10/fortisapi/models/v_1_declined_recurring_transaction_payments_request.py +354 -0
  593. fortis_python_sdk-1.0.10/fortisapi/models/v_1_device_terms_request.py +161 -0
  594. fortis_python_sdk-1.0.10/fortisapi/models/v_1_elements_ticket_intention_request.py +195 -0
  595. fortis_python_sdk-1.0.10/fortisapi/models/v_1_elements_transaction_intention_request.py +591 -0
  596. fortis_python_sdk-1.0.10/fortisapi/models/v_1_fullboarding_request.py +860 -0
  597. fortis_python_sdk-1.0.10/fortisapi/models/v_1_merchant_threedsecure_authentication_request.py +696 -0
  598. fortis_python_sdk-1.0.10/fortisapi/models/v_1_onboarding_request.py +833 -0
  599. fortis_python_sdk-1.0.10/fortisapi/models/v_1_paylinks_request.py +728 -0
  600. fortis_python_sdk-1.0.10/fortisapi/models/v_1_paylinks_request_1.py +740 -0
  601. fortis_python_sdk-1.0.10/fortisapi/models/v_1_public_calculate_surcharge_request.py +527 -0
  602. fortis_python_sdk-1.0.10/fortisapi/models/v_1_quick_invoices_request.py +1039 -0
  603. fortis_python_sdk-1.0.10/fortisapi/models/v_1_quick_invoices_request_1.py +1078 -0
  604. fortis_python_sdk-1.0.10/fortisapi/models/v_1_quick_invoices_transaction_request.py +86 -0
  605. fortis_python_sdk-1.0.10/fortisapi/models/v_1_recurrings_defer_payment_request.py +86 -0
  606. fortis_python_sdk-1.0.10/fortisapi/models/v_1_recurrings_request.py +746 -0
  607. fortis_python_sdk-1.0.10/fortisapi/models/v_1_recurrings_request_1.py +761 -0
  608. fortis_python_sdk-1.0.10/fortisapi/models/v_1_recurrings_skip_payment_request.py +86 -0
  609. fortis_python_sdk-1.0.10/fortisapi/models/v_1_signatures_request.py +113 -0
  610. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tags_request.py +99 -0
  611. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tags_request_1.py +130 -0
  612. fortis_python_sdk-1.0.10/fortisapi/models/v_1_terminals_request.py +1013 -0
  613. fortis_python_sdk-1.0.10/fortisapi/models/v_1_terminals_request_1.py +1120 -0
  614. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tickets_request.py +286 -0
  615. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_ach_request.py +945 -0
  616. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_ach_request_1.py +907 -0
  617. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_cc_request.py +1071 -0
  618. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_cc_request_1.py +905 -0
  619. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_previous_transaction_request.py +858 -0
  620. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_terminal_async_request.py +889 -0
  621. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_terminal_request.py +889 -0
  622. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_ticket_request.py +882 -0
  623. fortis_python_sdk-1.0.10/fortisapi/models/v_1_tokens_wallet_request.py +919 -0
  624. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transaction_ach_retries_request.py +119 -0
  625. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_credit_keyed_request.py +1611 -0
  626. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_credit_prev_trxn_request.py +1627 -0
  627. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_credit_token_request.py +1671 -0
  628. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_debit_keyed_request.py +1611 -0
  629. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_debit_prev_trxn_request.py +1627 -0
  630. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_debit_token_request.py +1671 -0
  631. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ach_refund_prev_trxn_request.py +1627 -0
  632. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_auth_complete_request.py +1527 -0
  633. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_auth_increment_request.py +1541 -0
  634. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cash_refund_request.py +1523 -0
  635. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cash_sale_request.py +1497 -0
  636. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_keyed_request.py +2172 -0
  637. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_prev_trxn_request.py +2132 -0
  638. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_taptopay_request.py +1851 -0
  639. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_terminal_request.py +2090 -0
  640. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_ticket_request.py +2058 -0
  641. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_token_request.py +2137 -0
  642. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_auth_only_wallet_request.py +2070 -0
  643. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_keyed_request.py +2183 -0
  644. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_prev_trxn_request.py +2132 -0
  645. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_swiped_request.py +2094 -0
  646. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_terminal_request.py +2101 -0
  647. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_ticket_request.py +2069 -0
  648. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_token_request.py +2148 -0
  649. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_avs_only_wallet_request.py +2081 -0
  650. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_keyed_request.py +2184 -0
  651. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_prev_trxn_request.py +2133 -0
  652. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_swiped_request.py +2095 -0
  653. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_terminal_request.py +2102 -0
  654. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_ticket_request.py +2070 -0
  655. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_token_request.py +2149 -0
  656. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_balance_inquiry_wallet_request.py +2082 -0
  657. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_keyed_request.py +2226 -0
  658. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_prev_trxn_request.py +2132 -0
  659. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_taptopay_request.py +1877 -0
  660. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_terminal_request.py +2090 -0
  661. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_ticket_request.py +2058 -0
  662. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_token_request.py +2137 -0
  663. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_refund_wallet_request.py +2070 -0
  664. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_keyed_request.py +2172 -0
  665. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_prev_trxn_request.py +2132 -0
  666. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_taptopay_request.py +1851 -0
  667. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_terminal_request.py +2090 -0
  668. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_ticket_request.py +2058 -0
  669. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_token_request.py +2137 -0
  670. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_cc_sale_wallet_request.py +2070 -0
  671. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ebt_voucher_clear_refund_keyed_request.py +2198 -0
  672. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_ebt_voucher_clear_sale_keyed_request.py +2198 -0
  673. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_level_3_master_card_request.py +91 -0
  674. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_level_3_visa_request.py +91 -0
  675. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_partial_reversal_request.py +1470 -0
  676. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_refund_request.py +1456 -0
  677. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_tip_adjust_request.py +1981 -0
  678. fortis_python_sdk-1.0.10/fortisapi/models/v_1_transactions_void_request.py +130 -0
  679. fortis_python_sdk-1.0.10/fortisapi/models/v_1_wallet_provider_apple_pay_validate_merchant_request.py +127 -0
  680. fortis_python_sdk-1.0.10/fortisapi/models/v_1_wallet_provider_merchant_details_request.py +87 -0
  681. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_apm_onboarding_request.py +421 -0
  682. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_apm_onboarding_request_1.py +494 -0
  683. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_batch_request.py +410 -0
  684. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_batch_request_1.py +494 -0
  685. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_contact_request.py +421 -0
  686. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_contact_request_1.py +494 -0
  687. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_transaction_request.py +410 -0
  688. fortis_python_sdk-1.0.10/fortisapi/models/v_1_webhooks_transaction_request_1.py +494 -0
  689. fortis_python_sdk-1.0.10/fortisapi/models/values_4_enum.py +59 -0
  690. fortis_python_sdk-1.0.10/fortisapi/models/values_50_enum.py +59 -0
  691. fortis_python_sdk-1.0.10/fortisapi/models/values_51_enum.py +62 -0
  692. fortis_python_sdk-1.0.10/fortisapi/models/values_58_enum.py +59 -0
  693. fortis_python_sdk-1.0.10/fortisapi/models/values_5_enum.py +59 -0
  694. fortis_python_sdk-1.0.10/fortisapi/models/values_6_enum.py +59 -0
  695. fortis_python_sdk-1.0.10/fortisapi/models/values_7_enum.py +59 -0
  696. fortis_python_sdk-1.0.10/fortisapi/models/values_99_enum.py +45 -0
  697. fortis_python_sdk-1.0.10/fortisapi/models/values_enum.py +51 -0
  698. fortis_python_sdk-1.0.10/fortisapi/models/wallet_provider_enum.py +47 -0
  699. fortis_python_sdk-1.0.10/fortisapi/models/wallet_type_enum.py +86 -0
  700. fortis_python_sdk-1.0.10/fortisapi/models/work_phone.py +130 -0
  701. fortis_python_sdk-1.0.10/fortisapi/utilities/__init__.py +6 -0
  702. fortis_python_sdk-1.0.10/fortisapi/utilities/file_wrapper.py +45 -0
  703. fortis_python_sdk-1.0.10/fortisapi/utilities/union_type_lookup.py +436 -0
  704. fortis_python_sdk-1.0.10/pyproject.toml +22 -0
  705. fortis_python_sdk-1.0.8/MANIFEST.in +0 -2
  706. fortis_python_sdk-1.0.8/PKG-INFO +0 -183
  707. fortis_python_sdk-1.0.8/README.md +0 -166
  708. fortis_python_sdk-1.0.8/fortis_python_sdk.egg-info/PKG-INFO +0 -183
  709. fortis_python_sdk-1.0.8/fortis_python_sdk.egg-info/SOURCES.txt +0 -708
  710. fortis_python_sdk-1.0.8/fortisapi/__init__.py +0 -12
  711. fortis_python_sdk-1.0.8/fortisapi/api_helper.py +0 -19
  712. fortis_python_sdk-1.0.8/fortisapi/configuration.py +0 -294
  713. fortis_python_sdk-1.0.8/fortisapi/controllers/__init__.py +0 -40
  714. fortis_python_sdk-1.0.8/fortisapi/controllers/apple_pay_validate_merchant_controller.py +0 -84
  715. fortis_python_sdk-1.0.8/fortisapi/controllers/async_processing_controller.py +0 -78
  716. fortis_python_sdk-1.0.8/fortisapi/controllers/base_controller.py +0 -67
  717. fortis_python_sdk-1.0.8/fortisapi/controllers/batches_controller.py +0 -184
  718. fortis_python_sdk-1.0.8/fortisapi/controllers/calculate_surcharge_controller.py +0 -76
  719. fortis_python_sdk-1.0.8/fortisapi/controllers/contacts_controller.py +0 -398
  720. fortis_python_sdk-1.0.8/fortisapi/controllers/declined_recurring_transactions_controller.py +0 -326
  721. fortis_python_sdk-1.0.8/fortisapi/controllers/device_terms_controller.py +0 -242
  722. fortis_python_sdk-1.0.8/fortisapi/controllers/elements_controller.py +0 -129
  723. fortis_python_sdk-1.0.8/fortisapi/controllers/enterprise_link_redirect_controller.py +0 -81
  724. fortis_python_sdk-1.0.8/fortisapi/controllers/full_boarding_controller.py +0 -85
  725. fortis_python_sdk-1.0.8/fortisapi/controllers/level_3_data_controller.py +0 -219
  726. fortis_python_sdk-1.0.8/fortisapi/controllers/locations_controller.py +0 -478
  727. fortis_python_sdk-1.0.8/fortisapi/controllers/m_3_ds_authentication_controller.py +0 -90
  728. fortis_python_sdk-1.0.8/fortisapi/controllers/m_3_ds_transactions_controller.py +0 -84
  729. fortis_python_sdk-1.0.8/fortisapi/controllers/merchant_deposits_controller.py +0 -295
  730. fortis_python_sdk-1.0.8/fortisapi/controllers/merchant_details_controller.py +0 -82
  731. fortis_python_sdk-1.0.8/fortisapi/controllers/on_boarding_controller.py +0 -100
  732. fortis_python_sdk-1.0.8/fortisapi/controllers/paylinks_controller.py +0 -396
  733. fortis_python_sdk-1.0.8/fortisapi/controllers/payment_card_reader_token_controller.py +0 -76
  734. fortis_python_sdk-1.0.8/fortisapi/controllers/quick_invoices_controller.py +0 -531
  735. fortis_python_sdk-1.0.8/fortisapi/controllers/recurring_controller.py +0 -545
  736. fortis_python_sdk-1.0.8/fortisapi/controllers/reports_controller.py +0 -302
  737. fortis_python_sdk-1.0.8/fortisapi/controllers/signatures_controller.py +0 -249
  738. fortis_python_sdk-1.0.8/fortisapi/controllers/tags_controller.py +0 -328
  739. fortis_python_sdk-1.0.8/fortisapi/controllers/terminals_controller.py +0 -304
  740. fortis_python_sdk-1.0.8/fortisapi/controllers/tickets_controller.py +0 -249
  741. fortis_python_sdk-1.0.8/fortisapi/controllers/tokens_controller.py +0 -679
  742. fortis_python_sdk-1.0.8/fortisapi/controllers/transaction_ach_retries_controller.py +0 -250
  743. fortis_python_sdk-1.0.8/fortisapi/controllers/transactions_ach_controller.py +0 -398
  744. fortis_python_sdk-1.0.8/fortisapi/controllers/transactions_cash_controller.py +0 -123
  745. fortis_python_sdk-1.0.8/fortisapi/controllers/transactions_credit_card_controller.py +0 -1796
  746. fortis_python_sdk-1.0.8/fortisapi/controllers/transactions_ebt_card_controller.py +0 -147
  747. fortis_python_sdk-1.0.8/fortisapi/controllers/transactions_read_controller.py +0 -248
  748. fortis_python_sdk-1.0.8/fortisapi/controllers/transactions_updates_controller.py +0 -435
  749. fortis_python_sdk-1.0.8/fortisapi/controllers/webhooks_controller.py +0 -493
  750. fortis_python_sdk-1.0.8/fortisapi/exceptions/__init__.py +0 -8
  751. fortis_python_sdk-1.0.8/fortisapi/exceptions/api_exception.py +0 -36
  752. fortis_python_sdk-1.0.8/fortisapi/exceptions/response_401_token_exception.py +0 -77
  753. fortis_python_sdk-1.0.8/fortisapi/exceptions/response_412_exception.py +0 -109
  754. fortis_python_sdk-1.0.8/fortisapi/exceptions/response_error_exception.py +0 -109
  755. fortis_python_sdk-1.0.8/fortisapi/fortisapi_client.py +0 -360
  756. fortis_python_sdk-1.0.8/fortisapi/http/__init__.py +0 -11
  757. fortis_python_sdk-1.0.8/fortisapi/http/auth/__init__.py +0 -8
  758. fortis_python_sdk-1.0.8/fortisapi/http/auth/access_token.py +0 -100
  759. fortis_python_sdk-1.0.8/fortisapi/http/auth/developer_id.py +0 -100
  760. fortis_python_sdk-1.0.8/fortisapi/http/auth/user_api_key.py +0 -100
  761. fortis_python_sdk-1.0.8/fortisapi/http/auth/user_id.py +0 -100
  762. fortis_python_sdk-1.0.8/fortisapi/http/http_call_back.py +0 -20
  763. fortis_python_sdk-1.0.8/fortisapi/http/http_method_enum.py +0 -25
  764. fortis_python_sdk-1.0.8/fortisapi/http/http_request.py +0 -55
  765. fortis_python_sdk-1.0.8/fortisapi/http/http_response.py +0 -45
  766. fortis_python_sdk-1.0.8/fortisapi/http/proxy_settings.py +0 -50
  767. fortis_python_sdk-1.0.8/fortisapi/models/__init__.py +0 -640
  768. fortis_python_sdk-1.0.8/fortisapi/models/account_info.py +0 -519
  769. fortis_python_sdk-1.0.8/fortisapi/models/account_type_12_enum.py +0 -47
  770. fortis_python_sdk-1.0.8/fortisapi/models/account_type_13_enum.py +0 -51
  771. fortis_python_sdk-1.0.8/fortisapi/models/account_type_16_enum.py +0 -51
  772. fortis_python_sdk-1.0.8/fortisapi/models/account_type_enum.py +0 -83
  773. fortis_python_sdk-1.0.8/fortisapi/models/account_vault.py +0 -1408
  774. fortis_python_sdk-1.0.8/fortisapi/models/account_vault_cau_log.py +0 -201
  775. fortis_python_sdk-1.0.8/fortisapi/models/account_vault_cau_product_transaction.py +0 -754
  776. fortis_python_sdk-1.0.8/fortisapi/models/ach_product_transaction.py +0 -3048
  777. fortis_python_sdk-1.0.8/fortisapi/models/ach_sec_code_1_enum.py +0 -59
  778. fortis_python_sdk-1.0.8/fortisapi/models/ach_sec_code_31_enum.py +0 -61
  779. fortis_python_sdk-1.0.8/fortisapi/models/ach_sec_code_3_enum.py +0 -59
  780. fortis_python_sdk-1.0.8/fortisapi/models/ach_sec_code_enum.py +0 -67
  781. fortis_python_sdk-1.0.8/fortisapi/models/acs_challenge_mandated_enum.py +0 -52
  782. fortis_python_sdk-1.0.8/fortisapi/models/action_enum.py +0 -70
  783. fortis_python_sdk-1.0.8/fortisapi/models/active_recurring.py +0 -978
  784. fortis_python_sdk-1.0.8/fortisapi/models/additional_access.py +0 -102
  785. fortis_python_sdk-1.0.8/fortisapi/models/additional_amount.py +0 -201
  786. fortis_python_sdk-1.0.8/fortisapi/models/addon.py +0 -222
  787. fortis_python_sdk-1.0.8/fortisapi/models/addon_transaction_type_enum.py +0 -57
  788. fortis_python_sdk-1.0.8/fortisapi/models/address.py +0 -205
  789. fortis_python_sdk-1.0.8/fortisapi/models/address_1.py +0 -228
  790. fortis_python_sdk-1.0.8/fortisapi/models/address_2.py +0 -204
  791. fortis_python_sdk-1.0.8/fortisapi/models/address_71.py +0 -186
  792. fortis_python_sdk-1.0.8/fortisapi/models/address_match_enum.py +0 -54
  793. fortis_python_sdk-1.0.8/fortisapi/models/address_type_enum.py +0 -50
  794. fortis_python_sdk-1.0.8/fortisapi/models/all_tag.py +0 -194
  795. fortis_python_sdk-1.0.8/fortisapi/models/alt_bank_account.py +0 -180
  796. fortis_python_sdk-1.0.8/fortisapi/models/amount_ind_enum.py +0 -121
  797. fortis_python_sdk-1.0.8/fortisapi/models/app_delivery_enum.py +0 -50
  798. fortis_python_sdk-1.0.8/fortisapi/models/auth_currency_enum.py +0 -168
  799. fortis_python_sdk-1.0.8/fortisapi/models/avs_enum.py +0 -56
  800. fortis_python_sdk-1.0.8/fortisapi/models/balance.py +0 -154
  801. fortis_python_sdk-1.0.8/fortisapi/models/bank_account.py +0 -156
  802. fortis_python_sdk-1.0.8/fortisapi/models/bank_account_1.py +0 -186
  803. fortis_python_sdk-1.0.8/fortisapi/models/batch_risk_config.py +0 -132
  804. fortis_python_sdk-1.0.8/fortisapi/models/billing_address.py +0 -233
  805. fortis_python_sdk-1.0.8/fortisapi/models/billing_address_1.py +0 -258
  806. fortis_python_sdk-1.0.8/fortisapi/models/billing_address_24.py +0 -263
  807. fortis_python_sdk-1.0.8/fortisapi/models/billing_address_5.py +0 -155
  808. fortis_python_sdk-1.0.8/fortisapi/models/body.py +0 -134
  809. fortis_python_sdk-1.0.8/fortisapi/models/branding_domain.py +0 -867
  810. fortis_python_sdk-1.0.8/fortisapi/models/branding_domain_1.py +0 -867
  811. fortis_python_sdk-1.0.8/fortisapi/models/broad_info.py +0 -241
  812. fortis_python_sdk-1.0.8/fortisapi/models/browser_information.py +0 -401
  813. fortis_python_sdk-1.0.8/fortisapi/models/business_category_enum.py +0 -77
  814. fortis_python_sdk-1.0.8/fortisapi/models/business_type_enum.py +0 -365
  815. fortis_python_sdk-1.0.8/fortisapi/models/cardholder.py +0 -324
  816. fortis_python_sdk-1.0.8/fortisapi/models/cardholder_account.py +0 -211
  817. fortis_python_sdk-1.0.8/fortisapi/models/category_enum.py +0 -133
  818. fortis_python_sdk-1.0.8/fortisapi/models/cau_subscribe_type_code_enum.py +0 -50
  819. fortis_python_sdk-1.0.8/fortisapi/models/cau_subscribe_type_id_enum.py +0 -50
  820. fortis_python_sdk-1.0.8/fortisapi/models/cau_summary_status_id_enum.py +0 -53
  821. fortis_python_sdk-1.0.8/fortisapi/models/cc_product_transaction.py +0 -3048
  822. fortis_python_sdk-1.0.8/fortisapi/models/ch_acc_age_ind_enum.py +0 -66
  823. fortis_python_sdk-1.0.8/fortisapi/models/ch_acc_change_ind_enum.py +0 -63
  824. fortis_python_sdk-1.0.8/fortisapi/models/ch_acc_pw_change_ind_enum.py +0 -67
  825. fortis_python_sdk-1.0.8/fortisapi/models/challenge_message_extension.py +0 -177
  826. fortis_python_sdk-1.0.8/fortisapi/models/challenge_window_size_enum.py +0 -73
  827. fortis_python_sdk-1.0.8/fortisapi/models/changelog.py +0 -280
  828. fortis_python_sdk-1.0.8/fortisapi/models/changelog_detail.py +0 -178
  829. fortis_python_sdk-1.0.8/fortisapi/models/children.py +0 -827
  830. fortis_python_sdk-1.0.8/fortisapi/models/communication_type_enum.py +0 -50
  831. fortis_python_sdk-1.0.8/fortisapi/models/conditions.py +0 -125
  832. fortis_python_sdk-1.0.8/fortisapi/models/conditions_18.py +0 -146
  833. fortis_python_sdk-1.0.8/fortisapi/models/conditions_181.py +0 -146
  834. fortis_python_sdk-1.0.8/fortisapi/models/conditions_191.py +0 -146
  835. fortis_python_sdk-1.0.8/fortisapi/models/conditions_27.py +0 -125
  836. fortis_python_sdk-1.0.8/fortisapi/models/conditions_4.py +0 -146
  837. fortis_python_sdk-1.0.8/fortisapi/models/conditions_41.py +0 -146
  838. fortis_python_sdk-1.0.8/fortisapi/models/conditions_42.py +0 -146
  839. fortis_python_sdk-1.0.8/fortisapi/models/conditions_43.py +0 -146
  840. fortis_python_sdk-1.0.8/fortisapi/models/contact.py +0 -179
  841. fortis_python_sdk-1.0.8/fortisapi/models/contact_1.py +0 -827
  842. fortis_python_sdk-1.0.8/fortisapi/models/contact_9.py +0 -169
  843. fortis_python_sdk-1.0.8/fortisapi/models/contact_user_default_entry_page_enum.py +0 -59
  844. fortis_python_sdk-1.0.8/fortisapi/models/context.py +0 -125
  845. fortis_python_sdk-1.0.8/fortisapi/models/country_enum.py +0 -47
  846. fortis_python_sdk-1.0.8/fortisapi/models/created_user.py +0 -1202
  847. fortis_python_sdk-1.0.8/fortisapi/models/currency_code_enum.py +0 -186
  848. fortis_python_sdk-1.0.8/fortisapi/models/currency_type.py +0 -131
  849. fortis_python_sdk-1.0.8/fortisapi/models/data.py +0 -225
  850. fortis_python_sdk-1.0.8/fortisapi/models/data_1.py +0 -105
  851. fortis_python_sdk-1.0.8/fortisapi/models/data_10.py +0 -1283
  852. fortis_python_sdk-1.0.8/fortisapi/models/data_11.py +0 -948
  853. fortis_python_sdk-1.0.8/fortisapi/models/data_12.py +0 -369
  854. fortis_python_sdk-1.0.8/fortisapi/models/data_13.py +0 -263
  855. fortis_python_sdk-1.0.8/fortisapi/models/data_14.py +0 -552
  856. fortis_python_sdk-1.0.8/fortisapi/models/data_15.py +0 -102
  857. fortis_python_sdk-1.0.8/fortisapi/models/data_16.py +0 -930
  858. fortis_python_sdk-1.0.8/fortisapi/models/data_17.py +0 -925
  859. fortis_python_sdk-1.0.8/fortisapi/models/data_18.py +0 -102
  860. fortis_python_sdk-1.0.8/fortisapi/models/data_19.py +0 -631
  861. fortis_python_sdk-1.0.8/fortisapi/models/data_2.py +0 -1139
  862. fortis_python_sdk-1.0.8/fortisapi/models/data_20.py +0 -1661
  863. fortis_python_sdk-1.0.8/fortisapi/models/data_21.py +0 -223
  864. fortis_python_sdk-1.0.8/fortisapi/models/data_22.py +0 -1344
  865. fortis_python_sdk-1.0.8/fortisapi/models/data_23.py +0 -245
  866. fortis_python_sdk-1.0.8/fortisapi/models/data_24.py +0 -219
  867. fortis_python_sdk-1.0.8/fortisapi/models/data_25.py +0 -1464
  868. fortis_python_sdk-1.0.8/fortisapi/models/data_26.py +0 -376
  869. fortis_python_sdk-1.0.8/fortisapi/models/data_27.py +0 -1681
  870. fortis_python_sdk-1.0.8/fortisapi/models/data_28.py +0 -380
  871. fortis_python_sdk-1.0.8/fortisapi/models/data_29.py +0 -4256
  872. fortis_python_sdk-1.0.8/fortisapi/models/data_3.py +0 -296
  873. fortis_python_sdk-1.0.8/fortisapi/models/data_30.py +0 -421
  874. fortis_python_sdk-1.0.8/fortisapi/models/data_31.py +0 -150
  875. fortis_python_sdk-1.0.8/fortisapi/models/data_34.py +0 -103
  876. fortis_python_sdk-1.0.8/fortisapi/models/data_35.py +0 -259
  877. fortis_python_sdk-1.0.8/fortisapi/models/data_36.py +0 -537
  878. fortis_python_sdk-1.0.8/fortisapi/models/data_4.py +0 -482
  879. fortis_python_sdk-1.0.8/fortisapi/models/data_5.py +0 -171
  880. fortis_python_sdk-1.0.8/fortisapi/models/data_6.py +0 -469
  881. fortis_python_sdk-1.0.8/fortisapi/models/data_7.py +0 -230
  882. fortis_python_sdk-1.0.8/fortisapi/models/data_8.py +0 -616
  883. fortis_python_sdk-1.0.8/fortisapi/models/data_9.py +0 -129
  884. fortis_python_sdk-1.0.8/fortisapi/models/debit_credit_enum.py +0 -48
  885. fortis_python_sdk-1.0.8/fortisapi/models/declined_recurring_notification.py +0 -251
  886. fortis_python_sdk-1.0.8/fortisapi/models/default_transaction_type_enum.py +0 -50
  887. fortis_python_sdk-1.0.8/fortisapi/models/delivery_method_enum.py +0 -61
  888. fortis_python_sdk-1.0.8/fortisapi/models/delivery_timeframe_enum.py +0 -61
  889. fortis_python_sdk-1.0.8/fortisapi/models/deposit_type_enum.py +0 -50
  890. fortis_python_sdk-1.0.8/fortisapi/models/detail.py +0 -173
  891. fortis_python_sdk-1.0.8/fortisapi/models/detail_1.py +0 -323
  892. fortis_python_sdk-1.0.8/fortisapi/models/detail_2.py +0 -281
  893. fortis_python_sdk-1.0.8/fortisapi/models/developer_company.py +0 -270
  894. fortis_python_sdk-1.0.8/fortisapi/models/device.py +0 -123
  895. fortis_python_sdk-1.0.8/fortisapi/models/device_binding_status_enum.py +0 -373
  896. fortis_python_sdk-1.0.8/fortisapi/models/device_channel_enum.py +0 -51
  897. fortis_python_sdk-1.0.8/fortisapi/models/document.py +0 -115
  898. fortis_python_sdk-1.0.8/fortisapi/models/e_format_enum.py +0 -62
  899. fortis_python_sdk-1.0.8/fortisapi/models/ebt_plan_enum.py +0 -50
  900. fortis_python_sdk-1.0.8/fortisapi/models/ebt_type_enum.py +0 -61
  901. fortis_python_sdk-1.0.8/fortisapi/models/email_blacklist.py +0 -178
  902. fortis_python_sdk-1.0.8/fortisapi/models/email_enum.py +0 -47
  903. fortis_python_sdk-1.0.8/fortisapi/models/emv_receipt_data.py +0 -244
  904. fortis_python_sdk-1.0.8/fortisapi/models/entry_mode_id_enum.py +0 -73
  905. fortis_python_sdk-1.0.8/fortisapi/models/expand_108_enum.py +0 -48
  906. fortis_python_sdk-1.0.8/fortisapi/models/expand_10_enum.py +0 -42
  907. fortis_python_sdk-1.0.8/fortisapi/models/expand_11_enum.py +0 -99
  908. fortis_python_sdk-1.0.8/fortisapi/models/expand_15_enum.py +0 -42
  909. fortis_python_sdk-1.0.8/fortisapi/models/expand_17_enum.py +0 -96
  910. fortis_python_sdk-1.0.8/fortisapi/models/expand_18_enum.py +0 -84
  911. fortis_python_sdk-1.0.8/fortisapi/models/expand_1_enum.py +0 -75
  912. fortis_python_sdk-1.0.8/fortisapi/models/expand_26_enum.py +0 -87
  913. fortis_python_sdk-1.0.8/fortisapi/models/expand_34_enum.py +0 -42
  914. fortis_python_sdk-1.0.8/fortisapi/models/expand_37_enum.py +0 -42
  915. fortis_python_sdk-1.0.8/fortisapi/models/expand_40_enum.py +0 -63
  916. fortis_python_sdk-1.0.8/fortisapi/models/expand_44_enum.py +0 -48
  917. fortis_python_sdk-1.0.8/fortisapi/models/expand_47_enum.py +0 -69
  918. fortis_python_sdk-1.0.8/fortisapi/models/expand_57_enum.py +0 -54
  919. fortis_python_sdk-1.0.8/fortisapi/models/expand_5_enum.py +0 -48
  920. fortis_python_sdk-1.0.8/fortisapi/models/expand_60_enum.py +0 -171
  921. fortis_python_sdk-1.0.8/fortisapi/models/expand_8_enum.py +0 -57
  922. fortis_python_sdk-1.0.8/fortisapi/models/expand_enum.py +0 -51
  923. fortis_python_sdk-1.0.8/fortisapi/models/field.py +0 -125
  924. fortis_python_sdk-1.0.8/fortisapi/models/field_21.py +0 -267
  925. fortis_python_sdk-1.0.8/fortisapi/models/field_28_enum.py +0 -132
  926. fortis_python_sdk-1.0.8/fortisapi/models/field_29_enum.py +0 -168
  927. fortis_python_sdk-1.0.8/fortisapi/models/field_31_enum.py +0 -75
  928. fortis_python_sdk-1.0.8/fortisapi/models/field_32_enum.py +0 -87
  929. fortis_python_sdk-1.0.8/fortisapi/models/field_34_enum.py +0 -183
  930. fortis_python_sdk-1.0.8/fortisapi/models/field_35_enum.py +0 -195
  931. fortis_python_sdk-1.0.8/fortisapi/models/field_36_enum.py +0 -180
  932. fortis_python_sdk-1.0.8/fortisapi/models/field_37_enum.py +0 -192
  933. fortis_python_sdk-1.0.8/fortisapi/models/field_38_enum.py +0 -102
  934. fortis_python_sdk-1.0.8/fortisapi/models/field_40_enum.py +0 -186
  935. fortis_python_sdk-1.0.8/fortisapi/models/field_42_enum.py +0 -237
  936. fortis_python_sdk-1.0.8/fortisapi/models/field_44_enum.py +0 -198
  937. fortis_python_sdk-1.0.8/fortisapi/models/field_46_enum.py +0 -78
  938. fortis_python_sdk-1.0.8/fortisapi/models/field_47_enum.py +0 -111
  939. fortis_python_sdk-1.0.8/fortisapi/models/field_48_enum.py +0 -126
  940. fortis_python_sdk-1.0.8/fortisapi/models/field_49_enum.py +0 -60
  941. fortis_python_sdk-1.0.8/fortisapi/models/field_51_enum.py +0 -57
  942. fortis_python_sdk-1.0.8/fortisapi/models/field_53_enum.py +0 -210
  943. fortis_python_sdk-1.0.8/fortisapi/models/field_55_enum.py +0 -84
  944. fortis_python_sdk-1.0.8/fortisapi/models/field_57_enum.py +0 -231
  945. fortis_python_sdk-1.0.8/fortisapi/models/field_59_enum.py +0 -75
  946. fortis_python_sdk-1.0.8/fortisapi/models/field_61_enum.py +0 -510
  947. fortis_python_sdk-1.0.8/fortisapi/models/field_configuration.py +0 -202
  948. fortis_python_sdk-1.0.8/fortisapi/models/file.py +0 -412
  949. fortis_python_sdk-1.0.8/fortisapi/models/file_2.py +0 -125
  950. fortis_python_sdk-1.0.8/fortisapi/models/file_5.py +0 -130
  951. fortis_python_sdk-1.0.8/fortisapi/models/filter_by.py +0 -171
  952. fortis_python_sdk-1.0.8/fortisapi/models/footer.py +0 -134
  953. fortis_python_sdk-1.0.8/fortisapi/models/forecast.py +0 -250
  954. fortis_python_sdk-1.0.8/fortisapi/models/format_1_enum.py +0 -47
  955. fortis_python_sdk-1.0.8/fortisapi/models/format_enum.py +0 -47
  956. fortis_python_sdk-1.0.8/fortisapi/models/header.py +0 -134
  957. fortis_python_sdk-1.0.8/fortisapi/models/helppage.py +0 -270
  958. fortis_python_sdk-1.0.8/fortisapi/models/home_phone.py +0 -130
  959. fortis_python_sdk-1.0.8/fortisapi/models/hosted_payment_page.py +0 -558
  960. fortis_python_sdk-1.0.8/fortisapi/models/identity_verification.py +0 -183
  961. fortis_python_sdk-1.0.8/fortisapi/models/identity_verification_2.py +0 -183
  962. fortis_python_sdk-1.0.8/fortisapi/models/identity_verification_27.py +0 -165
  963. fortis_python_sdk-1.0.8/fortisapi/models/idtype_enum.py +0 -47
  964. fortis_python_sdk-1.0.8/fortisapi/models/iias_ind_enum.py +0 -64
  965. fortis_python_sdk-1.0.8/fortisapi/models/industry_type_enum.py +0 -59
  966. fortis_python_sdk-1.0.8/fortisapi/models/initiation_type_enum.py +0 -92
  967. fortis_python_sdk-1.0.8/fortisapi/models/interval_type_enum.py +0 -50
  968. fortis_python_sdk-1.0.8/fortisapi/models/item_list.py +0 -125
  969. fortis_python_sdk-1.0.8/fortisapi/models/item_list_4.py +0 -99
  970. fortis_python_sdk-1.0.8/fortisapi/models/item_list_5.py +0 -130
  971. fortis_python_sdk-1.0.8/fortisapi/models/joi.py +0 -104
  972. fortis_python_sdk-1.0.8/fortisapi/models/joi_18.py +0 -111
  973. fortis_python_sdk-1.0.8/fortisapi/models/joi_19.py +0 -111
  974. fortis_python_sdk-1.0.8/fortisapi/models/joi_27.py +0 -104
  975. fortis_python_sdk-1.0.8/fortisapi/models/joi_4.py +0 -110
  976. fortis_python_sdk-1.0.8/fortisapi/models/kyc_response_object.py +0 -101
  977. fortis_python_sdk-1.0.8/fortisapi/models/level_3_data.py +0 -481
  978. fortis_python_sdk-1.0.8/fortisapi/models/level_3_data_5.py +0 -324
  979. fortis_python_sdk-1.0.8/fortisapi/models/level_3_data_6.py +0 -469
  980. fortis_python_sdk-1.0.8/fortisapi/models/level_3_default.py +0 -481
  981. fortis_python_sdk-1.0.8/fortisapi/models/line_item.py +0 -450
  982. fortis_python_sdk-1.0.8/fortisapi/models/line_item_13.py +0 -449
  983. fortis_python_sdk-1.0.8/fortisapi/models/line_item_19.py +0 -360
  984. fortis_python_sdk-1.0.8/fortisapi/models/line_item_20.py +0 -273
  985. fortis_python_sdk-1.0.8/fortisapi/models/links.py +0 -196
  986. fortis_python_sdk-1.0.8/fortisapi/models/list.py +0 -650
  987. fortis_python_sdk-1.0.8/fortisapi/models/list_1.py +0 -1139
  988. fortis_python_sdk-1.0.8/fortisapi/models/list_10.py +0 -1661
  989. fortis_python_sdk-1.0.8/fortisapi/models/list_11.py +0 -1344
  990. fortis_python_sdk-1.0.8/fortisapi/models/list_12.py +0 -336
  991. fortis_python_sdk-1.0.8/fortisapi/models/list_13.py +0 -616
  992. fortis_python_sdk-1.0.8/fortisapi/models/list_14.py +0 -731
  993. fortis_python_sdk-1.0.8/fortisapi/models/list_15.py +0 -245
  994. fortis_python_sdk-1.0.8/fortisapi/models/list_16.py +0 -219
  995. fortis_python_sdk-1.0.8/fortisapi/models/list_17.py +0 -1464
  996. fortis_python_sdk-1.0.8/fortisapi/models/list_18.py +0 -376
  997. fortis_python_sdk-1.0.8/fortisapi/models/list_19.py +0 -1681
  998. fortis_python_sdk-1.0.8/fortisapi/models/list_20.py +0 -380
  999. fortis_python_sdk-1.0.8/fortisapi/models/list_21.py +0 -4256
  1000. fortis_python_sdk-1.0.8/fortisapi/models/list_3.py +0 -296
  1001. fortis_python_sdk-1.0.8/fortisapi/models/list_4.py +0 -469
  1002. fortis_python_sdk-1.0.8/fortisapi/models/list_5.py +0 -948
  1003. fortis_python_sdk-1.0.8/fortisapi/models/list_6.py +0 -1283
  1004. fortis_python_sdk-1.0.8/fortisapi/models/list_8.py +0 -552
  1005. fortis_python_sdk-1.0.8/fortisapi/models/list_9.py +0 -925
  1006. fortis_python_sdk-1.0.8/fortisapi/models/location.py +0 -756
  1007. fortis_python_sdk-1.0.8/fortisapi/models/location_18.py +0 -217
  1008. fortis_python_sdk-1.0.8/fortisapi/models/location_5.py +0 -227
  1009. fortis_python_sdk-1.0.8/fortisapi/models/location_billing_account.py +0 -509
  1010. fortis_python_sdk-1.0.8/fortisapi/models/location_type_26_enum.py +0 -51
  1011. fortis_python_sdk-1.0.8/fortisapi/models/location_type_enum.py +0 -50
  1012. fortis_python_sdk-1.0.8/fortisapi/models/locationmarketplace.py +0 -247
  1013. fortis_python_sdk-1.0.8/fortisapi/models/log_email.py +0 -364
  1014. fortis_python_sdk-1.0.8/fortisapi/models/log_sms.py +0 -315
  1015. fortis_python_sdk-1.0.8/fortisapi/models/marketplace.py +0 -247
  1016. fortis_python_sdk-1.0.8/fortisapi/models/masync.py +0 -128
  1017. fortis_python_sdk-1.0.8/fortisapi/models/merchant_list.py +0 -193
  1018. fortis_python_sdk-1.0.8/fortisapi/models/merchant_risk_indicator.py +0 -341
  1019. fortis_python_sdk-1.0.8/fortisapi/models/message_category_enum.py +0 -119
  1020. fortis_python_sdk-1.0.8/fortisapi/models/message_extension.py +0 -177
  1021. fortis_python_sdk-1.0.8/fortisapi/models/meta.py +0 -107
  1022. fortis_python_sdk-1.0.8/fortisapi/models/method_3.py +0 -147
  1023. fortis_python_sdk-1.0.8/fortisapi/models/method_50.py +0 -145
  1024. fortis_python_sdk-1.0.8/fortisapi/models/method_53_enum.py +0 -56
  1025. fortis_python_sdk-1.0.8/fortisapi/models/method_5_enum.py +0 -56
  1026. fortis_python_sdk-1.0.8/fortisapi/models/method_enum.py +0 -56
  1027. fortis_python_sdk-1.0.8/fortisapi/models/mobile_phone.py +0 -130
  1028. fortis_python_sdk-1.0.8/fortisapi/models/modified_user.py +0 -1202
  1029. fortis_python_sdk-1.0.8/fortisapi/models/multi_transaction.py +0 -147
  1030. fortis_python_sdk-1.0.8/fortisapi/models/operator_1_enum.py +0 -59
  1031. fortis_python_sdk-1.0.8/fortisapi/models/operator_enum.py +0 -47
  1032. fortis_python_sdk-1.0.8/fortisapi/models/order_22.py +0 -99
  1033. fortis_python_sdk-1.0.8/fortisapi/models/order_enum.py +0 -47
  1034. fortis_python_sdk-1.0.8/fortisapi/models/owner.py +0 -323
  1035. fortis_python_sdk-1.0.8/fortisapi/models/ownership_type_enum.py +0 -71
  1036. fortis_python_sdk-1.0.8/fortisapi/models/page.py +0 -132
  1037. fortis_python_sdk-1.0.8/fortisapi/models/pagination.py +0 -196
  1038. fortis_python_sdk-1.0.8/fortisapi/models/parent.py +0 -827
  1039. fortis_python_sdk-1.0.8/fortisapi/models/parent_3.py +0 -756
  1040. fortis_python_sdk-1.0.8/fortisapi/models/partner_enum.py +0 -71
  1041. fortis_python_sdk-1.0.8/fortisapi/models/paylink_action_enum.py +0 -47
  1042. fortis_python_sdk-1.0.8/fortisapi/models/payment_acc_ind_enum.py +0 -67
  1043. fortis_python_sdk-1.0.8/fortisapi/models/payment_method_16_enum.py +0 -47
  1044. fortis_python_sdk-1.0.8/fortisapi/models/payment_method_1_enum.py +0 -47
  1045. fortis_python_sdk-1.0.8/fortisapi/models/payment_method_9_enum.py +0 -50
  1046. fortis_python_sdk-1.0.8/fortisapi/models/payment_method_enum.py +0 -50
  1047. fortis_python_sdk-1.0.8/fortisapi/models/payment_recurring_notification.py +0 -251
  1048. fortis_python_sdk-1.0.8/fortisapi/models/payment_type_priority_enum.py +0 -47
  1049. fortis_python_sdk-1.0.8/fortisapi/models/postback_log.py +0 -295
  1050. fortis_python_sdk-1.0.8/fortisapi/models/postback_status_id_enum.py +0 -53
  1051. fortis_python_sdk-1.0.8/fortisapi/models/pre_order_purchase_ind_enum.py +0 -52
  1052. fortis_python_sdk-1.0.8/fortisapi/models/preferred_language_enum.py +0 -51
  1053. fortis_python_sdk-1.0.8/fortisapi/models/preferred_protocol_version_enum.py +0 -65
  1054. fortis_python_sdk-1.0.8/fortisapi/models/pricing_element.py +0 -147
  1055. fortis_python_sdk-1.0.8/fortisapi/models/primary_principal.py +0 -401
  1056. fortis_python_sdk-1.0.8/fortisapi/models/primary_principal_1.py +0 -381
  1057. fortis_python_sdk-1.0.8/fortisapi/models/process_method_enum.py +0 -47
  1058. fortis_python_sdk-1.0.8/fortisapi/models/processor_enum.py +0 -59
  1059. fortis_python_sdk-1.0.8/fortisapi/models/product_accountvault.py +0 -317
  1060. fortis_python_sdk-1.0.8/fortisapi/models/product_file.py +0 -416
  1061. fortis_python_sdk-1.0.8/fortisapi/models/product_file_1.py +0 -414
  1062. fortis_python_sdk-1.0.8/fortisapi/models/product_invoice.py +0 -651
  1063. fortis_python_sdk-1.0.8/fortisapi/models/product_recurring.py +0 -387
  1064. fortis_python_sdk-1.0.8/fortisapi/models/product_token.py +0 -317
  1065. fortis_python_sdk-1.0.8/fortisapi/models/product_transaction.py +0 -3048
  1066. fortis_python_sdk-1.0.8/fortisapi/models/product_transaction_1.py +0 -3046
  1067. fortis_python_sdk-1.0.8/fortisapi/models/purchase.py +0 -501
  1068. fortis_python_sdk-1.0.8/fortisapi/models/quick_invoice.py +0 -1260
  1069. fortis_python_sdk-1.0.8/fortisapi/models/quick_invoice_setting.py +0 -299
  1070. fortis_python_sdk-1.0.8/fortisapi/models/quick_invoice_view.py +0 -176
  1071. fortis_python_sdk-1.0.8/fortisapi/models/reason_code.py +0 -131
  1072. fortis_python_sdk-1.0.8/fortisapi/models/reason_code_id_1_enum.py +0 -935
  1073. fortis_python_sdk-1.0.8/fortisapi/models/reason_code_id_enum.py +0 -578
  1074. fortis_python_sdk-1.0.8/fortisapi/models/reason_model_enum.py +0 -74
  1075. fortis_python_sdk-1.0.8/fortisapi/models/received_email.py +0 -364
  1076. fortis_python_sdk-1.0.8/fortisapi/models/recipients_enum.py +0 -62
  1077. fortis_python_sdk-1.0.8/fortisapi/models/recurring.py +0 -978
  1078. fortis_python_sdk-1.0.8/fortisapi/models/recurring_3.py +0 -980
  1079. fortis_python_sdk-1.0.8/fortisapi/models/recurring_flag_enum.py +0 -64
  1080. fortis_python_sdk-1.0.8/fortisapi/models/recurring_split.py +0 -200
  1081. fortis_python_sdk-1.0.8/fortisapi/models/recurring_type_id_enum.py +0 -47
  1082. fortis_python_sdk-1.0.8/fortisapi/models/registration_field_enum.py +0 -87
  1083. fortis_python_sdk-1.0.8/fortisapi/models/rejected_transaction.py +0 -3221
  1084. fortis_python_sdk-1.0.8/fortisapi/models/rejected_transaction_ach_retry.py +0 -244
  1085. fortis_python_sdk-1.0.8/fortisapi/models/relationship_enum.py +0 -50
  1086. fortis_python_sdk-1.0.8/fortisapi/models/reorder_items_ind_enum.py +0 -51
  1087. fortis_python_sdk-1.0.8/fortisapi/models/report_export_type_enum.py +0 -53
  1088. fortis_python_sdk-1.0.8/fortisapi/models/resource_12_enum.py +0 -52
  1089. fortis_python_sdk-1.0.8/fortisapi/models/resource_2_enum.py +0 -50
  1090. fortis_python_sdk-1.0.8/fortisapi/models/resource_enum.py +0 -55
  1091. fortis_python_sdk-1.0.8/fortisapi/models/response_416_date_range.py +0 -148
  1092. fortis_python_sdk-1.0.8/fortisapi/models/response_417_filter_channels.py +0 -148
  1093. fortis_python_sdk-1.0.8/fortisapi/models/response_apple_pay_validate_merchant.py +0 -126
  1094. fortis_python_sdk-1.0.8/fortisapi/models/response_async_status.py +0 -126
  1095. fortis_python_sdk-1.0.8/fortisapi/models/response_batchs_collection.py +0 -228
  1096. fortis_python_sdk-1.0.8/fortisapi/models/response_calculate_surcharge.py +0 -126
  1097. fortis_python_sdk-1.0.8/fortisapi/models/response_contact.py +0 -126
  1098. fortis_python_sdk-1.0.8/fortisapi/models/response_contact_searchs_collection.py +0 -228
  1099. fortis_python_sdk-1.0.8/fortisapi/models/response_contacts_collection.py +0 -228
  1100. fortis_python_sdk-1.0.8/fortisapi/models/response_declined_recurring_transaction.py +0 -126
  1101. fortis_python_sdk-1.0.8/fortisapi/models/response_declined_recurring_transaction_payment.py +0 -126
  1102. fortis_python_sdk-1.0.8/fortisapi/models/response_declined_recurring_transaction_resend.py +0 -126
  1103. fortis_python_sdk-1.0.8/fortisapi/models/response_declined_recurring_transactions_collection.py +0 -228
  1104. fortis_python_sdk-1.0.8/fortisapi/models/response_device_term.py +0 -126
  1105. fortis_python_sdk-1.0.8/fortisapi/models/response_device_terms_collection.py +0 -228
  1106. fortis_python_sdk-1.0.8/fortisapi/models/response_fullboarding.py +0 -126
  1107. fortis_python_sdk-1.0.8/fortisapi/models/response_location.py +0 -126
  1108. fortis_python_sdk-1.0.8/fortisapi/models/response_location_info.py +0 -126
  1109. fortis_python_sdk-1.0.8/fortisapi/models/response_location_infos_collection.py +0 -228
  1110. fortis_python_sdk-1.0.8/fortisapi/models/response_location_searchs_collection.py +0 -228
  1111. fortis_python_sdk-1.0.8/fortisapi/models/response_locations_collection.py +0 -228
  1112. fortis_python_sdk-1.0.8/fortisapi/models/response_merchant.py +0 -126
  1113. fortis_python_sdk-1.0.8/fortisapi/models/response_merchant_deposit.py +0 -126
  1114. fortis_python_sdk-1.0.8/fortisapi/models/response_merchant_deposits_collection.py +0 -228
  1115. fortis_python_sdk-1.0.8/fortisapi/models/response_merchant_details.py +0 -126
  1116. fortis_python_sdk-1.0.8/fortisapi/models/response_onboarding.py +0 -126
  1117. fortis_python_sdk-1.0.8/fortisapi/models/response_paylink.py +0 -126
  1118. fortis_python_sdk-1.0.8/fortisapi/models/response_paylinks_collection.py +0 -228
  1119. fortis_python_sdk-1.0.8/fortisapi/models/response_payment_card_reader_token.py +0 -126
  1120. fortis_python_sdk-1.0.8/fortisapi/models/response_quick_invoice.py +0 -126
  1121. fortis_python_sdk-1.0.8/fortisapi/models/response_quick_invoice_resend.py +0 -126
  1122. fortis_python_sdk-1.0.8/fortisapi/models/response_quick_invoices_collection.py +0 -228
  1123. fortis_python_sdk-1.0.8/fortisapi/models/response_recurring.py +0 -126
  1124. fortis_python_sdk-1.0.8/fortisapi/models/response_recurrings_collection.py +0 -228
  1125. fortis_python_sdk-1.0.8/fortisapi/models/response_reporting_reports_ach_settled_transactions_collection.py +0 -231
  1126. fortis_python_sdk-1.0.8/fortisapi/models/response_reporting_reports_cc_settled_transactions_collection.py +0 -231
  1127. fortis_python_sdk-1.0.8/fortisapi/models/response_reporting_reports_chargebacks_collection.py +0 -228
  1128. fortis_python_sdk-1.0.8/fortisapi/models/response_signature.py +0 -126
  1129. fortis_python_sdk-1.0.8/fortisapi/models/response_signatures_collection.py +0 -228
  1130. fortis_python_sdk-1.0.8/fortisapi/models/response_tag.py +0 -126
  1131. fortis_python_sdk-1.0.8/fortisapi/models/response_tags_collection.py +0 -228
  1132. fortis_python_sdk-1.0.8/fortisapi/models/response_terminal.py +0 -126
  1133. fortis_python_sdk-1.0.8/fortisapi/models/response_terminals_collection.py +0 -228
  1134. fortis_python_sdk-1.0.8/fortisapi/models/response_three_ds_authentication.py +0 -126
  1135. fortis_python_sdk-1.0.8/fortisapi/models/response_three_ds_transaction.py +0 -126
  1136. fortis_python_sdk-1.0.8/fortisapi/models/response_ticket.py +0 -126
  1137. fortis_python_sdk-1.0.8/fortisapi/models/response_ticket_intention.py +0 -126
  1138. fortis_python_sdk-1.0.8/fortisapi/models/response_tickets_collection.py +0 -228
  1139. fortis_python_sdk-1.0.8/fortisapi/models/response_token.py +0 -126
  1140. fortis_python_sdk-1.0.8/fortisapi/models/response_tokens_collection.py +0 -228
  1141. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction.py +0 -126
  1142. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_ach_retry.py +0 -126
  1143. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_ach_retrys_collection.py +0 -228
  1144. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_bin_info.py +0 -126
  1145. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_intention.py +0 -126
  1146. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_level_3.py +0 -126
  1147. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_level_3_master.py +0 -126
  1148. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_level_3_visa.py +0 -126
  1149. fortis_python_sdk-1.0.8/fortisapi/models/response_transaction_processing.py +0 -126
  1150. fortis_python_sdk-1.0.8/fortisapi/models/response_transactions_collection.py +0 -228
  1151. fortis_python_sdk-1.0.8/fortisapi/models/response_webhook.py +0 -126
  1152. fortis_python_sdk-1.0.8/fortisapi/models/result.py +0 -152
  1153. fortis_python_sdk-1.0.8/fortisapi/models/retry_transaction.py +0 -3221
  1154. fortis_python_sdk-1.0.8/fortisapi/models/retry_transaction_ach_retry.py +0 -246
  1155. fortis_python_sdk-1.0.8/fortisapi/models/return_fee_transaction.py +0 -3221
  1156. fortis_python_sdk-1.0.8/fortisapi/models/return_fee_transaction_ach_retry.py +0 -246
  1157. fortis_python_sdk-1.0.8/fortisapi/models/saved_account.py +0 -1408
  1158. fortis_python_sdk-1.0.8/fortisapi/models/scheme_id_enum.py +0 -54
  1159. fortis_python_sdk-1.0.8/fortisapi/models/sec_code_enum.py +0 -51
  1160. fortis_python_sdk-1.0.8/fortisapi/models/settings.py +0 -148
  1161. fortis_python_sdk-1.0.8/fortisapi/models/settled_currency_enum.py +0 -168
  1162. fortis_python_sdk-1.0.8/fortisapi/models/severity_enum.py +0 -62
  1163. fortis_python_sdk-1.0.8/fortisapi/models/ship_address_usage_ind_enum.py +0 -62
  1164. fortis_python_sdk-1.0.8/fortisapi/models/ship_indicator_enum.py +0 -101
  1165. fortis_python_sdk-1.0.8/fortisapi/models/ship_name_indicator_enum.py +0 -52
  1166. fortis_python_sdk-1.0.8/fortisapi/models/shipping_address.py +0 -264
  1167. fortis_python_sdk-1.0.8/fortisapi/models/signature.py +0 -220
  1168. fortis_python_sdk-1.0.8/fortisapi/models/sms_blacklist.py +0 -178
  1169. fortis_python_sdk-1.0.8/fortisapi/models/sms_enum.py +0 -47
  1170. fortis_python_sdk-1.0.8/fortisapi/models/sort.py +0 -132
  1171. fortis_python_sdk-1.0.8/fortisapi/models/source_enum.py +0 -56
  1172. fortis_python_sdk-1.0.8/fortisapi/models/stack_enum.py +0 -47
  1173. fortis_python_sdk-1.0.8/fortisapi/models/status_11.py +0 -131
  1174. fortis_python_sdk-1.0.8/fortisapi/models/status_3_enum.py +0 -47
  1175. fortis_python_sdk-1.0.8/fortisapi/models/status_5.py +0 -102
  1176. fortis_python_sdk-1.0.8/fortisapi/models/status_code_12_enum.py +0 -47
  1177. fortis_python_sdk-1.0.8/fortisapi/models/status_code_17_enum.py +0 -102
  1178. fortis_python_sdk-1.0.8/fortisapi/models/status_code_enum.py +0 -50
  1179. fortis_python_sdk-1.0.8/fortisapi/models/status_enum.py +0 -50
  1180. fortis_python_sdk-1.0.8/fortisapi/models/status_id_enum.py +0 -47
  1181. fortis_python_sdk-1.0.8/fortisapi/models/surcharge.py +0 -574
  1182. fortis_python_sdk-1.0.8/fortisapi/models/surcharge_transaction.py +0 -367
  1183. fortis_python_sdk-1.0.8/fortisapi/models/suspicious_acc_activity_enum.py +0 -52
  1184. fortis_python_sdk-1.0.8/fortisapi/models/tag.py +0 -194
  1185. fortis_python_sdk-1.0.8/fortisapi/models/tag_transaction.py +0 -319
  1186. fortis_python_sdk-1.0.8/fortisapi/models/tax_exempt_enum.py +0 -61
  1187. fortis_python_sdk-1.0.8/fortisapi/models/tax_surcharge_config_enum.py +0 -47
  1188. fortis_python_sdk-1.0.8/fortisapi/models/terminal.py +0 -1253
  1189. fortis_python_sdk-1.0.8/fortisapi/models/terminal_2.py +0 -1251
  1190. fortis_python_sdk-1.0.8/fortisapi/models/terminal_application.py +0 -411
  1191. fortis_python_sdk-1.0.8/fortisapi/models/terminal_cvm.py +0 -293
  1192. fortis_python_sdk-1.0.8/fortisapi/models/terminal_manufacturer.py +0 -249
  1193. fortis_python_sdk-1.0.8/fortisapi/models/terminal_manufacturer_code_enum.py +0 -55
  1194. fortis_python_sdk-1.0.8/fortisapi/models/terminal_router.py +0 -245
  1195. fortis_python_sdk-1.0.8/fortisapi/models/terminal_timeouts.py +0 -304
  1196. fortis_python_sdk-1.0.8/fortisapi/models/terminal_timeouts_12.py +0 -314
  1197. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_req_auth_method_enum.py +0 -154
  1198. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_req_prior_auth_method_enum.py +0 -123
  1199. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor.py +0 -345
  1200. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor_authentication_ind_enum.py +0 -141
  1201. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor_authentication_info.py +0 -179
  1202. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor_challenge_ind_enum.py +0 -126
  1203. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor_dec_req_ind_enum.py +0 -72
  1204. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor_prior_authentication_info.py +0 -188
  1205. fortis_python_sdk-1.0.8/fortisapi/models/three_ds_requestor_spc_support_enum.py +0 -49
  1206. fortis_python_sdk-1.0.8/fortisapi/models/three_ri_ind_enum.py +0 -180
  1207. fortis_python_sdk-1.0.8/fortisapi/models/tip_percents.py +0 -160
  1208. fortis_python_sdk-1.0.8/fortisapi/models/trans_char_enum.py +0 -45
  1209. fortis_python_sdk-1.0.8/fortisapi/models/transaction.py +0 -3219
  1210. fortis_python_sdk-1.0.8/fortisapi/models/transaction_batch.py +0 -537
  1211. fortis_python_sdk-1.0.8/fortisapi/models/transaction_batch_settlement.py +0 -231
  1212. fortis_python_sdk-1.0.8/fortisapi/models/transaction_history.py +0 -246
  1213. fortis_python_sdk-1.0.8/fortisapi/models/transaction_level_3.py +0 -152
  1214. fortis_python_sdk-1.0.8/fortisapi/models/transaction_reference.py +0 -298
  1215. fortis_python_sdk-1.0.8/fortisapi/models/transaction_split.py +0 -221
  1216. fortis_python_sdk-1.0.8/fortisapi/models/transaction_status_enum.py +0 -88
  1217. fortis_python_sdk-1.0.8/fortisapi/models/transaction_type_enum.py +0 -68
  1218. fortis_python_sdk-1.0.8/fortisapi/models/trx_source_code_enum.py +0 -155
  1219. fortis_python_sdk-1.0.8/fortisapi/models/trx_source_id_enum.py +0 -155
  1220. fortis_python_sdk-1.0.8/fortisapi/models/type_102_enum.py +0 -44
  1221. fortis_python_sdk-1.0.8/fortisapi/models/type_103_enum.py +0 -44
  1222. fortis_python_sdk-1.0.8/fortisapi/models/type_107_enum.py +0 -44
  1223. fortis_python_sdk-1.0.8/fortisapi/models/type_109_enum.py +0 -44
  1224. fortis_python_sdk-1.0.8/fortisapi/models/type_10_enum.py +0 -44
  1225. fortis_python_sdk-1.0.8/fortisapi/models/type_114_enum.py +0 -44
  1226. fortis_python_sdk-1.0.8/fortisapi/models/type_118_enum.py +0 -44
  1227. fortis_python_sdk-1.0.8/fortisapi/models/type_11_enum.py +0 -44
  1228. fortis_python_sdk-1.0.8/fortisapi/models/type_125_enum.py +0 -44
  1229. fortis_python_sdk-1.0.8/fortisapi/models/type_127.py +0 -131
  1230. fortis_python_sdk-1.0.8/fortisapi/models/type_128_enum.py +0 -44
  1231. fortis_python_sdk-1.0.8/fortisapi/models/type_129_enum.py +0 -44
  1232. fortis_python_sdk-1.0.8/fortisapi/models/type_130_enum.py +0 -44
  1233. fortis_python_sdk-1.0.8/fortisapi/models/type_131_enum.py +0 -44
  1234. fortis_python_sdk-1.0.8/fortisapi/models/type_132_enum.py +0 -44
  1235. fortis_python_sdk-1.0.8/fortisapi/models/type_138_enum.py +0 -44
  1236. fortis_python_sdk-1.0.8/fortisapi/models/type_139_enum.py +0 -44
  1237. fortis_python_sdk-1.0.8/fortisapi/models/type_140_enum.py +0 -44
  1238. fortis_python_sdk-1.0.8/fortisapi/models/type_15_enum.py +0 -44
  1239. fortis_python_sdk-1.0.8/fortisapi/models/type_16_enum.py +0 -44
  1240. fortis_python_sdk-1.0.8/fortisapi/models/type_1_enum.py +0 -44
  1241. fortis_python_sdk-1.0.8/fortisapi/models/type_20_enum.py +0 -44
  1242. fortis_python_sdk-1.0.8/fortisapi/models/type_21_enum.py +0 -44
  1243. fortis_python_sdk-1.0.8/fortisapi/models/type_22_enum.py +0 -44
  1244. fortis_python_sdk-1.0.8/fortisapi/models/type_23_enum.py +0 -44
  1245. fortis_python_sdk-1.0.8/fortisapi/models/type_27_enum.py +0 -44
  1246. fortis_python_sdk-1.0.8/fortisapi/models/type_28_enum.py +0 -44
  1247. fortis_python_sdk-1.0.8/fortisapi/models/type_29_enum.py +0 -64
  1248. fortis_python_sdk-1.0.8/fortisapi/models/type_2_enum.py +0 -44
  1249. fortis_python_sdk-1.0.8/fortisapi/models/type_30_enum.py +0 -44
  1250. fortis_python_sdk-1.0.8/fortisapi/models/type_31_enum.py +0 -44
  1251. fortis_python_sdk-1.0.8/fortisapi/models/type_35_enum.py +0 -44
  1252. fortis_python_sdk-1.0.8/fortisapi/models/type_39_enum.py +0 -44
  1253. fortis_python_sdk-1.0.8/fortisapi/models/type_3_enum.py +0 -44
  1254. fortis_python_sdk-1.0.8/fortisapi/models/type_43_enum.py +0 -44
  1255. fortis_python_sdk-1.0.8/fortisapi/models/type_44_enum.py +0 -44
  1256. fortis_python_sdk-1.0.8/fortisapi/models/type_45_enum.py +0 -44
  1257. fortis_python_sdk-1.0.8/fortisapi/models/type_46_enum.py +0 -44
  1258. fortis_python_sdk-1.0.8/fortisapi/models/type_47_enum.py +0 -44
  1259. fortis_python_sdk-1.0.8/fortisapi/models/type_48_enum.py +0 -44
  1260. fortis_python_sdk-1.0.8/fortisapi/models/type_4_enum.py +0 -44
  1261. fortis_python_sdk-1.0.8/fortisapi/models/type_52_enum.py +0 -44
  1262. fortis_python_sdk-1.0.8/fortisapi/models/type_53_enum.py +0 -44
  1263. fortis_python_sdk-1.0.8/fortisapi/models/type_54_enum.py +0 -44
  1264. fortis_python_sdk-1.0.8/fortisapi/models/type_55_enum.py +0 -44
  1265. fortis_python_sdk-1.0.8/fortisapi/models/type_59_enum.py +0 -44
  1266. fortis_python_sdk-1.0.8/fortisapi/models/type_5_enum.py +0 -44
  1267. fortis_python_sdk-1.0.8/fortisapi/models/type_60_enum.py +0 -44
  1268. fortis_python_sdk-1.0.8/fortisapi/models/type_61_enum.py +0 -45
  1269. fortis_python_sdk-1.0.8/fortisapi/models/type_62_enum.py +0 -44
  1270. fortis_python_sdk-1.0.8/fortisapi/models/type_63_enum.py +0 -91
  1271. fortis_python_sdk-1.0.8/fortisapi/models/type_64_enum.py +0 -44
  1272. fortis_python_sdk-1.0.8/fortisapi/models/type_65_enum.py +0 -44
  1273. fortis_python_sdk-1.0.8/fortisapi/models/type_6_enum.py +0 -44
  1274. fortis_python_sdk-1.0.8/fortisapi/models/type_70_enum.py +0 -44
  1275. fortis_python_sdk-1.0.8/fortisapi/models/type_71_enum.py +0 -44
  1276. fortis_python_sdk-1.0.8/fortisapi/models/type_75_enum.py +0 -44
  1277. fortis_python_sdk-1.0.8/fortisapi/models/type_79_enum.py +0 -44
  1278. fortis_python_sdk-1.0.8/fortisapi/models/type_83_enum.py +0 -44
  1279. fortis_python_sdk-1.0.8/fortisapi/models/type_87_enum.py +0 -44
  1280. fortis_python_sdk-1.0.8/fortisapi/models/type_88_enum.py +0 -44
  1281. fortis_python_sdk-1.0.8/fortisapi/models/type_92_enum.py +0 -44
  1282. fortis_python_sdk-1.0.8/fortisapi/models/type_93_enum.py +0 -44
  1283. fortis_python_sdk-1.0.8/fortisapi/models/type_97_enum.py +0 -44
  1284. fortis_python_sdk-1.0.8/fortisapi/models/type_98_enum.py +0 -44
  1285. fortis_python_sdk-1.0.8/fortisapi/models/type_enum.py +0 -44
  1286. fortis_python_sdk-1.0.8/fortisapi/models/type_id_enum.py +0 -59
  1287. fortis_python_sdk-1.0.8/fortisapi/models/ui_prefs.py +0 -204
  1288. fortis_python_sdk-1.0.8/fortisapi/models/update_if_exists_enum.py +0 -44
  1289. fortis_python_sdk-1.0.8/fortisapi/models/user.py +0 -180
  1290. fortis_python_sdk-1.0.8/fortisapi/models/user_1.py +0 -1202
  1291. fortis_python_sdk-1.0.8/fortisapi/models/user_9.py +0 -1200
  1292. fortis_python_sdk-1.0.8/fortisapi/models/user_type_code_enum.py +0 -74
  1293. fortis_python_sdk-1.0.8/fortisapi/models/v_1_contacts_request.py +0 -690
  1294. fortis_python_sdk-1.0.8/fortisapi/models/v_1_contacts_request_1.py +0 -712
  1295. fortis_python_sdk-1.0.8/fortisapi/models/v_1_declined_recurring_transaction_payments_request.py +0 -354
  1296. fortis_python_sdk-1.0.8/fortisapi/models/v_1_device_terms_request.py +0 -161
  1297. fortis_python_sdk-1.0.8/fortisapi/models/v_1_elements_ticket_intention_request.py +0 -195
  1298. fortis_python_sdk-1.0.8/fortisapi/models/v_1_elements_transaction_intention_request.py +0 -591
  1299. fortis_python_sdk-1.0.8/fortisapi/models/v_1_fullboarding_request.py +0 -832
  1300. fortis_python_sdk-1.0.8/fortisapi/models/v_1_merchant_threedsecure_authentication_request.py +0 -696
  1301. fortis_python_sdk-1.0.8/fortisapi/models/v_1_onboarding_request.py +0 -833
  1302. fortis_python_sdk-1.0.8/fortisapi/models/v_1_paylinks_request.py +0 -728
  1303. fortis_python_sdk-1.0.8/fortisapi/models/v_1_paylinks_request_1.py +0 -740
  1304. fortis_python_sdk-1.0.8/fortisapi/models/v_1_public_calculate_surcharge_request.py +0 -527
  1305. fortis_python_sdk-1.0.8/fortisapi/models/v_1_quick_invoices_request.py +0 -1039
  1306. fortis_python_sdk-1.0.8/fortisapi/models/v_1_quick_invoices_request_1.py +0 -1078
  1307. fortis_python_sdk-1.0.8/fortisapi/models/v_1_quick_invoices_transaction_request.py +0 -86
  1308. fortis_python_sdk-1.0.8/fortisapi/models/v_1_recurrings_defer_payment_request.py +0 -86
  1309. fortis_python_sdk-1.0.8/fortisapi/models/v_1_recurrings_request.py +0 -746
  1310. fortis_python_sdk-1.0.8/fortisapi/models/v_1_recurrings_request_1.py +0 -761
  1311. fortis_python_sdk-1.0.8/fortisapi/models/v_1_recurrings_skip_payment_request.py +0 -86
  1312. fortis_python_sdk-1.0.8/fortisapi/models/v_1_signatures_request.py +0 -113
  1313. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tags_request.py +0 -99
  1314. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tags_request_1.py +0 -130
  1315. fortis_python_sdk-1.0.8/fortisapi/models/v_1_terminals_request.py +0 -1013
  1316. fortis_python_sdk-1.0.8/fortisapi/models/v_1_terminals_request_1.py +0 -1120
  1317. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tickets_request.py +0 -286
  1318. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_ach_request.py +0 -945
  1319. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_ach_request_1.py +0 -907
  1320. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_cc_request.py +0 -1071
  1321. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_cc_request_1.py +0 -905
  1322. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_previous_transaction_request.py +0 -858
  1323. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_terminal_async_request.py +0 -889
  1324. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_terminal_request.py +0 -889
  1325. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_ticket_request.py +0 -882
  1326. fortis_python_sdk-1.0.8/fortisapi/models/v_1_tokens_wallet_request.py +0 -919
  1327. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transaction_ach_retries_request.py +0 -119
  1328. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_credit_keyed_request.py +0 -1611
  1329. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_credit_prev_trxn_request.py +0 -1627
  1330. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_credit_token_request.py +0 -1671
  1331. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_debit_keyed_request.py +0 -1611
  1332. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_debit_prev_trxn_request.py +0 -1627
  1333. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_debit_token_request.py +0 -1671
  1334. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ach_refund_prev_trxn_request.py +0 -1627
  1335. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_auth_complete_request.py +0 -1527
  1336. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_auth_increment_request.py +0 -1541
  1337. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cash_refund_request.py +0 -1523
  1338. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cash_sale_request.py +0 -1497
  1339. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_keyed_request.py +0 -2172
  1340. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_prev_trxn_request.py +0 -2132
  1341. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_taptopay_request.py +0 -1851
  1342. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_terminal_request.py +0 -2090
  1343. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_ticket_request.py +0 -2058
  1344. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_token_request.py +0 -2137
  1345. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_auth_only_wallet_request.py +0 -2070
  1346. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_keyed_request.py +0 -2183
  1347. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_prev_trxn_request.py +0 -2132
  1348. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_swiped_request.py +0 -2094
  1349. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_terminal_request.py +0 -2101
  1350. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_ticket_request.py +0 -2069
  1351. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_token_request.py +0 -2148
  1352. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_avs_only_wallet_request.py +0 -2081
  1353. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_keyed_request.py +0 -2184
  1354. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_prev_trxn_request.py +0 -2133
  1355. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_swiped_request.py +0 -2095
  1356. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_terminal_request.py +0 -2102
  1357. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_ticket_request.py +0 -2070
  1358. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_token_request.py +0 -2149
  1359. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_balance_inquiry_wallet_request.py +0 -2082
  1360. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_keyed_request.py +0 -2226
  1361. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_prev_trxn_request.py +0 -2132
  1362. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_taptopay_request.py +0 -1877
  1363. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_terminal_request.py +0 -2090
  1364. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_ticket_request.py +0 -2058
  1365. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_token_request.py +0 -2137
  1366. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_refund_wallet_request.py +0 -2070
  1367. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_keyed_request.py +0 -2172
  1368. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_prev_trxn_request.py +0 -2132
  1369. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_taptopay_request.py +0 -1851
  1370. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_terminal_request.py +0 -2090
  1371. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_ticket_request.py +0 -2058
  1372. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_token_request.py +0 -2137
  1373. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_cc_sale_wallet_request.py +0 -2070
  1374. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ebt_voucher_clear_refund_keyed_request.py +0 -2198
  1375. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_ebt_voucher_clear_sale_keyed_request.py +0 -2198
  1376. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_level_3_master_card_request.py +0 -91
  1377. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_level_3_visa_request.py +0 -91
  1378. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_partial_reversal_request.py +0 -1470
  1379. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_refund_request.py +0 -1456
  1380. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_tip_adjust_request.py +0 -1981
  1381. fortis_python_sdk-1.0.8/fortisapi/models/v_1_transactions_void_request.py +0 -130
  1382. fortis_python_sdk-1.0.8/fortisapi/models/v_1_wallet_provider_apple_pay_validate_merchant_request.py +0 -127
  1383. fortis_python_sdk-1.0.8/fortisapi/models/v_1_wallet_provider_merchant_details_request.py +0 -87
  1384. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_apm_onboarding_request.py +0 -421
  1385. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_apm_onboarding_request_1.py +0 -494
  1386. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_batch_request.py +0 -410
  1387. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_batch_request_1.py +0 -494
  1388. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_contact_request.py +0 -421
  1389. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_contact_request_1.py +0 -494
  1390. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_transaction_request.py +0 -410
  1391. fortis_python_sdk-1.0.8/fortisapi/models/v_1_webhooks_transaction_request_1.py +0 -494
  1392. fortis_python_sdk-1.0.8/fortisapi/models/values_4_enum.py +0 -59
  1393. fortis_python_sdk-1.0.8/fortisapi/models/values_50_enum.py +0 -59
  1394. fortis_python_sdk-1.0.8/fortisapi/models/values_51_enum.py +0 -62
  1395. fortis_python_sdk-1.0.8/fortisapi/models/values_58_enum.py +0 -59
  1396. fortis_python_sdk-1.0.8/fortisapi/models/values_5_enum.py +0 -59
  1397. fortis_python_sdk-1.0.8/fortisapi/models/values_6_enum.py +0 -59
  1398. fortis_python_sdk-1.0.8/fortisapi/models/values_7_enum.py +0 -59
  1399. fortis_python_sdk-1.0.8/fortisapi/models/values_99_enum.py +0 -45
  1400. fortis_python_sdk-1.0.8/fortisapi/models/values_enum.py +0 -51
  1401. fortis_python_sdk-1.0.8/fortisapi/models/wallet_provider_enum.py +0 -47
  1402. fortis_python_sdk-1.0.8/fortisapi/models/wallet_type_enum.py +0 -86
  1403. fortis_python_sdk-1.0.8/fortisapi/models/work_phone.py +0 -130
  1404. fortis_python_sdk-1.0.8/fortisapi/utilities/__init__.py +0 -6
  1405. fortis_python_sdk-1.0.8/fortisapi/utilities/file_wrapper.py +0 -45
  1406. fortis_python_sdk-1.0.8/fortisapi/utilities/union_type_lookup.py +0 -436
  1407. fortis_python_sdk-1.0.8/pyproject.toml +0 -22
  1408. {fortis_python_sdk-1.0.8 → fortis_python_sdk-1.0.10}/LICENSE +0 -0
  1409. {fortis_python_sdk-1.0.8 → fortis_python_sdk-1.0.10}/fortis_python_sdk.egg-info/dependency_links.txt +0 -0
  1410. {fortis_python_sdk-1.0.8 → fortis_python_sdk-1.0.10}/fortis_python_sdk.egg-info/requires.txt +0 -0
  1411. {fortis_python_sdk-1.0.8 → fortis_python_sdk-1.0.10}/fortis_python_sdk.egg-info/top_level.txt +0 -0
  1412. {fortis_python_sdk-1.0.8 → fortis_python_sdk-1.0.10}/fortisapi/http/http_client_provider.py +0 -0
  1413. {fortis_python_sdk-1.0.8 → fortis_python_sdk-1.0.10}/setup.cfg +0 -0
@@ -0,0 +1,2 @@
1
+ include LICENSE
2
+ include README.md
@@ -0,0 +1,183 @@
1
+ Metadata-Version: 2.4
2
+ Name: fortis-python-sdk
3
+ Version: 1.0.10
4
+ Summary: Fortispay Python SDK
5
+ Project-URL: docs, https://docs.fortis.tech
6
+ Keywords: Fortis,payments,payment,erp,crm,embedded,integrated
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 Fortis API
20
+
21
+ ## Install the Package
22
+
23
+ The package is compatible with Python versions `3.7+`.
24
+ Install the package from PyPi using the following pip command:
25
+
26
+ ```bash
27
+ pip install fortis-python-sdk==1.0.10
28
+ ```
29
+
30
+ You can also view the package at:
31
+ https://pypi.python.org/pypi/fortis-python-sdk/1.0.10
32
+
33
+ ## Test the SDK
34
+
35
+ 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:
36
+
37
+ Navigate to the root directory of the SDK and run the following commands
38
+
39
+
40
+ pip install -r test-requirements.txt
41
+ pytest
42
+
43
+
44
+ ## Initialize the API Client
45
+
46
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/client.md)
47
+
48
+ The following parameters are configurable for the API Client:
49
+
50
+ | Parameter | Type | Description |
51
+ | --- | --- | --- |
52
+ | environment | [`Environment`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/README.md#environments) | The API environment. <br> **Default: `Environment.SANDBOX`** |
53
+ | http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
54
+ | override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
55
+ | http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
56
+ | timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
57
+ | max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
58
+ | backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
59
+ | 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]** |
60
+ | retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT"]** |
61
+ | proxy_settings | [`ProxySettings`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
62
+ | user_id_credentials | [`UserIdCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature.md) | The credential object for Custom Header Signature |
63
+ | user_api_key_credentials | [`UserApiKeyCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-1.md) | The credential object for Custom Header Signature |
64
+ | developer_id_credentials | [`DeveloperIdCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-2.md) | The credential object for Custom Header Signature |
65
+ | access_token_credentials | [`AccessTokenCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-3.md) | The credential object for Custom Header Signature |
66
+
67
+ The API client can be initialized as follows:
68
+
69
+ ### Code-Based Client Initialization
70
+
71
+ ```python
72
+ from fortisapi.configuration import Environment
73
+ from fortisapi.fortisapi_client import FortisapiClient
74
+ from fortisapi.http.auth.access_token import AccessTokenCredentials
75
+ from fortisapi.http.auth.developer_id import DeveloperIdCredentials
76
+ from fortisapi.http.auth.user_api_key import UserApiKeyCredentials
77
+ from fortisapi.http.auth.user_id import UserIdCredentials
78
+
79
+ client = FortisapiClient(
80
+ user_id_credentials=UserIdCredentials(
81
+ user_id='user-id'
82
+ ),
83
+ user_api_key_credentials=UserApiKeyCredentials(
84
+ user_api_key='user-api-key'
85
+ ),
86
+ developer_id_credentials=DeveloperIdCredentials(
87
+ developer_id='developer-id'
88
+ ),
89
+ access_token_credentials=AccessTokenCredentials(
90
+ access_token='access-token'
91
+ ),
92
+ environment=Environment.SANDBOX
93
+ )
94
+ ```
95
+
96
+ ### Environment-Based Client Initialization
97
+
98
+ ```python
99
+ from fortisapi.fortisapi_client import FortisapiClient
100
+
101
+ # Specify the path to your .env file if it’s located outside the project’s root directory.
102
+ client = FortisapiClient.from_environment(dotenv_path='/path/to/.env')
103
+ ```
104
+
105
+ See the [Environment-Based Client Initialization](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/environment-based-client-initialization.md) section for details.
106
+
107
+ ## Environments
108
+
109
+ The SDK can be configured to use a different environment for making API calls. Available environments are:
110
+
111
+ ### Fields
112
+
113
+ | Name | Description |
114
+ | --- | --- |
115
+ | SANDBOX | **Default** |
116
+ | PRODUCTION | - |
117
+
118
+ ## Authorization
119
+
120
+ This API uses the following authentication schemes.
121
+
122
+ * [`user-id (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature.md)
123
+ * [`user-api-key (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-1.md)
124
+ * [`developer-id (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-2.md)
125
+ * [`access-token (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-3.md)
126
+
127
+ ## List of APIs
128
+
129
+ * [Async Processing](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/async-processing.md)
130
+ * [Declined Recurring Transactions](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/declined-recurring-transactions.md)
131
+ * [Device Terms](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/device-terms.md)
132
+ * [Full Boarding](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/full-boarding.md)
133
+ * [3 DS Authentication](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/3-ds-authentication.md)
134
+ * [3 DS Transactions](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/3-ds-transactions.md)
135
+ * [Merchant Deposits](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/merchant-deposits.md)
136
+ * [Enterprise Link Redirect](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/enterprise-link-redirect.md)
137
+ * [On Boarding](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/on-boarding.md)
138
+ * [Payment Card Reader Token](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/payment-card-reader-token.md)
139
+ * [Calculate Surcharge](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/calculate-surcharge.md)
140
+ * [Quick Invoices](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/quick-invoices.md)
141
+ * [Transaction ACH Retries](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transaction-ach-retries.md)
142
+ * [Transactions-ACH](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-ach.md)
143
+ * [Transactions-Cash](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-cash.md)
144
+ * [Transactions-Credit Card](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-credit-card.md)
145
+ * [Transactions-EBT Card](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-ebt-card.md)
146
+ * [Transactions-Read](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-read.md)
147
+ * [Level 3 Data](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/level-3-data.md)
148
+ * [Transactions-Updates](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-updates.md)
149
+ * [Apple Pay Validate Merchant](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/apple-pay-validate-merchant.md)
150
+ * [Merchant Details](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/merchant-details.md)
151
+ * [Batches](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/batches.md)
152
+ * [Contacts](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/contacts.md)
153
+ * [Elements](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/elements.md)
154
+ * [Locations](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/locations.md)
155
+ * [Paylinks](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/paylinks.md)
156
+ * [Recurring](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/recurring.md)
157
+ * [Reports](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/reports.md)
158
+ * [Signatures](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/signatures.md)
159
+ * [Tags](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tags.md)
160
+ * [Terminals](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/terminals.md)
161
+ * [Tickets](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tickets.md)
162
+ * [Tokens](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tokens.md)
163
+ * [Webhooks](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/webhooks.md)
164
+
165
+ ## SDK Infrastructure
166
+
167
+ ### Configuration
168
+
169
+ * [ProxySettings](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/proxy-settings.md)
170
+ * [Environment-Based Client Initialization](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/environment-based-client-initialization.md)
171
+
172
+ ### HTTP
173
+
174
+ * [HttpResponse](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-response.md)
175
+ * [HttpRequest](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-request.md)
176
+
177
+ ### Utilities
178
+
179
+ * [ApiHelper](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/api-helper.md)
180
+ * [HttpDateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-date-time.md)
181
+ * [RFC3339DateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/rfc3339-date-time.md)
182
+ * [UnixDateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/unix-date-time.md)
183
+
@@ -0,0 +1,166 @@
1
+
2
+ # Getting Started with Fortis API
3
+
4
+ ## Install the Package
5
+
6
+ The package is compatible with Python versions `3.7+`.
7
+ Install the package from PyPi using the following pip command:
8
+
9
+ ```bash
10
+ pip install fortis-python-sdk==1.0.10
11
+ ```
12
+
13
+ You can also view the package at:
14
+ https://pypi.python.org/pypi/fortis-python-sdk/1.0.10
15
+
16
+ ## Test the SDK
17
+
18
+ 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:
19
+
20
+ Navigate to the root directory of the SDK and run the following commands
21
+
22
+
23
+ pip install -r test-requirements.txt
24
+ pytest
25
+
26
+
27
+ ## Initialize the API Client
28
+
29
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/client.md)
30
+
31
+ The following parameters are configurable for the API Client:
32
+
33
+ | Parameter | Type | Description |
34
+ | --- | --- | --- |
35
+ | environment | [`Environment`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/README.md#environments) | The API environment. <br> **Default: `Environment.SANDBOX`** |
36
+ | http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
37
+ | override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
38
+ | http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
39
+ | timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
40
+ | max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
41
+ | backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
42
+ | 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]** |
43
+ | retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT"]** |
44
+ | proxy_settings | [`ProxySettings`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
45
+ | user_id_credentials | [`UserIdCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature.md) | The credential object for Custom Header Signature |
46
+ | user_api_key_credentials | [`UserApiKeyCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-1.md) | The credential object for Custom Header Signature |
47
+ | developer_id_credentials | [`DeveloperIdCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-2.md) | The credential object for Custom Header Signature |
48
+ | access_token_credentials | [`AccessTokenCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-3.md) | The credential object for Custom Header Signature |
49
+
50
+ The API client can be initialized as follows:
51
+
52
+ ### Code-Based Client Initialization
53
+
54
+ ```python
55
+ from fortisapi.configuration import Environment
56
+ from fortisapi.fortisapi_client import FortisapiClient
57
+ from fortisapi.http.auth.access_token import AccessTokenCredentials
58
+ from fortisapi.http.auth.developer_id import DeveloperIdCredentials
59
+ from fortisapi.http.auth.user_api_key import UserApiKeyCredentials
60
+ from fortisapi.http.auth.user_id import UserIdCredentials
61
+
62
+ client = FortisapiClient(
63
+ user_id_credentials=UserIdCredentials(
64
+ user_id='user-id'
65
+ ),
66
+ user_api_key_credentials=UserApiKeyCredentials(
67
+ user_api_key='user-api-key'
68
+ ),
69
+ developer_id_credentials=DeveloperIdCredentials(
70
+ developer_id='developer-id'
71
+ ),
72
+ access_token_credentials=AccessTokenCredentials(
73
+ access_token='access-token'
74
+ ),
75
+ environment=Environment.SANDBOX
76
+ )
77
+ ```
78
+
79
+ ### Environment-Based Client Initialization
80
+
81
+ ```python
82
+ from fortisapi.fortisapi_client import FortisapiClient
83
+
84
+ # Specify the path to your .env file if it’s located outside the project’s root directory.
85
+ client = FortisapiClient.from_environment(dotenv_path='/path/to/.env')
86
+ ```
87
+
88
+ See the [Environment-Based Client Initialization](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/environment-based-client-initialization.md) section for details.
89
+
90
+ ## Environments
91
+
92
+ The SDK can be configured to use a different environment for making API calls. Available environments are:
93
+
94
+ ### Fields
95
+
96
+ | Name | Description |
97
+ | --- | --- |
98
+ | SANDBOX | **Default** |
99
+ | PRODUCTION | - |
100
+
101
+ ## Authorization
102
+
103
+ This API uses the following authentication schemes.
104
+
105
+ * [`user-id (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature.md)
106
+ * [`user-api-key (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-1.md)
107
+ * [`developer-id (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-2.md)
108
+ * [`access-token (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-3.md)
109
+
110
+ ## List of APIs
111
+
112
+ * [Async Processing](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/async-processing.md)
113
+ * [Declined Recurring Transactions](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/declined-recurring-transactions.md)
114
+ * [Device Terms](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/device-terms.md)
115
+ * [Full Boarding](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/full-boarding.md)
116
+ * [3 DS Authentication](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/3-ds-authentication.md)
117
+ * [3 DS Transactions](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/3-ds-transactions.md)
118
+ * [Merchant Deposits](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/merchant-deposits.md)
119
+ * [Enterprise Link Redirect](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/enterprise-link-redirect.md)
120
+ * [On Boarding](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/on-boarding.md)
121
+ * [Payment Card Reader Token](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/payment-card-reader-token.md)
122
+ * [Calculate Surcharge](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/calculate-surcharge.md)
123
+ * [Quick Invoices](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/quick-invoices.md)
124
+ * [Transaction ACH Retries](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transaction-ach-retries.md)
125
+ * [Transactions-ACH](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-ach.md)
126
+ * [Transactions-Cash](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-cash.md)
127
+ * [Transactions-Credit Card](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-credit-card.md)
128
+ * [Transactions-EBT Card](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-ebt-card.md)
129
+ * [Transactions-Read](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-read.md)
130
+ * [Level 3 Data](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/level-3-data.md)
131
+ * [Transactions-Updates](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-updates.md)
132
+ * [Apple Pay Validate Merchant](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/apple-pay-validate-merchant.md)
133
+ * [Merchant Details](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/merchant-details.md)
134
+ * [Batches](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/batches.md)
135
+ * [Contacts](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/contacts.md)
136
+ * [Elements](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/elements.md)
137
+ * [Locations](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/locations.md)
138
+ * [Paylinks](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/paylinks.md)
139
+ * [Recurring](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/recurring.md)
140
+ * [Reports](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/reports.md)
141
+ * [Signatures](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/signatures.md)
142
+ * [Tags](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tags.md)
143
+ * [Terminals](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/terminals.md)
144
+ * [Tickets](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tickets.md)
145
+ * [Tokens](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tokens.md)
146
+ * [Webhooks](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/webhooks.md)
147
+
148
+ ## SDK Infrastructure
149
+
150
+ ### Configuration
151
+
152
+ * [ProxySettings](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/proxy-settings.md)
153
+ * [Environment-Based Client Initialization](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/environment-based-client-initialization.md)
154
+
155
+ ### HTTP
156
+
157
+ * [HttpResponse](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-response.md)
158
+ * [HttpRequest](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-request.md)
159
+
160
+ ### Utilities
161
+
162
+ * [ApiHelper](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/api-helper.md)
163
+ * [HttpDateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-date-time.md)
164
+ * [RFC3339DateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/rfc3339-date-time.md)
165
+ * [UnixDateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/unix-date-time.md)
166
+
@@ -0,0 +1,183 @@
1
+ Metadata-Version: 2.4
2
+ Name: fortis-python-sdk
3
+ Version: 1.0.10
4
+ Summary: Fortispay Python SDK
5
+ Project-URL: docs, https://docs.fortis.tech
6
+ Keywords: Fortis,payments,payment,erp,crm,embedded,integrated
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 Fortis API
20
+
21
+ ## Install the Package
22
+
23
+ The package is compatible with Python versions `3.7+`.
24
+ Install the package from PyPi using the following pip command:
25
+
26
+ ```bash
27
+ pip install fortis-python-sdk==1.0.10
28
+ ```
29
+
30
+ You can also view the package at:
31
+ https://pypi.python.org/pypi/fortis-python-sdk/1.0.10
32
+
33
+ ## Test the SDK
34
+
35
+ 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:
36
+
37
+ Navigate to the root directory of the SDK and run the following commands
38
+
39
+
40
+ pip install -r test-requirements.txt
41
+ pytest
42
+
43
+
44
+ ## Initialize the API Client
45
+
46
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/client.md)
47
+
48
+ The following parameters are configurable for the API Client:
49
+
50
+ | Parameter | Type | Description |
51
+ | --- | --- | --- |
52
+ | environment | [`Environment`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/README.md#environments) | The API environment. <br> **Default: `Environment.SANDBOX`** |
53
+ | http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
54
+ | override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
55
+ | http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
56
+ | timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
57
+ | max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
58
+ | backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
59
+ | 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]** |
60
+ | retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT"]** |
61
+ | proxy_settings | [`ProxySettings`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
62
+ | user_id_credentials | [`UserIdCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature.md) | The credential object for Custom Header Signature |
63
+ | user_api_key_credentials | [`UserApiKeyCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-1.md) | The credential object for Custom Header Signature |
64
+ | developer_id_credentials | [`DeveloperIdCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-2.md) | The credential object for Custom Header Signature |
65
+ | access_token_credentials | [`AccessTokenCredentials`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-3.md) | The credential object for Custom Header Signature |
66
+
67
+ The API client can be initialized as follows:
68
+
69
+ ### Code-Based Client Initialization
70
+
71
+ ```python
72
+ from fortisapi.configuration import Environment
73
+ from fortisapi.fortisapi_client import FortisapiClient
74
+ from fortisapi.http.auth.access_token import AccessTokenCredentials
75
+ from fortisapi.http.auth.developer_id import DeveloperIdCredentials
76
+ from fortisapi.http.auth.user_api_key import UserApiKeyCredentials
77
+ from fortisapi.http.auth.user_id import UserIdCredentials
78
+
79
+ client = FortisapiClient(
80
+ user_id_credentials=UserIdCredentials(
81
+ user_id='user-id'
82
+ ),
83
+ user_api_key_credentials=UserApiKeyCredentials(
84
+ user_api_key='user-api-key'
85
+ ),
86
+ developer_id_credentials=DeveloperIdCredentials(
87
+ developer_id='developer-id'
88
+ ),
89
+ access_token_credentials=AccessTokenCredentials(
90
+ access_token='access-token'
91
+ ),
92
+ environment=Environment.SANDBOX
93
+ )
94
+ ```
95
+
96
+ ### Environment-Based Client Initialization
97
+
98
+ ```python
99
+ from fortisapi.fortisapi_client import FortisapiClient
100
+
101
+ # Specify the path to your .env file if it’s located outside the project’s root directory.
102
+ client = FortisapiClient.from_environment(dotenv_path='/path/to/.env')
103
+ ```
104
+
105
+ See the [Environment-Based Client Initialization](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/environment-based-client-initialization.md) section for details.
106
+
107
+ ## Environments
108
+
109
+ The SDK can be configured to use a different environment for making API calls. Available environments are:
110
+
111
+ ### Fields
112
+
113
+ | Name | Description |
114
+ | --- | --- |
115
+ | SANDBOX | **Default** |
116
+ | PRODUCTION | - |
117
+
118
+ ## Authorization
119
+
120
+ This API uses the following authentication schemes.
121
+
122
+ * [`user-id (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature.md)
123
+ * [`user-api-key (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-1.md)
124
+ * [`developer-id (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-2.md)
125
+ * [`access-token (Custom Header Signature)`](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/auth/custom-header-signature-3.md)
126
+
127
+ ## List of APIs
128
+
129
+ * [Async Processing](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/async-processing.md)
130
+ * [Declined Recurring Transactions](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/declined-recurring-transactions.md)
131
+ * [Device Terms](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/device-terms.md)
132
+ * [Full Boarding](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/full-boarding.md)
133
+ * [3 DS Authentication](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/3-ds-authentication.md)
134
+ * [3 DS Transactions](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/3-ds-transactions.md)
135
+ * [Merchant Deposits](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/merchant-deposits.md)
136
+ * [Enterprise Link Redirect](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/enterprise-link-redirect.md)
137
+ * [On Boarding](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/on-boarding.md)
138
+ * [Payment Card Reader Token](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/payment-card-reader-token.md)
139
+ * [Calculate Surcharge](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/calculate-surcharge.md)
140
+ * [Quick Invoices](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/quick-invoices.md)
141
+ * [Transaction ACH Retries](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transaction-ach-retries.md)
142
+ * [Transactions-ACH](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-ach.md)
143
+ * [Transactions-Cash](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-cash.md)
144
+ * [Transactions-Credit Card](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-credit-card.md)
145
+ * [Transactions-EBT Card](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-ebt-card.md)
146
+ * [Transactions-Read](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-read.md)
147
+ * [Level 3 Data](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/level-3-data.md)
148
+ * [Transactions-Updates](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/transactions-updates.md)
149
+ * [Apple Pay Validate Merchant](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/apple-pay-validate-merchant.md)
150
+ * [Merchant Details](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/merchant-details.md)
151
+ * [Batches](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/batches.md)
152
+ * [Contacts](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/contacts.md)
153
+ * [Elements](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/elements.md)
154
+ * [Locations](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/locations.md)
155
+ * [Paylinks](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/paylinks.md)
156
+ * [Recurring](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/recurring.md)
157
+ * [Reports](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/reports.md)
158
+ * [Signatures](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/signatures.md)
159
+ * [Tags](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tags.md)
160
+ * [Terminals](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/terminals.md)
161
+ * [Tickets](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tickets.md)
162
+ * [Tokens](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/tokens.md)
163
+ * [Webhooks](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/controllers/webhooks.md)
164
+
165
+ ## SDK Infrastructure
166
+
167
+ ### Configuration
168
+
169
+ * [ProxySettings](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/proxy-settings.md)
170
+ * [Environment-Based Client Initialization](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/environment-based-client-initialization.md)
171
+
172
+ ### HTTP
173
+
174
+ * [HttpResponse](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-response.md)
175
+ * [HttpRequest](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-request.md)
176
+
177
+ ### Utilities
178
+
179
+ * [ApiHelper](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/api-helper.md)
180
+ * [HttpDateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/http-date-time.md)
181
+ * [RFC3339DateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/rfc3339-date-time.md)
182
+ * [UnixDateTime](https://www.github.com/fortispay/pythonsdk/tree/1.0.10/doc/unix-date-time.md)
183
+