fortis-python-sdk 1.0.0__py3-none-any.whl

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 (699) hide show
  1. fortis_python_sdk-1.0.0.dist-info/METADATA +183 -0
  2. fortis_python_sdk-1.0.0.dist-info/RECORD +699 -0
  3. fortis_python_sdk-1.0.0.dist-info/WHEEL +5 -0
  4. fortis_python_sdk-1.0.0.dist-info/licenses/LICENSE +28 -0
  5. fortis_python_sdk-1.0.0.dist-info/top_level.txt +1 -0
  6. fortisapi/__init__.py +12 -0
  7. fortisapi/api_helper.py +19 -0
  8. fortisapi/configuration.py +294 -0
  9. fortisapi/controllers/__init__.py +40 -0
  10. fortisapi/controllers/apple_pay_validate_merchant_controller.py +84 -0
  11. fortisapi/controllers/async_processing_controller.py +78 -0
  12. fortisapi/controllers/base_controller.py +67 -0
  13. fortisapi/controllers/batches_controller.py +179 -0
  14. fortisapi/controllers/calculate_surcharge_controller.py +76 -0
  15. fortisapi/controllers/contacts_controller.py +398 -0
  16. fortisapi/controllers/declined_recurring_transactions_controller.py +326 -0
  17. fortisapi/controllers/device_terms_controller.py +242 -0
  18. fortisapi/controllers/elements_controller.py +129 -0
  19. fortisapi/controllers/enterprise_link_redirect_controller.py +81 -0
  20. fortisapi/controllers/full_boarding_controller.py +85 -0
  21. fortisapi/controllers/level_3_data_controller.py +219 -0
  22. fortisapi/controllers/locations_controller.py +478 -0
  23. fortisapi/controllers/m_3_ds_authentication_controller.py +90 -0
  24. fortisapi/controllers/m_3_ds_transactions_controller.py +84 -0
  25. fortisapi/controllers/merchant_deposits_controller.py +295 -0
  26. fortisapi/controllers/merchant_details_controller.py +82 -0
  27. fortisapi/controllers/on_boarding_controller.py +100 -0
  28. fortisapi/controllers/paylinks_controller.py +396 -0
  29. fortisapi/controllers/payment_card_reader_token_controller.py +76 -0
  30. fortisapi/controllers/quick_invoices_controller.py +531 -0
  31. fortisapi/controllers/recurring_controller.py +545 -0
  32. fortisapi/controllers/reports_controller.py +209 -0
  33. fortisapi/controllers/signatures_controller.py +249 -0
  34. fortisapi/controllers/tags_controller.py +328 -0
  35. fortisapi/controllers/terminals_controller.py +304 -0
  36. fortisapi/controllers/tickets_controller.py +249 -0
  37. fortisapi/controllers/tokens_controller.py +679 -0
  38. fortisapi/controllers/transaction_ach_retries_controller.py +250 -0
  39. fortisapi/controllers/transactions_ach_controller.py +398 -0
  40. fortisapi/controllers/transactions_cash_controller.py +123 -0
  41. fortisapi/controllers/transactions_credit_card_controller.py +1796 -0
  42. fortisapi/controllers/transactions_ebt_card_controller.py +147 -0
  43. fortisapi/controllers/transactions_read_controller.py +248 -0
  44. fortisapi/controllers/transactions_updates_controller.py +435 -0
  45. fortisapi/controllers/webhooks_controller.py +493 -0
  46. fortisapi/exceptions/__init__.py +8 -0
  47. fortisapi/exceptions/api_exception.py +36 -0
  48. fortisapi/exceptions/response_401_token_exception.py +77 -0
  49. fortisapi/exceptions/response_412_exception.py +109 -0
  50. fortisapi/exceptions/response_error_exception.py +109 -0
  51. fortisapi/fortisapi_client.py +360 -0
  52. fortisapi/http/__init__.py +11 -0
  53. fortisapi/http/auth/__init__.py +8 -0
  54. fortisapi/http/auth/access_token.py +100 -0
  55. fortisapi/http/auth/developer_id.py +100 -0
  56. fortisapi/http/auth/user_api_key.py +100 -0
  57. fortisapi/http/auth/user_id.py +100 -0
  58. fortisapi/http/http_call_back.py +20 -0
  59. fortisapi/http/http_client_provider.py +23 -0
  60. fortisapi/http/http_method_enum.py +25 -0
  61. fortisapi/http/http_request.py +55 -0
  62. fortisapi/http/http_response.py +45 -0
  63. fortisapi/http/proxy_settings.py +50 -0
  64. fortisapi/models/__init__.py +636 -0
  65. fortisapi/models/account_info.py +519 -0
  66. fortisapi/models/account_type_12_enum.py +47 -0
  67. fortisapi/models/account_type_13_enum.py +51 -0
  68. fortisapi/models/account_type_16_enum.py +51 -0
  69. fortisapi/models/account_type_enum.py +83 -0
  70. fortisapi/models/account_vault.py +1408 -0
  71. fortisapi/models/account_vault_cau_log.py +201 -0
  72. fortisapi/models/account_vault_cau_product_transaction.py +754 -0
  73. fortisapi/models/ach_product_transaction.py +3048 -0
  74. fortisapi/models/ach_sec_code_1_enum.py +59 -0
  75. fortisapi/models/ach_sec_code_31_enum.py +61 -0
  76. fortisapi/models/ach_sec_code_3_enum.py +59 -0
  77. fortisapi/models/ach_sec_code_enum.py +67 -0
  78. fortisapi/models/acs_challenge_mandated_enum.py +52 -0
  79. fortisapi/models/action_enum.py +70 -0
  80. fortisapi/models/active_recurring.py +975 -0
  81. fortisapi/models/additional_access.py +102 -0
  82. fortisapi/models/additional_amount.py +201 -0
  83. fortisapi/models/addon.py +222 -0
  84. fortisapi/models/addon_transaction_type_enum.py +57 -0
  85. fortisapi/models/address.py +205 -0
  86. fortisapi/models/address_1.py +228 -0
  87. fortisapi/models/address_2.py +204 -0
  88. fortisapi/models/address_71.py +186 -0
  89. fortisapi/models/address_match_enum.py +54 -0
  90. fortisapi/models/address_type_enum.py +50 -0
  91. fortisapi/models/all_tag.py +194 -0
  92. fortisapi/models/alt_bank_account.py +180 -0
  93. fortisapi/models/amount_ind_enum.py +121 -0
  94. fortisapi/models/app_delivery_enum.py +50 -0
  95. fortisapi/models/auth_currency_enum.py +168 -0
  96. fortisapi/models/avs_enum.py +56 -0
  97. fortisapi/models/balance.py +154 -0
  98. fortisapi/models/bank_account.py +156 -0
  99. fortisapi/models/bank_account_1.py +186 -0
  100. fortisapi/models/batch_risk_config.py +132 -0
  101. fortisapi/models/billing_address.py +233 -0
  102. fortisapi/models/billing_address_1.py +258 -0
  103. fortisapi/models/billing_address_24.py +263 -0
  104. fortisapi/models/billing_address_5.py +155 -0
  105. fortisapi/models/body.py +134 -0
  106. fortisapi/models/branding_domain.py +867 -0
  107. fortisapi/models/branding_domain_1.py +867 -0
  108. fortisapi/models/broad_info.py +241 -0
  109. fortisapi/models/browser_information.py +401 -0
  110. fortisapi/models/business_category_enum.py +77 -0
  111. fortisapi/models/business_type_enum.py +365 -0
  112. fortisapi/models/cardholder.py +324 -0
  113. fortisapi/models/cardholder_account.py +211 -0
  114. fortisapi/models/category_enum.py +133 -0
  115. fortisapi/models/cau_subscribe_type_code_enum.py +50 -0
  116. fortisapi/models/cau_subscribe_type_id_enum.py +50 -0
  117. fortisapi/models/cau_summary_status_id_enum.py +53 -0
  118. fortisapi/models/cc_product_transaction.py +3048 -0
  119. fortisapi/models/ch_acc_age_ind_enum.py +66 -0
  120. fortisapi/models/ch_acc_change_ind_enum.py +63 -0
  121. fortisapi/models/ch_acc_pw_change_ind_enum.py +67 -0
  122. fortisapi/models/challenge_message_extension.py +177 -0
  123. fortisapi/models/challenge_window_size_enum.py +73 -0
  124. fortisapi/models/changelog.py +280 -0
  125. fortisapi/models/changelog_detail.py +178 -0
  126. fortisapi/models/children.py +822 -0
  127. fortisapi/models/communication_type_enum.py +50 -0
  128. fortisapi/models/conditions.py +125 -0
  129. fortisapi/models/conditions_18.py +146 -0
  130. fortisapi/models/conditions_181.py +146 -0
  131. fortisapi/models/conditions_191.py +146 -0
  132. fortisapi/models/conditions_27.py +125 -0
  133. fortisapi/models/conditions_4.py +146 -0
  134. fortisapi/models/conditions_41.py +146 -0
  135. fortisapi/models/conditions_42.py +146 -0
  136. fortisapi/models/conditions_43.py +146 -0
  137. fortisapi/models/contact.py +179 -0
  138. fortisapi/models/contact_1.py +822 -0
  139. fortisapi/models/contact_9.py +169 -0
  140. fortisapi/models/contact_user_default_entry_page_enum.py +59 -0
  141. fortisapi/models/context.py +125 -0
  142. fortisapi/models/country_enum.py +47 -0
  143. fortisapi/models/created_user.py +1197 -0
  144. fortisapi/models/currency_code_enum.py +186 -0
  145. fortisapi/models/currency_type.py +131 -0
  146. fortisapi/models/data.py +225 -0
  147. fortisapi/models/data_1.py +105 -0
  148. fortisapi/models/data_10.py +1283 -0
  149. fortisapi/models/data_11.py +948 -0
  150. fortisapi/models/data_12.py +369 -0
  151. fortisapi/models/data_13.py +263 -0
  152. fortisapi/models/data_14.py +552 -0
  153. fortisapi/models/data_15.py +102 -0
  154. fortisapi/models/data_16.py +930 -0
  155. fortisapi/models/data_17.py +920 -0
  156. fortisapi/models/data_18.py +102 -0
  157. fortisapi/models/data_19.py +631 -0
  158. fortisapi/models/data_2.py +1134 -0
  159. fortisapi/models/data_20.py +1657 -0
  160. fortisapi/models/data_21.py +223 -0
  161. fortisapi/models/data_22.py +1341 -0
  162. fortisapi/models/data_23.py +245 -0
  163. fortisapi/models/data_24.py +219 -0
  164. fortisapi/models/data_25.py +1456 -0
  165. fortisapi/models/data_26.py +376 -0
  166. fortisapi/models/data_27.py +1681 -0
  167. fortisapi/models/data_28.py +380 -0
  168. fortisapi/models/data_29.py +4233 -0
  169. fortisapi/models/data_3.py +296 -0
  170. fortisapi/models/data_30.py +421 -0
  171. fortisapi/models/data_31.py +150 -0
  172. fortisapi/models/data_34.py +103 -0
  173. fortisapi/models/data_35.py +259 -0
  174. fortisapi/models/data_36.py +537 -0
  175. fortisapi/models/data_4.py +482 -0
  176. fortisapi/models/data_5.py +171 -0
  177. fortisapi/models/data_6.py +469 -0
  178. fortisapi/models/data_7.py +230 -0
  179. fortisapi/models/data_8.py +616 -0
  180. fortisapi/models/data_9.py +129 -0
  181. fortisapi/models/debit_credit_enum.py +48 -0
  182. fortisapi/models/declined_recurring_notification.py +251 -0
  183. fortisapi/models/default_transaction_type_enum.py +50 -0
  184. fortisapi/models/delivery_method_enum.py +61 -0
  185. fortisapi/models/delivery_timeframe_enum.py +61 -0
  186. fortisapi/models/deposit_type_enum.py +50 -0
  187. fortisapi/models/detail.py +173 -0
  188. fortisapi/models/detail_1.py +323 -0
  189. fortisapi/models/detail_2.py +273 -0
  190. fortisapi/models/developer_company.py +270 -0
  191. fortisapi/models/device.py +123 -0
  192. fortisapi/models/device_binding_status_enum.py +373 -0
  193. fortisapi/models/device_channel_enum.py +51 -0
  194. fortisapi/models/document.py +115 -0
  195. fortisapi/models/e_format_enum.py +62 -0
  196. fortisapi/models/ebt_plan_enum.py +50 -0
  197. fortisapi/models/ebt_type_enum.py +61 -0
  198. fortisapi/models/email_blacklist.py +178 -0
  199. fortisapi/models/email_enum.py +47 -0
  200. fortisapi/models/emv_receipt_data.py +244 -0
  201. fortisapi/models/entry_mode_id_enum.py +73 -0
  202. fortisapi/models/expand_108_enum.py +48 -0
  203. fortisapi/models/expand_10_enum.py +42 -0
  204. fortisapi/models/expand_11_enum.py +99 -0
  205. fortisapi/models/expand_15_enum.py +42 -0
  206. fortisapi/models/expand_17_enum.py +96 -0
  207. fortisapi/models/expand_18_enum.py +84 -0
  208. fortisapi/models/expand_1_enum.py +75 -0
  209. fortisapi/models/expand_26_enum.py +87 -0
  210. fortisapi/models/expand_34_enum.py +42 -0
  211. fortisapi/models/expand_37_enum.py +42 -0
  212. fortisapi/models/expand_40_enum.py +63 -0
  213. fortisapi/models/expand_44_enum.py +48 -0
  214. fortisapi/models/expand_47_enum.py +69 -0
  215. fortisapi/models/expand_57_enum.py +54 -0
  216. fortisapi/models/expand_5_enum.py +48 -0
  217. fortisapi/models/expand_60_enum.py +171 -0
  218. fortisapi/models/expand_8_enum.py +57 -0
  219. fortisapi/models/expand_enum.py +51 -0
  220. fortisapi/models/field.py +125 -0
  221. fortisapi/models/field_20.py +267 -0
  222. fortisapi/models/field_27_enum.py +129 -0
  223. fortisapi/models/field_28_enum.py +168 -0
  224. fortisapi/models/field_30_enum.py +75 -0
  225. fortisapi/models/field_31_enum.py +87 -0
  226. fortisapi/models/field_33_enum.py +183 -0
  227. fortisapi/models/field_34_enum.py +195 -0
  228. fortisapi/models/field_35_enum.py +180 -0
  229. fortisapi/models/field_36_enum.py +192 -0
  230. fortisapi/models/field_37_enum.py +102 -0
  231. fortisapi/models/field_39_enum.py +186 -0
  232. fortisapi/models/field_41_enum.py +237 -0
  233. fortisapi/models/field_43_enum.py +198 -0
  234. fortisapi/models/field_45_enum.py +78 -0
  235. fortisapi/models/field_46_enum.py +126 -0
  236. fortisapi/models/field_47_enum.py +60 -0
  237. fortisapi/models/field_49_enum.py +57 -0
  238. fortisapi/models/field_51_enum.py +210 -0
  239. fortisapi/models/field_53_enum.py +84 -0
  240. fortisapi/models/field_55_enum.py +231 -0
  241. fortisapi/models/field_57_enum.py +75 -0
  242. fortisapi/models/field_59_enum.py +510 -0
  243. fortisapi/models/field_configuration.py +202 -0
  244. fortisapi/models/file.py +412 -0
  245. fortisapi/models/file_2.py +125 -0
  246. fortisapi/models/file_5.py +130 -0
  247. fortisapi/models/filter_by.py +171 -0
  248. fortisapi/models/footer.py +134 -0
  249. fortisapi/models/forecast.py +250 -0
  250. fortisapi/models/format_1_enum.py +47 -0
  251. fortisapi/models/format_enum.py +47 -0
  252. fortisapi/models/header.py +134 -0
  253. fortisapi/models/helppage.py +270 -0
  254. fortisapi/models/home_phone.py +130 -0
  255. fortisapi/models/hosted_payment_page.py +558 -0
  256. fortisapi/models/identity_verification.py +183 -0
  257. fortisapi/models/identity_verification_2.py +183 -0
  258. fortisapi/models/identity_verification_27.py +165 -0
  259. fortisapi/models/idtype_enum.py +47 -0
  260. fortisapi/models/iias_ind_enum.py +64 -0
  261. fortisapi/models/industry_type_enum.py +59 -0
  262. fortisapi/models/initiation_type_enum.py +92 -0
  263. fortisapi/models/interval_type_enum.py +50 -0
  264. fortisapi/models/item_list.py +125 -0
  265. fortisapi/models/item_list_4.py +99 -0
  266. fortisapi/models/item_list_5.py +130 -0
  267. fortisapi/models/joi.py +104 -0
  268. fortisapi/models/joi_18.py +111 -0
  269. fortisapi/models/joi_19.py +111 -0
  270. fortisapi/models/joi_27.py +104 -0
  271. fortisapi/models/joi_4.py +110 -0
  272. fortisapi/models/kyc_response_object.py +101 -0
  273. fortisapi/models/level_3_data.py +481 -0
  274. fortisapi/models/level_3_data_5.py +324 -0
  275. fortisapi/models/level_3_data_6.py +469 -0
  276. fortisapi/models/level_3_default.py +481 -0
  277. fortisapi/models/line_item.py +450 -0
  278. fortisapi/models/line_item_13.py +449 -0
  279. fortisapi/models/line_item_19.py +360 -0
  280. fortisapi/models/line_item_20.py +273 -0
  281. fortisapi/models/links.py +196 -0
  282. fortisapi/models/list.py +650 -0
  283. fortisapi/models/list_1.py +1134 -0
  284. fortisapi/models/list_10.py +1657 -0
  285. fortisapi/models/list_11.py +1341 -0
  286. fortisapi/models/list_12.py +336 -0
  287. fortisapi/models/list_13.py +731 -0
  288. fortisapi/models/list_14.py +245 -0
  289. fortisapi/models/list_15.py +219 -0
  290. fortisapi/models/list_16.py +1456 -0
  291. fortisapi/models/list_17.py +376 -0
  292. fortisapi/models/list_18.py +1681 -0
  293. fortisapi/models/list_19.py +380 -0
  294. fortisapi/models/list_20.py +4233 -0
  295. fortisapi/models/list_3.py +296 -0
  296. fortisapi/models/list_4.py +469 -0
  297. fortisapi/models/list_5.py +948 -0
  298. fortisapi/models/list_6.py +1283 -0
  299. fortisapi/models/list_8.py +552 -0
  300. fortisapi/models/list_9.py +920 -0
  301. fortisapi/models/location.py +756 -0
  302. fortisapi/models/location_18.py +217 -0
  303. fortisapi/models/location_5.py +227 -0
  304. fortisapi/models/location_billing_account.py +509 -0
  305. fortisapi/models/location_type_26_enum.py +51 -0
  306. fortisapi/models/location_type_enum.py +50 -0
  307. fortisapi/models/locationmarketplace.py +247 -0
  308. fortisapi/models/log_email.py +364 -0
  309. fortisapi/models/log_sms.py +315 -0
  310. fortisapi/models/marketplace.py +247 -0
  311. fortisapi/models/masync.py +128 -0
  312. fortisapi/models/merchant_list.py +193 -0
  313. fortisapi/models/merchant_risk_indicator.py +341 -0
  314. fortisapi/models/message_category_enum.py +119 -0
  315. fortisapi/models/message_extension.py +177 -0
  316. fortisapi/models/meta.py +107 -0
  317. fortisapi/models/method_3.py +147 -0
  318. fortisapi/models/method_50.py +145 -0
  319. fortisapi/models/method_53_enum.py +56 -0
  320. fortisapi/models/method_5_enum.py +56 -0
  321. fortisapi/models/method_enum.py +56 -0
  322. fortisapi/models/mobile_phone.py +130 -0
  323. fortisapi/models/modified_user.py +1197 -0
  324. fortisapi/models/multi_transaction.py +147 -0
  325. fortisapi/models/operator_1_enum.py +59 -0
  326. fortisapi/models/operator_enum.py +47 -0
  327. fortisapi/models/order_21.py +99 -0
  328. fortisapi/models/order_enum.py +47 -0
  329. fortisapi/models/owner.py +322 -0
  330. fortisapi/models/ownership_type_enum.py +71 -0
  331. fortisapi/models/page.py +132 -0
  332. fortisapi/models/pagination.py +196 -0
  333. fortisapi/models/parent.py +822 -0
  334. fortisapi/models/parent_3.py +756 -0
  335. fortisapi/models/partner_enum.py +71 -0
  336. fortisapi/models/paylink_action_enum.py +47 -0
  337. fortisapi/models/payment_acc_ind_enum.py +67 -0
  338. fortisapi/models/payment_method_16_enum.py +47 -0
  339. fortisapi/models/payment_method_1_enum.py +47 -0
  340. fortisapi/models/payment_method_9_enum.py +50 -0
  341. fortisapi/models/payment_method_enum.py +50 -0
  342. fortisapi/models/payment_recurring_notification.py +251 -0
  343. fortisapi/models/payment_type_priority_enum.py +47 -0
  344. fortisapi/models/postback_log.py +295 -0
  345. fortisapi/models/postback_status_id_enum.py +53 -0
  346. fortisapi/models/pre_order_purchase_ind_enum.py +52 -0
  347. fortisapi/models/preferred_language_enum.py +51 -0
  348. fortisapi/models/preferred_protocol_version_enum.py +65 -0
  349. fortisapi/models/pricing_element.py +147 -0
  350. fortisapi/models/primary_principal.py +396 -0
  351. fortisapi/models/primary_principal_1.py +376 -0
  352. fortisapi/models/process_method_enum.py +47 -0
  353. fortisapi/models/processor_enum.py +59 -0
  354. fortisapi/models/product_accountvault.py +317 -0
  355. fortisapi/models/product_file.py +416 -0
  356. fortisapi/models/product_file_1.py +414 -0
  357. fortisapi/models/product_invoice.py +651 -0
  358. fortisapi/models/product_recurring.py +387 -0
  359. fortisapi/models/product_token.py +317 -0
  360. fortisapi/models/product_transaction.py +3048 -0
  361. fortisapi/models/product_transaction_1.py +3046 -0
  362. fortisapi/models/purchase.py +501 -0
  363. fortisapi/models/quick_invoice.py +1256 -0
  364. fortisapi/models/quick_invoice_setting.py +299 -0
  365. fortisapi/models/quick_invoice_view.py +176 -0
  366. fortisapi/models/reason_code.py +131 -0
  367. fortisapi/models/reason_code_id_1_enum.py +935 -0
  368. fortisapi/models/reason_code_id_enum.py +578 -0
  369. fortisapi/models/reason_model_enum.py +74 -0
  370. fortisapi/models/received_email.py +364 -0
  371. fortisapi/models/recipients_enum.py +62 -0
  372. fortisapi/models/recurring.py +975 -0
  373. fortisapi/models/recurring_3.py +977 -0
  374. fortisapi/models/recurring_flag_enum.py +64 -0
  375. fortisapi/models/recurring_split.py +200 -0
  376. fortisapi/models/recurring_type_id_enum.py +47 -0
  377. fortisapi/models/registration_field_enum.py +87 -0
  378. fortisapi/models/rejected_transaction.py +3198 -0
  379. fortisapi/models/rejected_transaction_ach_retry.py +244 -0
  380. fortisapi/models/relationship_enum.py +50 -0
  381. fortisapi/models/reorder_items_ind_enum.py +51 -0
  382. fortisapi/models/report_export_type_enum.py +53 -0
  383. fortisapi/models/resource_12_enum.py +52 -0
  384. fortisapi/models/resource_2_enum.py +50 -0
  385. fortisapi/models/resource_enum.py +55 -0
  386. fortisapi/models/response_416_date_range.py +148 -0
  387. fortisapi/models/response_417_filter_channels.py +148 -0
  388. fortisapi/models/response_apple_pay_validate_merchant.py +126 -0
  389. fortisapi/models/response_async_status.py +126 -0
  390. fortisapi/models/response_batchs_collection.py +228 -0
  391. fortisapi/models/response_calculate_surcharge.py +126 -0
  392. fortisapi/models/response_contact.py +126 -0
  393. fortisapi/models/response_contact_searchs_collection.py +228 -0
  394. fortisapi/models/response_contacts_collection.py +228 -0
  395. fortisapi/models/response_declined_recurring_transaction.py +126 -0
  396. fortisapi/models/response_declined_recurring_transaction_payment.py +126 -0
  397. fortisapi/models/response_declined_recurring_transaction_resend.py +126 -0
  398. fortisapi/models/response_declined_recurring_transactions_collection.py +228 -0
  399. fortisapi/models/response_device_term.py +126 -0
  400. fortisapi/models/response_device_terms_collection.py +228 -0
  401. fortisapi/models/response_fullboarding.py +126 -0
  402. fortisapi/models/response_location.py +126 -0
  403. fortisapi/models/response_location_info.py +126 -0
  404. fortisapi/models/response_location_infos_collection.py +228 -0
  405. fortisapi/models/response_location_searchs_collection.py +228 -0
  406. fortisapi/models/response_locations_collection.py +228 -0
  407. fortisapi/models/response_merchant.py +126 -0
  408. fortisapi/models/response_merchant_deposit.py +126 -0
  409. fortisapi/models/response_merchant_deposits_collection.py +228 -0
  410. fortisapi/models/response_merchant_details.py +126 -0
  411. fortisapi/models/response_onboarding.py +126 -0
  412. fortisapi/models/response_paylink.py +126 -0
  413. fortisapi/models/response_paylinks_collection.py +228 -0
  414. fortisapi/models/response_payment_card_reader_token.py +126 -0
  415. fortisapi/models/response_quick_invoice.py +126 -0
  416. fortisapi/models/response_quick_invoice_resend.py +126 -0
  417. fortisapi/models/response_quick_invoices_collection.py +228 -0
  418. fortisapi/models/response_recurring.py +126 -0
  419. fortisapi/models/response_recurrings_collection.py +228 -0
  420. fortisapi/models/response_reporting_reports_cc_settled_transactions_collection.py +231 -0
  421. fortisapi/models/response_reporting_reports_chargebacks_collection.py +228 -0
  422. fortisapi/models/response_signature.py +126 -0
  423. fortisapi/models/response_signatures_collection.py +228 -0
  424. fortisapi/models/response_tag.py +126 -0
  425. fortisapi/models/response_tags_collection.py +228 -0
  426. fortisapi/models/response_terminal.py +126 -0
  427. fortisapi/models/response_terminals_collection.py +228 -0
  428. fortisapi/models/response_three_ds_authentication.py +126 -0
  429. fortisapi/models/response_three_ds_transaction.py +126 -0
  430. fortisapi/models/response_ticket.py +126 -0
  431. fortisapi/models/response_ticket_intention.py +126 -0
  432. fortisapi/models/response_tickets_collection.py +228 -0
  433. fortisapi/models/response_token.py +126 -0
  434. fortisapi/models/response_tokens_collection.py +228 -0
  435. fortisapi/models/response_transaction.py +126 -0
  436. fortisapi/models/response_transaction_ach_retry.py +126 -0
  437. fortisapi/models/response_transaction_ach_retrys_collection.py +228 -0
  438. fortisapi/models/response_transaction_bin_info.py +126 -0
  439. fortisapi/models/response_transaction_intention.py +126 -0
  440. fortisapi/models/response_transaction_level_3.py +126 -0
  441. fortisapi/models/response_transaction_level_3_master.py +126 -0
  442. fortisapi/models/response_transaction_level_3_visa.py +126 -0
  443. fortisapi/models/response_transaction_processing.py +126 -0
  444. fortisapi/models/response_transactions_collection.py +228 -0
  445. fortisapi/models/response_webhook.py +126 -0
  446. fortisapi/models/result.py +152 -0
  447. fortisapi/models/retry_transaction.py +3198 -0
  448. fortisapi/models/retry_transaction_ach_retry.py +246 -0
  449. fortisapi/models/return_fee_transaction.py +3198 -0
  450. fortisapi/models/return_fee_transaction_ach_retry.py +246 -0
  451. fortisapi/models/saved_account.py +1408 -0
  452. fortisapi/models/scheme_id_enum.py +54 -0
  453. fortisapi/models/sec_code_enum.py +51 -0
  454. fortisapi/models/settings.py +148 -0
  455. fortisapi/models/settled_currency_enum.py +168 -0
  456. fortisapi/models/severity_enum.py +62 -0
  457. fortisapi/models/ship_address_usage_ind_enum.py +62 -0
  458. fortisapi/models/ship_indicator_enum.py +101 -0
  459. fortisapi/models/ship_name_indicator_enum.py +52 -0
  460. fortisapi/models/shipping_address.py +264 -0
  461. fortisapi/models/signature.py +220 -0
  462. fortisapi/models/sms_blacklist.py +178 -0
  463. fortisapi/models/sms_enum.py +47 -0
  464. fortisapi/models/sort.py +132 -0
  465. fortisapi/models/source_enum.py +56 -0
  466. fortisapi/models/stack_enum.py +47 -0
  467. fortisapi/models/status_11.py +131 -0
  468. fortisapi/models/status_3_enum.py +47 -0
  469. fortisapi/models/status_5.py +102 -0
  470. fortisapi/models/status_code_12_enum.py +47 -0
  471. fortisapi/models/status_code_17_enum.py +102 -0
  472. fortisapi/models/status_code_enum.py +50 -0
  473. fortisapi/models/status_enum.py +50 -0
  474. fortisapi/models/status_id_enum.py +47 -0
  475. fortisapi/models/surcharge.py +574 -0
  476. fortisapi/models/surcharge_transaction.py +367 -0
  477. fortisapi/models/suspicious_acc_activity_enum.py +52 -0
  478. fortisapi/models/tag.py +194 -0
  479. fortisapi/models/tag_transaction.py +319 -0
  480. fortisapi/models/tax_exempt_enum.py +61 -0
  481. fortisapi/models/tax_surcharge_config_enum.py +47 -0
  482. fortisapi/models/terminal.py +1245 -0
  483. fortisapi/models/terminal_2.py +1243 -0
  484. fortisapi/models/terminal_application.py +411 -0
  485. fortisapi/models/terminal_cvm.py +293 -0
  486. fortisapi/models/terminal_manufacturer.py +249 -0
  487. fortisapi/models/terminal_manufacturer_code_enum.py +55 -0
  488. fortisapi/models/terminal_router.py +245 -0
  489. fortisapi/models/terminal_timeouts.py +304 -0
  490. fortisapi/models/terminal_timeouts_12.py +314 -0
  491. fortisapi/models/three_ds_req_auth_method_enum.py +154 -0
  492. fortisapi/models/three_ds_req_prior_auth_method_enum.py +123 -0
  493. fortisapi/models/three_ds_requestor.py +345 -0
  494. fortisapi/models/three_ds_requestor_authentication_ind_enum.py +141 -0
  495. fortisapi/models/three_ds_requestor_authentication_info.py +179 -0
  496. fortisapi/models/three_ds_requestor_challenge_ind_enum.py +126 -0
  497. fortisapi/models/three_ds_requestor_dec_req_ind_enum.py +72 -0
  498. fortisapi/models/three_ds_requestor_prior_authentication_info.py +188 -0
  499. fortisapi/models/three_ds_requestor_spc_support_enum.py +49 -0
  500. fortisapi/models/three_ri_ind_enum.py +180 -0
  501. fortisapi/models/tip_percents.py +160 -0
  502. fortisapi/models/trans_char_enum.py +45 -0
  503. fortisapi/models/transaction.py +3196 -0
  504. fortisapi/models/transaction_batch.py +537 -0
  505. fortisapi/models/transaction_batch_settlement.py +202 -0
  506. fortisapi/models/transaction_history.py +246 -0
  507. fortisapi/models/transaction_level_3.py +152 -0
  508. fortisapi/models/transaction_reference.py +298 -0
  509. fortisapi/models/transaction_split.py +221 -0
  510. fortisapi/models/transaction_status_enum.py +88 -0
  511. fortisapi/models/transaction_type_enum.py +68 -0
  512. fortisapi/models/trx_source_code_enum.py +155 -0
  513. fortisapi/models/trx_source_id_enum.py +155 -0
  514. fortisapi/models/type_103_enum.py +44 -0
  515. fortisapi/models/type_105_enum.py +44 -0
  516. fortisapi/models/type_10_enum.py +44 -0
  517. fortisapi/models/type_110_enum.py +44 -0
  518. fortisapi/models/type_114_enum.py +44 -0
  519. fortisapi/models/type_11_enum.py +44 -0
  520. fortisapi/models/type_121_enum.py +44 -0
  521. fortisapi/models/type_123.py +131 -0
  522. fortisapi/models/type_124_enum.py +44 -0
  523. fortisapi/models/type_125_enum.py +44 -0
  524. fortisapi/models/type_126_enum.py +44 -0
  525. fortisapi/models/type_127_enum.py +44 -0
  526. fortisapi/models/type_128_enum.py +44 -0
  527. fortisapi/models/type_134_enum.py +44 -0
  528. fortisapi/models/type_135_enum.py +44 -0
  529. fortisapi/models/type_136_enum.py +44 -0
  530. fortisapi/models/type_15_enum.py +44 -0
  531. fortisapi/models/type_16_enum.py +44 -0
  532. fortisapi/models/type_1_enum.py +44 -0
  533. fortisapi/models/type_20_enum.py +44 -0
  534. fortisapi/models/type_21_enum.py +44 -0
  535. fortisapi/models/type_22_enum.py +44 -0
  536. fortisapi/models/type_23_enum.py +44 -0
  537. fortisapi/models/type_27_enum.py +44 -0
  538. fortisapi/models/type_28_enum.py +44 -0
  539. fortisapi/models/type_29_enum.py +64 -0
  540. fortisapi/models/type_2_enum.py +44 -0
  541. fortisapi/models/type_30_enum.py +44 -0
  542. fortisapi/models/type_31_enum.py +44 -0
  543. fortisapi/models/type_35_enum.py +44 -0
  544. fortisapi/models/type_39_enum.py +44 -0
  545. fortisapi/models/type_3_enum.py +44 -0
  546. fortisapi/models/type_43_enum.py +44 -0
  547. fortisapi/models/type_44_enum.py +44 -0
  548. fortisapi/models/type_45_enum.py +44 -0
  549. fortisapi/models/type_46_enum.py +44 -0
  550. fortisapi/models/type_47_enum.py +44 -0
  551. fortisapi/models/type_48_enum.py +44 -0
  552. fortisapi/models/type_4_enum.py +44 -0
  553. fortisapi/models/type_52_enum.py +44 -0
  554. fortisapi/models/type_53_enum.py +44 -0
  555. fortisapi/models/type_54_enum.py +44 -0
  556. fortisapi/models/type_55_enum.py +44 -0
  557. fortisapi/models/type_59_enum.py +44 -0
  558. fortisapi/models/type_5_enum.py +44 -0
  559. fortisapi/models/type_60_enum.py +44 -0
  560. fortisapi/models/type_61_enum.py +45 -0
  561. fortisapi/models/type_62_enum.py +44 -0
  562. fortisapi/models/type_63_enum.py +91 -0
  563. fortisapi/models/type_64_enum.py +44 -0
  564. fortisapi/models/type_65_enum.py +44 -0
  565. fortisapi/models/type_6_enum.py +44 -0
  566. fortisapi/models/type_70_enum.py +44 -0
  567. fortisapi/models/type_71_enum.py +44 -0
  568. fortisapi/models/type_75_enum.py +44 -0
  569. fortisapi/models/type_79_enum.py +44 -0
  570. fortisapi/models/type_83_enum.py +44 -0
  571. fortisapi/models/type_84_enum.py +44 -0
  572. fortisapi/models/type_88_enum.py +44 -0
  573. fortisapi/models/type_89_enum.py +44 -0
  574. fortisapi/models/type_93_enum.py +44 -0
  575. fortisapi/models/type_94_enum.py +44 -0
  576. fortisapi/models/type_98_enum.py +44 -0
  577. fortisapi/models/type_99_enum.py +44 -0
  578. fortisapi/models/type_enum.py +44 -0
  579. fortisapi/models/type_id_enum.py +59 -0
  580. fortisapi/models/ui_prefs.py +204 -0
  581. fortisapi/models/update_if_exists_enum.py +44 -0
  582. fortisapi/models/user.py +180 -0
  583. fortisapi/models/user_1.py +1197 -0
  584. fortisapi/models/user_9.py +1195 -0
  585. fortisapi/models/user_type_code_enum.py +74 -0
  586. fortisapi/models/v_1_contacts_request.py +685 -0
  587. fortisapi/models/v_1_contacts_request_1.py +707 -0
  588. fortisapi/models/v_1_declined_recurring_transaction_payments_request.py +354 -0
  589. fortisapi/models/v_1_device_terms_request.py +161 -0
  590. fortisapi/models/v_1_elements_ticket_intention_request.py +195 -0
  591. fortisapi/models/v_1_elements_transaction_intention_request.py +591 -0
  592. fortisapi/models/v_1_fullboarding_request.py +827 -0
  593. fortisapi/models/v_1_merchant_threedsecure_authentication_request.py +696 -0
  594. fortisapi/models/v_1_onboarding_request.py +833 -0
  595. fortisapi/models/v_1_paylinks_request.py +723 -0
  596. fortisapi/models/v_1_paylinks_request_1.py +735 -0
  597. fortisapi/models/v_1_public_calculate_surcharge_request.py +527 -0
  598. fortisapi/models/v_1_quick_invoices_request.py +1035 -0
  599. fortisapi/models/v_1_quick_invoices_request_1.py +1070 -0
  600. fortisapi/models/v_1_quick_invoices_transaction_request.py +86 -0
  601. fortisapi/models/v_1_recurrings_defer_payment_request.py +86 -0
  602. fortisapi/models/v_1_recurrings_request.py +742 -0
  603. fortisapi/models/v_1_recurrings_request_1.py +750 -0
  604. fortisapi/models/v_1_recurrings_skip_payment_request.py +86 -0
  605. fortisapi/models/v_1_signatures_request.py +113 -0
  606. fortisapi/models/v_1_tags_request.py +99 -0
  607. fortisapi/models/v_1_tags_request_1.py +130 -0
  608. fortisapi/models/v_1_terminals_request.py +1005 -0
  609. fortisapi/models/v_1_terminals_request_1.py +1112 -0
  610. fortisapi/models/v_1_tickets_request.py +286 -0
  611. fortisapi/models/v_1_tokens_ach_request.py +945 -0
  612. fortisapi/models/v_1_tokens_ach_request_1.py +907 -0
  613. fortisapi/models/v_1_tokens_cc_request.py +1071 -0
  614. fortisapi/models/v_1_tokens_cc_request_1.py +905 -0
  615. fortisapi/models/v_1_tokens_previous_transaction_request.py +858 -0
  616. fortisapi/models/v_1_tokens_terminal_async_request.py +889 -0
  617. fortisapi/models/v_1_tokens_terminal_request.py +889 -0
  618. fortisapi/models/v_1_tokens_ticket_request.py +882 -0
  619. fortisapi/models/v_1_tokens_wallet_request.py +919 -0
  620. fortisapi/models/v_1_transaction_ach_retries_request.py +119 -0
  621. fortisapi/models/v_1_transactions_ach_credit_keyed_request.py +1600 -0
  622. fortisapi/models/v_1_transactions_ach_credit_prev_trxn_request.py +1616 -0
  623. fortisapi/models/v_1_transactions_ach_credit_token_request.py +1660 -0
  624. fortisapi/models/v_1_transactions_ach_debit_keyed_request.py +1600 -0
  625. fortisapi/models/v_1_transactions_ach_debit_prev_trxn_request.py +1616 -0
  626. fortisapi/models/v_1_transactions_ach_debit_token_request.py +1660 -0
  627. fortisapi/models/v_1_transactions_ach_refund_prev_trxn_request.py +1616 -0
  628. fortisapi/models/v_1_transactions_auth_complete_request.py +1519 -0
  629. fortisapi/models/v_1_transactions_auth_increment_request.py +1533 -0
  630. fortisapi/models/v_1_transactions_cash_refund_request.py +1515 -0
  631. fortisapi/models/v_1_transactions_cash_sale_request.py +1489 -0
  632. fortisapi/models/v_1_transactions_cc_auth_only_keyed_request.py +2164 -0
  633. fortisapi/models/v_1_transactions_cc_auth_only_prev_trxn_request.py +2124 -0
  634. fortisapi/models/v_1_transactions_cc_auth_only_taptopay_request.py +1843 -0
  635. fortisapi/models/v_1_transactions_cc_auth_only_terminal_request.py +2082 -0
  636. fortisapi/models/v_1_transactions_cc_auth_only_ticket_request.py +2050 -0
  637. fortisapi/models/v_1_transactions_cc_auth_only_token_request.py +2129 -0
  638. fortisapi/models/v_1_transactions_cc_auth_only_wallet_request.py +2062 -0
  639. fortisapi/models/v_1_transactions_cc_avs_only_keyed_request.py +2175 -0
  640. fortisapi/models/v_1_transactions_cc_avs_only_prev_trxn_request.py +2124 -0
  641. fortisapi/models/v_1_transactions_cc_avs_only_swiped_request.py +2086 -0
  642. fortisapi/models/v_1_transactions_cc_avs_only_terminal_request.py +2093 -0
  643. fortisapi/models/v_1_transactions_cc_avs_only_ticket_request.py +2061 -0
  644. fortisapi/models/v_1_transactions_cc_avs_only_token_request.py +2140 -0
  645. fortisapi/models/v_1_transactions_cc_avs_only_wallet_request.py +2073 -0
  646. fortisapi/models/v_1_transactions_cc_balance_inquiry_keyed_request.py +2176 -0
  647. fortisapi/models/v_1_transactions_cc_balance_inquiry_prev_trxn_request.py +2125 -0
  648. fortisapi/models/v_1_transactions_cc_balance_inquiry_swiped_request.py +2087 -0
  649. fortisapi/models/v_1_transactions_cc_balance_inquiry_terminal_request.py +2094 -0
  650. fortisapi/models/v_1_transactions_cc_balance_inquiry_ticket_request.py +2062 -0
  651. fortisapi/models/v_1_transactions_cc_balance_inquiry_token_request.py +2141 -0
  652. fortisapi/models/v_1_transactions_cc_balance_inquiry_wallet_request.py +2074 -0
  653. fortisapi/models/v_1_transactions_cc_refund_keyed_request.py +2218 -0
  654. fortisapi/models/v_1_transactions_cc_refund_prev_trxn_request.py +2124 -0
  655. fortisapi/models/v_1_transactions_cc_refund_taptopay_request.py +1869 -0
  656. fortisapi/models/v_1_transactions_cc_refund_terminal_request.py +2082 -0
  657. fortisapi/models/v_1_transactions_cc_refund_ticket_request.py +2050 -0
  658. fortisapi/models/v_1_transactions_cc_refund_token_request.py +2129 -0
  659. fortisapi/models/v_1_transactions_cc_refund_wallet_request.py +2062 -0
  660. fortisapi/models/v_1_transactions_cc_sale_keyed_request.py +2164 -0
  661. fortisapi/models/v_1_transactions_cc_sale_prev_trxn_request.py +2124 -0
  662. fortisapi/models/v_1_transactions_cc_sale_taptopay_request.py +1843 -0
  663. fortisapi/models/v_1_transactions_cc_sale_terminal_request.py +2082 -0
  664. fortisapi/models/v_1_transactions_cc_sale_ticket_request.py +2050 -0
  665. fortisapi/models/v_1_transactions_cc_sale_token_request.py +2129 -0
  666. fortisapi/models/v_1_transactions_cc_sale_wallet_request.py +2062 -0
  667. fortisapi/models/v_1_transactions_ebt_voucher_clear_refund_keyed_request.py +2190 -0
  668. fortisapi/models/v_1_transactions_ebt_voucher_clear_sale_keyed_request.py +2190 -0
  669. fortisapi/models/v_1_transactions_level_3_master_card_request.py +91 -0
  670. fortisapi/models/v_1_transactions_level_3_visa_request.py +91 -0
  671. fortisapi/models/v_1_transactions_partial_reversal_request.py +1462 -0
  672. fortisapi/models/v_1_transactions_refund_request.py +1448 -0
  673. fortisapi/models/v_1_transactions_tip_adjust_request.py +1973 -0
  674. fortisapi/models/v_1_transactions_void_request.py +130 -0
  675. fortisapi/models/v_1_wallet_provider_apple_pay_validate_merchant_request.py +127 -0
  676. fortisapi/models/v_1_wallet_provider_merchant_details_request.py +87 -0
  677. fortisapi/models/v_1_webhooks_apm_onboarding_request.py +421 -0
  678. fortisapi/models/v_1_webhooks_apm_onboarding_request_1.py +494 -0
  679. fortisapi/models/v_1_webhooks_batch_request.py +410 -0
  680. fortisapi/models/v_1_webhooks_batch_request_1.py +494 -0
  681. fortisapi/models/v_1_webhooks_contact_request.py +421 -0
  682. fortisapi/models/v_1_webhooks_contact_request_1.py +494 -0
  683. fortisapi/models/v_1_webhooks_transaction_request.py +410 -0
  684. fortisapi/models/v_1_webhooks_transaction_request_1.py +494 -0
  685. fortisapi/models/values_4_enum.py +59 -0
  686. fortisapi/models/values_50_enum.py +59 -0
  687. fortisapi/models/values_51_enum.py +62 -0
  688. fortisapi/models/values_58_enum.py +59 -0
  689. fortisapi/models/values_5_enum.py +59 -0
  690. fortisapi/models/values_6_enum.py +59 -0
  691. fortisapi/models/values_7_enum.py +59 -0
  692. fortisapi/models/values_99_enum.py +45 -0
  693. fortisapi/models/values_enum.py +51 -0
  694. fortisapi/models/wallet_provider_enum.py +47 -0
  695. fortisapi/models/wallet_type_enum.py +86 -0
  696. fortisapi/models/work_phone.py +130 -0
  697. fortisapi/utilities/__init__.py +6 -0
  698. fortisapi/utilities/file_wrapper.py +45 -0
  699. fortisapi/utilities/union_type_lookup.py +436 -0
@@ -0,0 +1,4233 @@
1
+ """fortisapi.
2
+
3
+ This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
4
+ """
5
+
6
+ # ruff: noqa: E501
7
+ from fortisapi.api_helper import APIHelper
8
+ from fortisapi.models.account_vault import AccountVault
9
+ from fortisapi.models.additional_amount import (
10
+ AdditionalAmount,
11
+ )
12
+ from fortisapi.models.all_tag import AllTag
13
+ from fortisapi.models.balance import Balance
14
+ from fortisapi.models.billing_address_1 import (
15
+ BillingAddress1,
16
+ )
17
+ from fortisapi.models.changelog import Changelog
18
+ from fortisapi.models.contact_1 import Contact1
19
+ from fortisapi.models.created_user import CreatedUser
20
+ from fortisapi.models.currency_type import CurrencyType
21
+ from fortisapi.models.declined_recurring_notification import (
22
+ DeclinedRecurringNotification,
23
+ )
24
+ from fortisapi.models.developer_company import (
25
+ DeveloperCompany,
26
+ )
27
+ from fortisapi.models.emv_receipt_data import (
28
+ EmvReceiptData,
29
+ )
30
+ from fortisapi.models.hosted_payment_page import (
31
+ HostedPaymentPage,
32
+ )
33
+ from fortisapi.models.location import Location
34
+ from fortisapi.models.log_email import LogEmail
35
+ from fortisapi.models.payment_recurring_notification import (
36
+ PaymentRecurringNotification,
37
+ )
38
+ from fortisapi.models.postback_log import PostbackLog
39
+ from fortisapi.models.product_transaction import (
40
+ ProductTransaction,
41
+ )
42
+ from fortisapi.models.quick_invoice import QuickInvoice
43
+ from fortisapi.models.reason_code import ReasonCode
44
+ from fortisapi.models.recurring_3 import Recurring3
45
+ from fortisapi.models.rejected_transaction_ach_retry import (
46
+ RejectedTransactionAchRetry,
47
+ )
48
+ from fortisapi.models.retry_transaction_ach_retry import (
49
+ RetryTransactionAchRetry,
50
+ )
51
+ from fortisapi.models.return_fee_transaction_ach_retry import (
52
+ ReturnFeeTransactionAchRetry,
53
+ )
54
+ from fortisapi.models.saved_account import SavedAccount
55
+ from fortisapi.models.signature import Signature
56
+ from fortisapi.models.status_11 import Status11
57
+ from fortisapi.models.surcharge import Surcharge
58
+ from fortisapi.models.surcharge_transaction import (
59
+ SurchargeTransaction,
60
+ )
61
+ from fortisapi.models.tag import Tag
62
+ from fortisapi.models.tag_transaction import (
63
+ TagTransaction,
64
+ )
65
+ from fortisapi.models.terminal import Terminal
66
+ from fortisapi.models.transaction_batch import (
67
+ TransactionBatch,
68
+ )
69
+ from fortisapi.models.transaction_history import (
70
+ TransactionHistory,
71
+ )
72
+ from fortisapi.models.transaction_level_3 import (
73
+ TransactionLevel3,
74
+ )
75
+ from fortisapi.models.transaction_reference import (
76
+ TransactionReference,
77
+ )
78
+ from fortisapi.models.transaction_split import (
79
+ TransactionSplit,
80
+ )
81
+ from fortisapi.models.type_123 import Type123
82
+
83
+
84
+ class Data29(object):
85
+ """Implementation of the 'Data29' model.
86
+
87
+ Attributes:
88
+ additional_amounts (List[AdditionalAmount]): Additional amounts
89
+ billing_address (BillingAddress1): Billing Address Object
90
+ checkin_date (str): Checkin Date - The time difference between checkin_date
91
+ and checkout_date must be less than or equal to 99 days. NOTE: if
92
+ checkin_date is in the future, set the advance_deposit to 1 >Required if
93
+ merchant industry type is lodging. >
94
+ checkout_date (str): Checkout Date - The time difference between checkin_date
95
+ and checkout_date must be less than or equal to 99 days. >Required if
96
+ merchant industry type is lodging. >
97
+ clerk_number (str): Clerk or Employee Identifier
98
+ contact_api_id (str): This can be supplied in place of contact_id if you
99
+ would like to use a contact for the transaction and are using your own
100
+ custom api_id's to track contacts in the system.
101
+ contact_id (str): If contact_id is provided, ensure it belongs to the same
102
+ location as the transaction. You cannot move transaction across locations.
103
+ custom_data (Any): A field that allows custom JSON to be entered to store
104
+ extra data.
105
+ customer_id (str): Can be used by Merchants to identify Contacts in our
106
+ system by an ID from another system.
107
+ description (str): Description
108
+ iias_ind (IiasIndEnum): Possible values are '0', '1','2'
109
+ image_front (str): A base64 encoded string for the image. Used with Check21
110
+ ACH transactions.
111
+ image_back (str): A base64 encoded string for the image. Used with Check21
112
+ ACH transactions.
113
+ installment (bool): Flag that is allowed to be passed on card not present
114
+ industries to signify the transaction is a fixed installment plan
115
+ transaction.
116
+ installment_number (int): If this is a fixed installment plan and installment
117
+ field is being passed as 1, then this field must have a vlue of 1-999
118
+ specifying the current installment number that is running.
119
+ installment_count (int): If this is a fixed installment plan and installment
120
+ field is being passed as 1, then this field must have a vlue of 1-999
121
+ specifying the total number of installments on the plan. This number must
122
+ be grater than or equal to installment_number.
123
+ recurring_flag (RecurringFlagEnum): Recurring Flag
124
+ installment_counter (int): Installment Counter
125
+ installment_total (int): Installment Total
126
+ subscription (bool): Subscription
127
+ standing_order (bool): Standing Order
128
+ location_api_id (str): This can be supplied in place of location_id for the
129
+ transaction if you are using your own custom api_id's for your locations.
130
+ location_id (str): A valid Location Id to associate the transaction with.
131
+ product_transaction_id (str): The Product's method (cc/ach) has to match the
132
+ action. If not provided, the API will use the default configured for the
133
+ Location.
134
+ advance_deposit (bool): Advance Deposit
135
+ no_show (bool): Used in Lodging
136
+ notification_email_address (str): If email is supplied then receipt will be
137
+ emailed
138
+ order_number (str): Required for CC transactions , if merchant's deposit
139
+ account's duplicate check per batch has 'order_number' field
140
+ po_number (str): Purchase Order number
141
+ quick_invoice_id (str): Can be used to associate a transaction to a Quick
142
+ Invoice. Quick Invoice transactions will have a value for this field
143
+ automatically.
144
+ recurring (Recurring3): Recurring Information on `expand`
145
+ recurring_number (int): If this is an ongoing recurring and recurring field
146
+ is being passed as 1, then this field must have a vlue of 1-999
147
+ specifying the current recurring number that is running.
148
+ room_num (str): Used in Lodging
149
+ room_rate (int): Required if merchant industry type is lodging.
150
+ save_account (bool): Specifies to save account to contacts profile if
151
+ account_number/track_data is present with either contact_id or
152
+ contact_api_id in params.
153
+ save_account_title (str): If saving token while running a transaction, this
154
+ will be the title of the token.
155
+ subtotal_amount (int): This field is allowed and required for transactions
156
+ that have a product where surcharge is configured. Use only integer
157
+ numbers, so $10.99 will be 1099.
158
+ surcharge_amount (int): This field is allowed and required for transactions
159
+ that have a product where surcharge is configured. Use only integer
160
+ numbers, so $10.99 will be 1099.
161
+ tags (List[Tag]): Tag Information on `expand`
162
+ tax (int): The total tax amount for the transaction, including any tax on the
163
+ surcharge (Extra Tax).
164
+ tip_amount (int): Optional tip amount. Tip is not supported for lodging and
165
+ ecommerce merchants. Use only integer numbers, so $10.99 will be 1099.
166
+ transaction_amount (int): Amount of the transaction. This should always be
167
+ the desired settle amount of the transaction. Use only integer numbers,
168
+ so $10.99 will be 1099.
169
+ secondary_amount (int): Retained Amount of the transaction. This should
170
+ always be less than transaction amount. Use only integer numbers, so
171
+ $10.99 will be 1099
172
+ transaction_api_id (str): See api_id page for more details
173
+ transaction_c_1 (str): Custom field 1 for api users to store custom data
174
+ transaction_c_2 (str): Custom field 2 for api users to store custom data
175
+ transaction_c_3 (str): Custom field 3 for api users to store custom data
176
+ bank_funded_only_override (bool): Bank Funded Only Override
177
+ allow_partial_authorization_override (bool): Allow Partial Authorization
178
+ Override
179
+ auto_decline_cvv_override (bool): Auto Decline CVV Override
180
+ auto_decline_street_override (bool): Auto Decline Street Override
181
+ auto_decline_zip_override (bool): Auto Decline Zip Override
182
+ ebt_type (EbtTypeEnum): EBT Type
183
+ currency_code (CurrencyCodeEnum): The currency code, in ISO 4217 format. It
184
+ can be either the 3-letter code (e.g., USD) or the numeric code (e.g.,
185
+ 840).
186
+ id (str): Transaction ID
187
+ created_ts (int): Created Time Stamp
188
+ modified_ts (int): Modified Time Stamp
189
+ terminal_id (str): Terminal ID
190
+ account_holder_name (str): For CC, this is the 'Name (as it appears) on
191
+ Card'. For ACH, this is the 'Name on Account'. >Required for ACH
192
+ transactions if account_vault_id is not provided. For CC transactions
193
+ that are run through a terminal, this field may be overwritten by data
194
+ acquired from the credit card track data. >
195
+ account_type (str): Required for ACH transactions if account_vault_id is not
196
+ provided. >For ACH, allowed values are 'checking' or 'savings'. For CC,
197
+ this field is read only. The system will identify card type and generate
198
+ a value for this field automatically. possible values are: visa, mc,
199
+ disc, amex, jcb, diners, and debit. >
200
+ token_api_id (str): This can be supplied in place of account_vault_id if you
201
+ would like to use an token for the transaction and are using your own
202
+ custom api_id's to track accountvaults in the system.
203
+ token_id (str): Required if account_number, track_data, micr_data is not
204
+ provided.
205
+ ach_identifier (str): Required for ACH transactions in certain scenarios.
206
+ ach_sec_code (AchSecCode1Enum): Required for ACH transactions if
207
+ account_vault_id is not provided.
208
+ auth_amount (int): Authorization Amount
209
+ auth_code (str): Required on force transactions and EBT voucher clear
210
+ sale/refund. Ignored for all other actions.
211
+ avs (AvsEnum): AVS
212
+ avs_enhanced (str): AVS Enhanced
213
+ cardholder_present (bool): If the cardholder is present at the point of
214
+ service
215
+ card_present (bool): A POST only field to specify whether or not the card is
216
+ present. >This field will be defaulted to '1' for all card present
217
+ industries (retail, lodging, restaurant) and '0' for card not present
218
+ industries (MOTO/e-commerce). For lodging, if the no_show flag is set to
219
+ '1', this field will automatically be set to '0'. For transactions where
220
+ account_vault_id is used, this filed will be set to '0'. >
221
+ check_number (str): Required for transactions using TEL SEC code.
222
+ customer_ip (str): Can be used to store customer IP Address
223
+ cvv_response (str): Obfuscated CVV
224
+ entry_mode_id (EntryModeIdEnum): Entry Mode - See entry mode section for more
225
+ detail
226
+ emv_receipt_data (EmvReceiptData): This field is a read only field. This
227
+ field will only be populated for EMV transactions and will contain proper
228
+ JSON formatted data with some or all of the following fields:
229
+ TC,TVR,AID,TSI,ATC,APPLAB,APPN,CVM
230
+ first_six (str): First six numbers of account_number. Automatically
231
+ generated by system.
232
+ last_four (str): Last four numbers of account_number. Automatically
233
+ generated by the system.
234
+ payment_method (PaymentMethod9Enum): 'cc' or 'ach'
235
+ terminal_serial_number (str): If transaction was processed using a terminal,
236
+ this field would contain the terminal's serial number
237
+ transaction_settlement_status (str): (Deprecated field)
238
+ charge_back_date (str): Charge Back Date (ACH Trxs)
239
+ is_recurring (bool): Flag that is allowed to be passed on card not present
240
+ industries to signify the transaction is a fixed installment plan
241
+ transaction.
242
+ notification_email_sent (bool): Indicates if email receipt has been sent
243
+ par (str): A field usually returned form the processor to uniquely identifier
244
+ a specific cardholder's credit card.
245
+ reason_code_id (ReasonCodeId1Enum): Response reason code that provides more
246
+ detail as to the result of the transaction. The reason code list can be
247
+ found here: Response Reason Codes >0 - N/A > >1000 - CC - Approved / ACH
248
+ - Accepted > >1000 - CC - Approved / ACH - Accepted > >1001 -
249
+ AuthCompleted > >1002 - Forced > >1003 - AuthOnly Declined > >1004 -
250
+ Validation Failure (System Run Trx) > >1005 - Processor Response Invalid
251
+ > >1200 - Voided > >1201 - Partial Approval > >1240 - Approved, optional
252
+ fields are missing (Paya ACH only) > >1301 - Account Deactivated for
253
+ Fraud > >1302-1399 - Reserved for Future Fraud Reason Codes > >1500 -
254
+ Generic Decline > >1510 - Call > >1518 - Transaction Not Permitted -
255
+ Terminal > >1520 - Pickup Card > >1530 - Retry Trx > >1531 -
256
+ Communication Error > >1540 - Setup Issue, contact Support > >1541 -
257
+ Device is not signature capable > >1588 - Data could not be de-tokenized
258
+ > >1599 - Other Reason > >1601 - Generic Decline > >1602 - Call > >1603 -
259
+ No Reply > >1604 - Pickup Card - No Fraud > >1605 - Pickup Card - Fraud >
260
+ >1606 - Pickup Card - Lost > >1607 - Pickup Card - Stolen > >1608 -
261
+ Account Error > >1609 - Already Reversed > >1610 - Bad PIN > >1611 -
262
+ Cashback Exceeded > >1612 - Cashback Not Available > >1613 - CID Error >
263
+ >1614 - Date Error > >1615 - Do Not Honor > >1616 - NSF > >1618 - Invalid
264
+ Service Code > >1619 - Exceeded activity limit > >1620 - Violation >
265
+ >1621 - Encryption Error > >1622 - Card Expired > >1623 - Renter > >1624
266
+ - Security Violation > >1625 - Card Not Permitted > >1626 - Trans Not
267
+ Permitted > >1627 - System Error > >1628 - Bad Merchant ID > >1629 -
268
+ Duplicate Batch (Already Closed) > >1630 - Batch Rejected > >1631 -
269
+ Account Closed > >1632 - PIN tries exceeded > > > > > > > > > > > > > > >
270
+ >1640 - Required fields are missing (ACH only) > >1641 - Previously
271
+ declined transaction (1640) > > > > > > > > > > > > > > > > > >1650 -
272
+ Contact Support > >1651 - Max Sending - Throttle Limit Hit (ACH only) >
273
+ >1652 - Max Attempts Exceeded > >1653 - Contact Support > >1654 - Voided
274
+ - Online Reversal Failed > >1655 - Decline (AVS Auto Reversal) > >1656 -
275
+ Decline (CVV Auto Reversal) > >1657 - Decline (Partial Auth Auto
276
+ Reversal) > >1658 - Expired Authorization > >1659 - Declined - Partial
277
+ Approval not Supported > >1660 - Bank Account Error, please delete and
278
+ re-add Token > >1661 - Declined AuthIncrement > >1662 - Auto Reversal -
279
+ Processor can't settle > >1663 - Manager Needed (Needs override
280
+ transaction) > >1664 - Token Not Found: Sharing Group Unavailable > >1665
281
+ - Contact Not Found: Sharing Group Unavailable > >1666 - Amount Error >
282
+ >1667 - Action Not Allowed in Current State > >1668 - Original
283
+ Authorization Not Valid > >1701 - Chip Reject > >1800 - Incorrect CVV >
284
+ >1801 - Duplicate Transaction > >1802 - MID/TID Not Registered > >1803 -
285
+ Stop Recurring > >1804 - No Transactions in Batch > >1805 - Batch Does
286
+ Not Exist > > > **ACH Reject Reason Codes** | Code | E-Code | Verbiage
287
+ | Short Description | Long Description | | ----------- | ----------- |
288
+ ----------- | ----------- | ----------- | | 2101 | Rejected-R01 | |
289
+ Insufficient funds | Available balance is not sufficient to cover the
290
+ amount of the debit entry | | 2102 | Rejected-R02 | E02 | Bank account
291
+ closed | Previously active amount has been closed by the customer of RDFI
292
+ | | 2103 | Rejected-R03 | E03 | No bank account/unable to locate account
293
+ | Account number does not correspond to the individual identified in the
294
+ entry, or the account number designated is not an open account | | 2104 |
295
+ Rejected-R04 | E04 | Invalid bank account number | Account number
296
+ structure is not valid | | 2105 | Rejected-R05 | E05 | Reserved |
297
+ Currently not in use | | 2106 | Rejected-R06 | | Returned per ODFI
298
+ request | ODFI requested the RDFI to return the entry | | 2107 |
299
+ Rejected-R07 | E07 | Authorization revoked by customer | Receiver has
300
+ revoked authorization | | 2108 | Rejected-R08 | E08 | Payment stopped |
301
+ Receiver of a recurring debit has stopped payment of an entry | | 2109 |
302
+ Rejected-R09 | | Uncollected funds | Collected funds are not sufficient
303
+ for payment of the debit entry | | 2110 | Rejected-R10 | E10 | Customer
304
+ Advises Originator is Not Known to Receiver and/or Is Not Authorized by
305
+ Receiver to Debit Receiver’s Account | Receiver has advised RDFI that
306
+ originator is not authorized to debit his bank account | | 2111 |
307
+ Rejected-R11 | | Customer Advises Entry Not In Accordance with the Terms
308
+ of the Authorization | To be used when there is an error in the
309
+ authorization | | 2112 | Rejected-R12 | | Branch sold to another RDFI |
310
+ RDFI unable to post entry destined for a bank account maintained at a
311
+ branch sold to another financial institution | | 2113 | Rejected-R13 | |
312
+ RDFI not qualified to participate | Financial institution does not
313
+ receive commercial ACH entries | | 2114 | Rejected-R14 | E14 |
314
+ Representative payee deceased or unable to continue in that capacity |
315
+ The representative payee authorized to accept entries on behalf of a
316
+ beneficiary is either deceased or unable to continue in that capacity | |
317
+ 2115 | Rejected-R15 | E15 | Beneficiary or bank account holder deceased |
318
+ (Other than representative payee) deceased* - (1) the beneficiary
319
+ entitled to payments is deceased or (2) the bank account holder other
320
+ than a representative payee is deceased | | 2116 | Rejected-R16 | E16 |
321
+ Bank account frozen | Funds in bank account are unavailable due to action
322
+ by RDFI or legal order | | 2117 | Rejected-R17 | | File record edit
323
+ criteria | Entry with Invalid Account Number Initiated Under Questionable
324
+ Circumstances | | 2118 | Rejected-R18 | | Improper effective entry date
325
+ | Entries have been presented prior to the first available processing
326
+ window for the effective date. | | 2119 | Rejected-R19 | | Amount field
327
+ error | Improper formatting of the amount field | | 2120 | Rejected-R20 |
328
+ | Non-payment bank account | Entry destined for non-payment bank account
329
+ defined by reg. | | 2121 | Rejected-R21 | | Invalid company
330
+ Identification | The company ID information not valid (normally CIE
331
+ entries) | | 2122 | Rejected-R22 | | Invalid individual ID number |
332
+ Individual id used by receiver is incorrect (CIE entries) | | 2123 |
333
+ Rejected-R23 | | Credit entry refused by receiver | Receiver returned
334
+ entry because minimum or exact amount not remitted, bank account is
335
+ subject to litigation, or payment represents an overpayment, originator
336
+ is not known to receiver or receiver has not authorized this credit entry
337
+ to this bank account | | 2124 | Rejected-R24 | | Duplicate entry | RDFI
338
+ has received a duplicate entry | | 2125 | Rejected-R25 | | Addenda error
339
+ | Improper formatting of the addenda record information | | 2126 |
340
+ Rejected-R26 | | Mandatory field error | Improper information in one of
341
+ the mandatory fields | | 2127 | Rejected-R27 | | Trace number error |
342
+ Original entry trace number is not valid for return entry; or addenda
343
+ trace numbers do not correspond with entry detail record | | 2128 |
344
+ Rejected-R28 | | Transit routing number check digit error | Check digit
345
+ for the transit routing number is incorrect | | 2129 | Rejected-R29 | E29
346
+ | Corporate customer advises not authorized | RDFI has been notified by
347
+ corporate receiver that debit entry of originator is not authorized | |
348
+ 2130 | Rejected-R30 | | RDFI not participant in check truncation program
349
+ | Financial institution not participating in automated check safekeeping
350
+ application | | 2131 | Rejected-R31 | | Permissible return entry (CCD
351
+ and CTX only) | RDFI has been notified by the ODFI that it agrees to
352
+ accept a CCD or CTX return entry | | 2132 | Rejected-R32 | | RDFI
353
+ non-settlement | RDFI is not able to settle the entry | | 2133 |
354
+ Rejected-R33 | | Return of XCK entry | RDFI determines at its sole
355
+ discretion to return an XCK entry; an XCK return entry may be initiated
356
+ by midnight of the sixtieth day following the settlement date if the XCK
357
+ entry | | 2134 | Rejected-R34 | | Limited participation RDFI | RDFI
358
+ participation has been limited by a federal or state supervisor | | 2135
359
+ | Rejected-R35 | | Return of improper debit entry | ACH debit not
360
+ permitted for use with the CIE standard entry class code (except for
361
+ reversals) | | 2136 | Rejected-R36 | | Return of Improper Credit Entry |
362
+ | | 2137 | Rejected-R37 | | Source Document Presented for Payment | | |
363
+ 2138 | Rejected-R38 | | Stop Payment on Source Document | | | 2139 |
364
+ Rejected-R39 | | Improper Source Document | | | 2140 | Rejected-R40 |
365
+ | Return of ENR Entry by Federal Government Agency | | | 2141 |
366
+ Rejected-R41 | | Invalid Transaction Code | | | 2142 | Rejected-R42 |
367
+ | Routing Number/Check Digit Error | | | 2143 | Rejected-R43 | |
368
+ Invalid DFI Account Number | | | 2144 | Rejected-R44 | | Invalid
369
+ Individual ID Number/Identification | | | 2145 | Rejected-R45 | |
370
+ Invalid Individual Name/Company Name | | | 2146 | Rejected-R46 | |
371
+ Invalid Representative Payee Indicator | | | 2147 | Rejected-R47 | |
372
+ Duplicate Enrollment | | | 2150 | Rejected-R50 | | State Law Affecting
373
+ RCK Acceptance | | | 2151 | Rejected-R51 | | Item is Ineligible, Notice
374
+ Not Provided, etc. | | | 2152 | Rejected-R52 | | Stop Payment on Item
375
+ (adjustment entries) | | | 2153 | Rejected-R53 | | Item and ACH Entry
376
+ Presented for Payment | | | 2161 | Rejected-R61 | | Misrouted Return |
377
+ | | 2162 | Rejected-R62 | | Incorrect Trace Number | | | 2163 |
378
+ Rejected-R63 | | Incorrect Dollar Amount | | | 2164 | Rejected-R64 | |
379
+ Incorrect Individual Identification | | | 2165 | Rejected-R65 | |
380
+ Incorrect Transaction Code | | | 2166 | Rejected-R66 | | Incorrect
381
+ Company Identification | | | 2167 | Rejected-R67 | | Duplicate Return |
382
+ | | 2168 | Rejected-R68 | | Untimely Return | | | 2169 | Rejected-R69 |
383
+ | Multiple Errors | | | 2170 | Rejected-R70 | | Permissible Return
384
+ Entry Not Accepted | | | 2171 | Rejected-R71 | | Misrouted Dishonored
385
+ Return | | | 2172 | Rejected-R72 | | Untimely Dishonored Return | | |
386
+ 2173 | Rejected-R73 | | Timely Original Return | | | 2174 |
387
+ Rejected-R74 | | Corrected Return | | | 2180 | Rejected-R80 | |
388
+ Cross-Border Payment Coding Error | | | 2181 | Rejected-R81 | |
389
+ Non-Participant in Cross-Border Program | | | 2182 | Rejected-R82 | |
390
+ Invalid Foreign Receiving DFI Identification | | | 2183 | Rejected-R83 |
391
+ | Foreign Receiving DFI Unable to Settle | | | 2200 | Voided | |
392
+ Processor Void | The transaction was voided by the processor before being
393
+ sent to the bank | | 2201 | Rejected-C01 | | | | | 2202 | Rejected-C02
394
+ | | | | | 2203 | Rejected-C03 | | | | | 2204 | Rejected-C04 | | |
395
+ | | 2205 | Rejected-C05 | | | | | 2206 | Rejected-C06 | | | | |
396
+ 2207 | Rejected-C07 | | | | | 2208 | Rejected-C08 | | | | | 2209 |
397
+ Rejected-C09 | | | | | 2210 | Rejected-C10 | | | | | 2211 |
398
+ Rejected-C11 | | | | | 2212 | Rejected-C12 | | | | | 2213 |
399
+ Rejected-C13 | | | | | 2261 | Rejected-C61 | | | | | 2262 |
400
+ Rejected-C62 | | | | | 2263 | Rejected-C63 | | | | | 2264 |
401
+ Rejected-C64 | | | | | 2265 | Rejected-C65 | | | | | 2266 |
402
+ Rejected-C66 | | | | | 2267 | Rejected-C67 | | | | | 2268 |
403
+ Rejected-C68 | | | | | 2269 | Rejected-C69 | | | | | 2301 |
404
+ Rejected-X01 | | Misc Check 21 Return | | | 2304 | Rejected-X04 | |
405
+ Invalid Image | | | 2305 | Rejected-X05 | E95 | Breach of Warranty | |
406
+ | 2306 | Rejected-X06 | E96 | Counterfeit / Forgery | | | 2307 |
407
+ Rejected-X07 | E97 | Refer to Maker | | | 2308 | Rejected-X08 | |
408
+ Maximum Payment Attempts | | | 2309 | Rejected-X09 | | Item Cannot be
409
+ Re-presented | | | 2310 | Rejected-X10 | | Not Our Item | | | 2321 |
410
+ Rejected-X21 | | Pay None | | | 2322 | Rejected-X22 | | Pay All | | |
411
+ 2323 | Rejected-X23 | E93 | Non-Negotiable | | | 2329 | Rejected-X29 |
412
+ | Stale Dated | | | 2345 | Rejected-X45 | | Misc Return | | | 2371 |
413
+ Rejected-X71 | | RCK - 2nd Time | | | 2372 | Rejected-X72 | | RCK
414
+ Reject - ACH | | | 2373 | Rejected-X73 | | RCK Reject - Payer | |
415
+ recurring_id (str): A unique identifer used to associate a transaction with a
416
+ Recurring.
417
+ settle_date (str): Settle date
418
+ status_code (StatusCode17Enum): Status ID - See status id section for more
419
+ detail >101 - Sale cc Approved > >102 - Sale cc AuthOnly > >111 - Refund
420
+ cc Refunded > >121 - Credit/Debit/Refund cc AvsOnly > >131 -
421
+ Credit/Debit/Refund ach Pending Origination > >132 - Credit/Debit/Refund
422
+ ach Originating > >133 - Credit/Debit/Refund ach Originated > >134 -
423
+ Credit/Debit/Refund ach Settled > >191 - Settled (depracated - batches
424
+ are now settled on the /v2/transactionbatches endpoint) > >201 - All
425
+ cc/ach Voided > >301 - All cc/ach Declined > >331 - Credit/Debit/Refund
426
+ ach Charged Back >
427
+ transaction_batch_id (str): For cc transactions, this is the id of the batch
428
+ the transaction belongs to (not to be confused with batch number). This
429
+ will be null for transactions that do not settle (void and authonly).
430
+ type_id (TypeIdEnum): Type ID - See type id section for more detail
431
+ verbiage (str): Verbiage -Do not use verbiage to see if the transaction was
432
+ approved, use status_id
433
+ voucher_number (str): Voucher Number
434
+ void_date (str): void date
435
+ batch (str): Batch
436
+ terms_agree (bool): Terms Agreement
437
+ response_message (str): Response Message
438
+ return_date (str): Return Date
439
+ trx_source_id (TrxSourceIdEnum): How the transaction was obtained by the API.
440
+ >1 - Unknown - The origination of this transaction could not be
441
+ determined. > >2 - Mobile - The origination of this transaction is
442
+ through the mobile application. This is always a merchant submitted
443
+ payment. > >3 - Web - The origination of this transaction is through a
444
+ web browser. This is always a merchant submitted payment. Examples
445
+ include Virtual Terminal, Contact Charge, and Transaction Details - Run
446
+ Again pages. > >4 - IVR Transaction - The origination of this transaction
447
+ is over the phone. This payment is submitted by an automated system
448
+ initiated by the cardholder. > >5 - Contact Statement - The orignation of
449
+ this transaction is through a Vericle statement. > >6 - Contact Payment
450
+ Mobile - The origination of this transaction is through the mobile
451
+ application. This is always submitted by a contact user. > >7 - Contact
452
+ Payment - The origination of this transaction is through a web browser.
453
+ This is always submitted by a contact user. > >8 - Quick Invoice - The
454
+ orignation of this transaction is through a Quick Invoice. This is
455
+ typically submitted by a contact user, however the transaction can also
456
+ be submitted by a merchant. > >9 - Payform - The origination of this
457
+ transaction is through a Payform. This is typically a merchant submitted
458
+ transaction, and is always from an internal developer. > >10 - Hosted
459
+ Payment Page - The orignation of this transaction is through a Hosted
460
+ Payment Page. This is typically a cardholder submitted transaction. > >11
461
+ - Emulator - The origination of this transaction is through Auth.Net
462
+ emulator. This is typically submitted through an integration to a website
463
+ or a shopping cart. > >12 - Integration - The orignation of this
464
+ transaction is through an integrated solution. This will always be from
465
+ an external developer. > >13 - Recurring Billing - The orignation of this
466
+ transaction is through a scheduled recurring payment. This payment is
467
+ system-initiated based on a payment schedule that has been configured. >
468
+ >14 - Recurring Secondary - This feature has not been implented yet. >
469
+ >15 - Declined Recurring Email - The orignation of this transaction is
470
+ through the email notification sent when a recurring payment has been
471
+ declined. This is typically submitted by a cardholder. > >16 - Paylink -
472
+ The orignation of this transaction is through a Paylink. This is
473
+ typically submitted by a contact user, however the transaction can also
474
+ be submitted by a merchant. > >17 - Elements - The origination of this
475
+ transaction is through the Elements payments page. This can be a
476
+ cardholder submitted or a merchant submitted transaction. > >18 - ACH
477
+ Import - The origination of this transaction is through an ACH file
478
+ import. This is a merchant initiated process. >
479
+ routing_number (str): This field is read only for ach on transactions. Must
480
+ be supplied if account_vault_id is not provided.
481
+ trx_source_code (TrxSourceCodeEnum): How the transaction was obtained by the
482
+ API. >1 - Unknown - The origination of this transaction could not be
483
+ determined. > >2 - Mobile - The origination of this transaction is
484
+ through the mobile application. This is always a merchant submitted
485
+ payment. > >3 - Web - The origination of this transaction is through a
486
+ web browser. This is always a merchant submitted payment. Examples
487
+ include Virtual Terminal, Contact Charge, and Transaction Details - Run
488
+ Again pages. > >4 - IVR Transaction - The origination of this transaction
489
+ is over the phone. This payment is submitted by an automated system
490
+ initiated by the cardholder. > >5 - Contact Statement - The orignation of
491
+ this transaction is through a Vericle statement. > >6 - Contact Payment
492
+ Mobile - The origination of this transaction is through the mobile
493
+ application. This is always submitted by a contact user. > >7 - Contact
494
+ Payment - The origination of this transaction is through a web browser.
495
+ This is always submitted by a contact user. > >8 - Quick Invoice - The
496
+ orignation of this transaction is through a Quick Invoice. This is
497
+ typically submitted by a contact user, however the transaction can also
498
+ be submitted by a merchant. > >9 - Payform - The origination of this
499
+ transaction is through a Payform. This is typically a merchant submitted
500
+ transaction, and is always from an internal developer. > >10 - Hosted
501
+ Payment Page - The orignation of this transaction is through a Hosted
502
+ Payment Page. This is typically a cardholder submitted transaction. > >11
503
+ - Emulator - The origination of this transaction is through Auth.Net
504
+ emulator. This is typically submitted through an integration to a website
505
+ or a shopping cart. > >12 - Integration - The orignation of this
506
+ transaction is through an integrated solution. This will always be from
507
+ an external developer. > >13 - Recurring Billing - The orignation of this
508
+ transaction is through a scheduled recurring payment. This payment is
509
+ system-initiated based on a payment schedule that has been configured. >
510
+ >14 - Recurring Secondary - This feature has not been implented yet. >
511
+ >15 - Declined Recurring Email - The orignation of this transaction is
512
+ through the email notification sent when a recurring payment has been
513
+ declined. This is typically submitted by a cardholder. > >16 - Paylink -
514
+ The orignation of this transaction is through a Paylink. This is
515
+ typically submitted by a contact user, however the transaction can also
516
+ be submitted by a merchant. > >17 - Elements - The origination of this
517
+ transaction is through the Elements payments page. This can be a
518
+ cardholder submitted or a merchant submitted transaction. > >18 - ACH
519
+ Import - The origination of this transaction is through an ACH file
520
+ import. This is a merchant initiated process. >
521
+ paylink_id (str): Paylink Id
522
+ is_accountvault (bool): Is Token Transaction
523
+ created_user_id (str): User ID Created the register
524
+ modified_user_id (str): Last User ID that updated the register
525
+ transaction_code (str): Transaction Code
526
+ effective_date (str): For ACH only, this is optional and defaults to current
527
+ day.
528
+ notification_phone (str): Notification Phone. Country code not included
529
+ cavv_result (str): Cavv Result
530
+ is_token (bool): Is Token Transaction
531
+ account_vault_id (str): Token ID
532
+ hosted_payment_page_id (str): Hosted Payment Page Id
533
+ stan (str): The model property of type str.
534
+ currency (str): Currency
535
+ card_bin (str): Card Bin
536
+ wallet_type (str): This value provides information from where the transaction
537
+ was initialized (Such as In-App provider)
538
+ account_vault (AccountVault): Token Information on `expand`
539
+ quick_invoice (QuickInvoice): Quick Invoice Information on `expand`
540
+ log_emails (List[LogEmail]): Log Email Information on `expand`
541
+ is_voidable (bool): Is Voidable Information on `expand`
542
+ is_reversible (bool): Is Reversible Information on `expand`
543
+ is_refundable (bool): Is Refundable Information on `expand`
544
+ is_completable (bool): Is Competable Information on `expand`
545
+ is_settled (bool): Is Settled Information on `expand`
546
+ created_user (CreatedUser): User Information on `expand`
547
+ location (Location): Location Information on `expand`
548
+ contact (Contact1): Contact Information on `expand`
549
+ changelogs (List[Changelog]): Changelog Information on `expand`
550
+ product_transaction (ProductTransaction): Product Transaction Information on
551
+ `expand`
552
+ all_tags (List[AllTag]): All Tag Information on `expand`
553
+ tag_transactions (List[TagTransaction]): TagTransaction Information on
554
+ `expand`
555
+ declined_recurring_notification (DeclinedRecurringNotification): Declined
556
+ Recurring Notification Information on `expand`
557
+ payment_recurring_notification (PaymentRecurringNotification): Payment
558
+ Recurring Notification Information on `expand`
559
+ developer_company (DeveloperCompany): Developer Company Information on
560
+ `expand`
561
+ terminal (Terminal): Terminal Information on `expand`
562
+ hosted_payment_page (HostedPaymentPage): Hosted Payment Page Information on
563
+ `expand`
564
+ transaction_level_3 (TransactionLevel3): Transaction Level3 Information on
565
+ `expand`
566
+ developer_company_id (str): Developer Company Id Information on `expand`
567
+ transaction_histories (List[TransactionHistory]): Transaction History
568
+ Information on `expand`
569
+ surcharge_transaction (SurchargeTransaction): Surcharge Transaction
570
+ Information on `expand`
571
+ surcharge (Surcharge): Surcharge Information on `expand`
572
+ signature (Signature): Signature Information on `expand`
573
+ reason_code (ReasonCode): Reason Code Information on `expand`
574
+ mtype (Type123): Type Information on `expand`
575
+ status (Status11): Status Information on `expand`
576
+ transaction_batch (TransactionBatch): Transaction Batch Information on
577
+ `expand`
578
+ transaction_splits (List[TransactionSplit]): Transaction Split Information on
579
+ `expand`
580
+ postback_logs (List[PostbackLog]): Postback Log Information on `expand`
581
+ currency_type (CurrencyType): Currency Type Information on `expand`
582
+ transaction_references (List[TransactionReference]): Transaction Reference
583
+ Information on `expand`
584
+ rejected_transaction_ach_retries (List[RejectedTransactionAchRetry]): [object
585
+ Object]
586
+ return_fee_transaction_ach_retry (ReturnFeeTransactionAchRetry): [object
587
+ Object]
588
+ retry_transaction_ach_retry (RetryTransactionAchRetry): [object Object]
589
+ is_retriable (bool): [object Object]
590
+ saved_account (SavedAccount): [object Object]
591
+ balances (List[Balance]): Additional amounts
592
+ additional_properties (Dict[str, object]): The additional properties for the
593
+ model.
594
+
595
+ """
596
+
597
+ # Create a mapping from Model property names to API property names
598
+ _names = {
599
+ "additional_amounts": "additional_amounts",
600
+ "billing_address": "billing_address",
601
+ "checkin_date": "checkin_date",
602
+ "checkout_date": "checkout_date",
603
+ "clerk_number": "clerk_number",
604
+ "contact_api_id": "contact_api_id",
605
+ "contact_id": "contact_id",
606
+ "custom_data": "custom_data",
607
+ "customer_id": "customer_id",
608
+ "description": "description",
609
+ "iias_ind": "iias_ind",
610
+ "image_front": "image_front",
611
+ "image_back": "image_back",
612
+ "installment": "installment",
613
+ "installment_number": "installment_number",
614
+ "installment_count": "installment_count",
615
+ "recurring_flag": "recurring_flag",
616
+ "installment_counter": "installment_counter",
617
+ "installment_total": "installment_total",
618
+ "subscription": "subscription",
619
+ "standing_order": "standing_order",
620
+ "location_api_id": "location_api_id",
621
+ "location_id": "location_id",
622
+ "product_transaction_id": "product_transaction_id",
623
+ "advance_deposit": "advance_deposit",
624
+ "no_show": "no_show",
625
+ "notification_email_address": "notification_email_address",
626
+ "order_number": "order_number",
627
+ "po_number": "po_number",
628
+ "quick_invoice_id": "quick_invoice_id",
629
+ "recurring": "recurring",
630
+ "recurring_number": "recurring_number",
631
+ "room_num": "room_num",
632
+ "room_rate": "room_rate",
633
+ "save_account": "save_account",
634
+ "save_account_title": "save_account_title",
635
+ "subtotal_amount": "subtotal_amount",
636
+ "surcharge_amount": "surcharge_amount",
637
+ "tags": "tags",
638
+ "tax": "tax",
639
+ "tip_amount": "tip_amount",
640
+ "transaction_amount": "transaction_amount",
641
+ "secondary_amount": "secondary_amount",
642
+ "transaction_api_id": "transaction_api_id",
643
+ "transaction_c_1": "transaction_c1",
644
+ "transaction_c_2": "transaction_c2",
645
+ "transaction_c_3": "transaction_c3",
646
+ "bank_funded_only_override": "bank_funded_only_override",
647
+ "allow_partial_authorization_override": "allow_partial_authorization_override",
648
+ "auto_decline_cvv_override": "auto_decline_cvv_override",
649
+ "auto_decline_street_override": "auto_decline_street_override",
650
+ "auto_decline_zip_override": "auto_decline_zip_override",
651
+ "ebt_type": "ebt_type",
652
+ "currency_code": "currency_code",
653
+ "id": "id",
654
+ "created_ts": "created_ts",
655
+ "modified_ts": "modified_ts",
656
+ "terminal_id": "terminal_id",
657
+ "account_holder_name": "account_holder_name",
658
+ "account_type": "account_type",
659
+ "token_api_id": "token_api_id",
660
+ "token_id": "token_id",
661
+ "ach_identifier": "ach_identifier",
662
+ "ach_sec_code": "ach_sec_code",
663
+ "auth_amount": "auth_amount",
664
+ "auth_code": "auth_code",
665
+ "avs": "avs",
666
+ "avs_enhanced": "avs_enhanced",
667
+ "cardholder_present": "cardholder_present",
668
+ "card_present": "card_present",
669
+ "check_number": "check_number",
670
+ "customer_ip": "customer_ip",
671
+ "cvv_response": "cvv_response",
672
+ "entry_mode_id": "entry_mode_id",
673
+ "emv_receipt_data": "emv_receipt_data",
674
+ "first_six": "first_six",
675
+ "last_four": "last_four",
676
+ "payment_method": "payment_method",
677
+ "terminal_serial_number": "terminal_serial_number",
678
+ "transaction_settlement_status": "transaction_settlement_status",
679
+ "charge_back_date": "charge_back_date",
680
+ "is_recurring": "is_recurring",
681
+ "notification_email_sent": "notification_email_sent",
682
+ "par": "par",
683
+ "reason_code_id": "reason_code_id",
684
+ "recurring_id": "recurring_id",
685
+ "settle_date": "settle_date",
686
+ "status_code": "status_code",
687
+ "transaction_batch_id": "transaction_batch_id",
688
+ "type_id": "type_id",
689
+ "verbiage": "verbiage",
690
+ "voucher_number": "voucher_number",
691
+ "void_date": "void_date",
692
+ "batch": "batch",
693
+ "terms_agree": "terms_agree",
694
+ "response_message": "response_message",
695
+ "return_date": "return_date",
696
+ "trx_source_id": "trx_source_id",
697
+ "routing_number": "routing_number",
698
+ "trx_source_code": "trx_source_code",
699
+ "paylink_id": "paylink_id",
700
+ "is_accountvault": "is_accountvault",
701
+ "created_user_id": "created_user_id",
702
+ "modified_user_id": "modified_user_id",
703
+ "transaction_code": "transaction_code",
704
+ "effective_date": "effective_date",
705
+ "notification_phone": "notification_phone",
706
+ "cavv_result": "cavv_result",
707
+ "is_token": "is_token",
708
+ "account_vault_id": "account_vault_id",
709
+ "hosted_payment_page_id": "hosted_payment_page_id",
710
+ "stan": "stan",
711
+ "currency": "currency",
712
+ "card_bin": "card_bin",
713
+ "wallet_type": "wallet_type",
714
+ "account_vault": "account_vault",
715
+ "quick_invoice": "quick_invoice",
716
+ "log_emails": "log_emails",
717
+ "is_voidable": "is_voidable",
718
+ "is_reversible": "is_reversible",
719
+ "is_refundable": "is_refundable",
720
+ "is_completable": "is_completable",
721
+ "is_settled": "is_settled",
722
+ "created_user": "created_user",
723
+ "location": "location",
724
+ "contact": "contact",
725
+ "changelogs": "changelogs",
726
+ "product_transaction": "product_transaction",
727
+ "all_tags": "all_tags",
728
+ "tag_transactions": "tagTransactions",
729
+ "declined_recurring_notification": "declined_recurring_notification",
730
+ "payment_recurring_notification": "payment_recurring_notification",
731
+ "developer_company": "developer_company",
732
+ "terminal": "terminal",
733
+ "hosted_payment_page": "hosted_payment_page",
734
+ "transaction_level_3": "transaction_level3",
735
+ "developer_company_id": "developer_company_id",
736
+ "transaction_histories": "transaction_histories",
737
+ "surcharge_transaction": "surcharge_transaction",
738
+ "surcharge": "surcharge",
739
+ "signature": "signature",
740
+ "reason_code": "reason_code",
741
+ "mtype": "type",
742
+ "status": "status",
743
+ "transaction_batch": "transaction_batch",
744
+ "transaction_splits": "transaction_splits",
745
+ "postback_logs": "postback_logs",
746
+ "currency_type": "currency_type",
747
+ "transaction_references": "transaction_references",
748
+ "rejected_transaction_ach_retries": "rejected_transaction_ach_retries",
749
+ "return_fee_transaction_ach_retry": "return_fee_transaction_ach_retry",
750
+ "retry_transaction_ach_retry": "retry_transaction_ach_retry",
751
+ "is_retriable": "is_retriable",
752
+ "saved_account": "saved_account",
753
+ "balances": "balances",
754
+ }
755
+
756
+ _optionals = [
757
+ "additional_amounts",
758
+ "billing_address",
759
+ "checkin_date",
760
+ "checkout_date",
761
+ "clerk_number",
762
+ "contact_api_id",
763
+ "contact_id",
764
+ "custom_data",
765
+ "customer_id",
766
+ "description",
767
+ "iias_ind",
768
+ "image_front",
769
+ "image_back",
770
+ "installment",
771
+ "installment_number",
772
+ "installment_count",
773
+ "recurring_flag",
774
+ "installment_counter",
775
+ "installment_total",
776
+ "subscription",
777
+ "standing_order",
778
+ "location_api_id",
779
+ "location_id",
780
+ "product_transaction_id",
781
+ "advance_deposit",
782
+ "no_show",
783
+ "notification_email_address",
784
+ "order_number",
785
+ "po_number",
786
+ "quick_invoice_id",
787
+ "recurring",
788
+ "recurring_number",
789
+ "room_num",
790
+ "room_rate",
791
+ "save_account",
792
+ "save_account_title",
793
+ "subtotal_amount",
794
+ "surcharge_amount",
795
+ "tags",
796
+ "tax",
797
+ "tip_amount",
798
+ "transaction_amount",
799
+ "secondary_amount",
800
+ "transaction_api_id",
801
+ "transaction_c_1",
802
+ "transaction_c_2",
803
+ "transaction_c_3",
804
+ "bank_funded_only_override",
805
+ "allow_partial_authorization_override",
806
+ "auto_decline_cvv_override",
807
+ "auto_decline_street_override",
808
+ "auto_decline_zip_override",
809
+ "ebt_type",
810
+ "currency_code",
811
+ "id",
812
+ "created_ts",
813
+ "modified_ts",
814
+ "terminal_id",
815
+ "account_holder_name",
816
+ "account_type",
817
+ "token_api_id",
818
+ "token_id",
819
+ "ach_identifier",
820
+ "ach_sec_code",
821
+ "auth_amount",
822
+ "auth_code",
823
+ "avs",
824
+ "avs_enhanced",
825
+ "cardholder_present",
826
+ "card_present",
827
+ "check_number",
828
+ "customer_ip",
829
+ "cvv_response",
830
+ "entry_mode_id",
831
+ "emv_receipt_data",
832
+ "first_six",
833
+ "last_four",
834
+ "payment_method",
835
+ "terminal_serial_number",
836
+ "transaction_settlement_status",
837
+ "charge_back_date",
838
+ "is_recurring",
839
+ "notification_email_sent",
840
+ "par",
841
+ "reason_code_id",
842
+ "recurring_id",
843
+ "settle_date",
844
+ "status_code",
845
+ "transaction_batch_id",
846
+ "type_id",
847
+ "verbiage",
848
+ "voucher_number",
849
+ "void_date",
850
+ "batch",
851
+ "terms_agree",
852
+ "response_message",
853
+ "return_date",
854
+ "trx_source_id",
855
+ "routing_number",
856
+ "trx_source_code",
857
+ "paylink_id",
858
+ "is_accountvault",
859
+ "created_user_id",
860
+ "modified_user_id",
861
+ "transaction_code",
862
+ "effective_date",
863
+ "notification_phone",
864
+ "cavv_result",
865
+ "is_token",
866
+ "account_vault_id",
867
+ "hosted_payment_page_id",
868
+ "stan",
869
+ "currency",
870
+ "card_bin",
871
+ "wallet_type",
872
+ "account_vault",
873
+ "quick_invoice",
874
+ "log_emails",
875
+ "is_voidable",
876
+ "is_reversible",
877
+ "is_refundable",
878
+ "is_completable",
879
+ "is_settled",
880
+ "created_user",
881
+ "location",
882
+ "contact",
883
+ "changelogs",
884
+ "product_transaction",
885
+ "all_tags",
886
+ "tag_transactions",
887
+ "declined_recurring_notification",
888
+ "payment_recurring_notification",
889
+ "developer_company",
890
+ "terminal",
891
+ "hosted_payment_page",
892
+ "transaction_level_3",
893
+ "developer_company_id",
894
+ "transaction_histories",
895
+ "surcharge_transaction",
896
+ "surcharge",
897
+ "signature",
898
+ "reason_code",
899
+ "mtype",
900
+ "status",
901
+ "transaction_batch",
902
+ "transaction_splits",
903
+ "postback_logs",
904
+ "currency_type",
905
+ "transaction_references",
906
+ "rejected_transaction_ach_retries",
907
+ "return_fee_transaction_ach_retry",
908
+ "retry_transaction_ach_retry",
909
+ "is_retriable",
910
+ "saved_account",
911
+ "balances",
912
+ ]
913
+
914
+ _nullables = [
915
+ "checkin_date",
916
+ "checkout_date",
917
+ "clerk_number",
918
+ "contact_api_id",
919
+ "contact_id",
920
+ "customer_id",
921
+ "description",
922
+ "iias_ind",
923
+ "image_front",
924
+ "image_back",
925
+ "installment_number",
926
+ "installment_count",
927
+ "recurring_flag",
928
+ "installment_counter",
929
+ "installment_total",
930
+ "location_api_id",
931
+ "location_id",
932
+ "product_transaction_id",
933
+ "notification_email_address",
934
+ "order_number",
935
+ "po_number",
936
+ "quick_invoice_id",
937
+ "recurring_number",
938
+ "room_num",
939
+ "room_rate",
940
+ "save_account_title",
941
+ "subtotal_amount",
942
+ "surcharge_amount",
943
+ "tax",
944
+ "tip_amount",
945
+ "transaction_amount",
946
+ "secondary_amount",
947
+ "transaction_api_id",
948
+ "transaction_c_1",
949
+ "transaction_c_2",
950
+ "transaction_c_3",
951
+ "ebt_type",
952
+ "terminal_id",
953
+ "account_holder_name",
954
+ "account_type",
955
+ "token_api_id",
956
+ "token_id",
957
+ "ach_identifier",
958
+ "ach_sec_code",
959
+ "auth_amount",
960
+ "auth_code",
961
+ "avs",
962
+ "avs_enhanced",
963
+ "check_number",
964
+ "customer_ip",
965
+ "cvv_response",
966
+ "entry_mode_id",
967
+ "emv_receipt_data",
968
+ "first_six",
969
+ "last_four",
970
+ "terminal_serial_number",
971
+ "transaction_settlement_status",
972
+ "charge_back_date",
973
+ "par",
974
+ "reason_code_id",
975
+ "recurring_id",
976
+ "settle_date",
977
+ "status_code",
978
+ "transaction_batch_id",
979
+ "type_id",
980
+ "verbiage",
981
+ "voucher_number",
982
+ "void_date",
983
+ "batch",
984
+ "response_message",
985
+ "return_date",
986
+ "trx_source_id",
987
+ "routing_number",
988
+ "trx_source_code",
989
+ "paylink_id",
990
+ "created_user_id",
991
+ "transaction_code",
992
+ "effective_date",
993
+ "notification_phone",
994
+ "cavv_result",
995
+ "account_vault_id",
996
+ "stan",
997
+ "currency",
998
+ "card_bin",
999
+ "wallet_type",
1000
+ "developer_company_id",
1001
+ ]
1002
+
1003
+ def __init__(
1004
+ self,
1005
+ additional_amounts=APIHelper.SKIP,
1006
+ billing_address=APIHelper.SKIP,
1007
+ checkin_date=APIHelper.SKIP,
1008
+ checkout_date=APIHelper.SKIP,
1009
+ clerk_number=APIHelper.SKIP,
1010
+ contact_api_id=APIHelper.SKIP,
1011
+ contact_id=APIHelper.SKIP,
1012
+ custom_data=APIHelper.SKIP,
1013
+ customer_id=APIHelper.SKIP,
1014
+ description=APIHelper.SKIP,
1015
+ iias_ind=APIHelper.SKIP,
1016
+ image_front=APIHelper.SKIP,
1017
+ image_back=APIHelper.SKIP,
1018
+ installment=APIHelper.SKIP,
1019
+ installment_number=APIHelper.SKIP,
1020
+ installment_count=APIHelper.SKIP,
1021
+ recurring_flag=APIHelper.SKIP,
1022
+ installment_counter=APIHelper.SKIP,
1023
+ installment_total=APIHelper.SKIP,
1024
+ subscription=APIHelper.SKIP,
1025
+ standing_order=APIHelper.SKIP,
1026
+ location_api_id=APIHelper.SKIP,
1027
+ location_id=APIHelper.SKIP,
1028
+ product_transaction_id=APIHelper.SKIP,
1029
+ advance_deposit=APIHelper.SKIP,
1030
+ no_show=APIHelper.SKIP,
1031
+ notification_email_address=APIHelper.SKIP,
1032
+ order_number=APIHelper.SKIP,
1033
+ po_number=APIHelper.SKIP,
1034
+ quick_invoice_id=APIHelper.SKIP,
1035
+ recurring=APIHelper.SKIP,
1036
+ recurring_number=APIHelper.SKIP,
1037
+ room_num=APIHelper.SKIP,
1038
+ room_rate=APIHelper.SKIP,
1039
+ save_account=APIHelper.SKIP,
1040
+ save_account_title=APIHelper.SKIP,
1041
+ subtotal_amount=APIHelper.SKIP,
1042
+ surcharge_amount=APIHelper.SKIP,
1043
+ tags=APIHelper.SKIP,
1044
+ tax=APIHelper.SKIP,
1045
+ tip_amount=APIHelper.SKIP,
1046
+ transaction_amount=APIHelper.SKIP,
1047
+ secondary_amount=APIHelper.SKIP,
1048
+ transaction_api_id=APIHelper.SKIP,
1049
+ transaction_c_1=APIHelper.SKIP,
1050
+ transaction_c_2=APIHelper.SKIP,
1051
+ transaction_c_3=APIHelper.SKIP,
1052
+ bank_funded_only_override=APIHelper.SKIP,
1053
+ allow_partial_authorization_override=APIHelper.SKIP,
1054
+ auto_decline_cvv_override=APIHelper.SKIP,
1055
+ auto_decline_street_override=APIHelper.SKIP,
1056
+ auto_decline_zip_override=APIHelper.SKIP,
1057
+ ebt_type=APIHelper.SKIP,
1058
+ currency_code=APIHelper.SKIP,
1059
+ id=APIHelper.SKIP,
1060
+ created_ts=APIHelper.SKIP,
1061
+ modified_ts=APIHelper.SKIP,
1062
+ terminal_id=APIHelper.SKIP,
1063
+ account_holder_name=APIHelper.SKIP,
1064
+ account_type=APIHelper.SKIP,
1065
+ token_api_id=APIHelper.SKIP,
1066
+ token_id=APIHelper.SKIP,
1067
+ ach_identifier=APIHelper.SKIP,
1068
+ ach_sec_code=APIHelper.SKIP,
1069
+ auth_amount=APIHelper.SKIP,
1070
+ auth_code=APIHelper.SKIP,
1071
+ avs=APIHelper.SKIP,
1072
+ avs_enhanced=APIHelper.SKIP,
1073
+ cardholder_present=APIHelper.SKIP,
1074
+ card_present=APIHelper.SKIP,
1075
+ check_number=APIHelper.SKIP,
1076
+ customer_ip=APIHelper.SKIP,
1077
+ cvv_response=APIHelper.SKIP,
1078
+ entry_mode_id=APIHelper.SKIP,
1079
+ emv_receipt_data=APIHelper.SKIP,
1080
+ first_six=APIHelper.SKIP,
1081
+ last_four=APIHelper.SKIP,
1082
+ payment_method=APIHelper.SKIP,
1083
+ terminal_serial_number=APIHelper.SKIP,
1084
+ transaction_settlement_status=APIHelper.SKIP,
1085
+ charge_back_date=APIHelper.SKIP,
1086
+ is_recurring=APIHelper.SKIP,
1087
+ notification_email_sent=APIHelper.SKIP,
1088
+ par=APIHelper.SKIP,
1089
+ reason_code_id=APIHelper.SKIP,
1090
+ recurring_id=APIHelper.SKIP,
1091
+ settle_date=APIHelper.SKIP,
1092
+ status_code=APIHelper.SKIP,
1093
+ transaction_batch_id=APIHelper.SKIP,
1094
+ type_id=APIHelper.SKIP,
1095
+ verbiage=APIHelper.SKIP,
1096
+ voucher_number=APIHelper.SKIP,
1097
+ void_date=APIHelper.SKIP,
1098
+ batch=APIHelper.SKIP,
1099
+ terms_agree=APIHelper.SKIP,
1100
+ response_message=APIHelper.SKIP,
1101
+ return_date=APIHelper.SKIP,
1102
+ trx_source_id=APIHelper.SKIP,
1103
+ routing_number=APIHelper.SKIP,
1104
+ trx_source_code=APIHelper.SKIP,
1105
+ paylink_id=APIHelper.SKIP,
1106
+ is_accountvault=APIHelper.SKIP,
1107
+ created_user_id=APIHelper.SKIP,
1108
+ modified_user_id=APIHelper.SKIP,
1109
+ transaction_code=APIHelper.SKIP,
1110
+ effective_date=APIHelper.SKIP,
1111
+ notification_phone=APIHelper.SKIP,
1112
+ cavv_result=APIHelper.SKIP,
1113
+ is_token=APIHelper.SKIP,
1114
+ account_vault_id=APIHelper.SKIP,
1115
+ hosted_payment_page_id=APIHelper.SKIP,
1116
+ stan=APIHelper.SKIP,
1117
+ currency=APIHelper.SKIP,
1118
+ card_bin=APIHelper.SKIP,
1119
+ wallet_type=APIHelper.SKIP,
1120
+ account_vault=APIHelper.SKIP,
1121
+ quick_invoice=APIHelper.SKIP,
1122
+ log_emails=APIHelper.SKIP,
1123
+ is_voidable=APIHelper.SKIP,
1124
+ is_reversible=APIHelper.SKIP,
1125
+ is_refundable=APIHelper.SKIP,
1126
+ is_completable=APIHelper.SKIP,
1127
+ is_settled=APIHelper.SKIP,
1128
+ created_user=APIHelper.SKIP,
1129
+ location=APIHelper.SKIP,
1130
+ contact=APIHelper.SKIP,
1131
+ changelogs=APIHelper.SKIP,
1132
+ product_transaction=APIHelper.SKIP,
1133
+ all_tags=APIHelper.SKIP,
1134
+ tag_transactions=APIHelper.SKIP,
1135
+ declined_recurring_notification=APIHelper.SKIP,
1136
+ payment_recurring_notification=APIHelper.SKIP,
1137
+ developer_company=APIHelper.SKIP,
1138
+ terminal=APIHelper.SKIP,
1139
+ hosted_payment_page=APIHelper.SKIP,
1140
+ transaction_level_3=APIHelper.SKIP,
1141
+ developer_company_id=APIHelper.SKIP,
1142
+ transaction_histories=APIHelper.SKIP,
1143
+ surcharge_transaction=APIHelper.SKIP,
1144
+ surcharge=APIHelper.SKIP,
1145
+ signature=APIHelper.SKIP,
1146
+ reason_code=APIHelper.SKIP,
1147
+ mtype=APIHelper.SKIP,
1148
+ status=APIHelper.SKIP,
1149
+ transaction_batch=APIHelper.SKIP,
1150
+ transaction_splits=APIHelper.SKIP,
1151
+ postback_logs=APIHelper.SKIP,
1152
+ currency_type=APIHelper.SKIP,
1153
+ transaction_references=APIHelper.SKIP,
1154
+ rejected_transaction_ach_retries=APIHelper.SKIP,
1155
+ return_fee_transaction_ach_retry=APIHelper.SKIP,
1156
+ retry_transaction_ach_retry=APIHelper.SKIP,
1157
+ is_retriable=APIHelper.SKIP,
1158
+ saved_account=APIHelper.SKIP,
1159
+ balances=APIHelper.SKIP,
1160
+ additional_properties=None):
1161
+ """Initialize a Data29 instance."""
1162
+ # Initialize members of the class
1163
+ if additional_amounts is not APIHelper.SKIP:
1164
+ self.additional_amounts = additional_amounts
1165
+ if billing_address is not APIHelper.SKIP:
1166
+ self.billing_address = billing_address
1167
+ if checkin_date is not APIHelper.SKIP:
1168
+ self.checkin_date = checkin_date
1169
+ if checkout_date is not APIHelper.SKIP:
1170
+ self.checkout_date = checkout_date
1171
+ if clerk_number is not APIHelper.SKIP:
1172
+ self.clerk_number = clerk_number
1173
+ if contact_api_id is not APIHelper.SKIP:
1174
+ self.contact_api_id = contact_api_id
1175
+ if contact_id is not APIHelper.SKIP:
1176
+ self.contact_id = contact_id
1177
+ if custom_data is not APIHelper.SKIP:
1178
+ self.custom_data = custom_data
1179
+ if customer_id is not APIHelper.SKIP:
1180
+ self.customer_id = customer_id
1181
+ if description is not APIHelper.SKIP:
1182
+ self.description = description
1183
+ if iias_ind is not APIHelper.SKIP:
1184
+ self.iias_ind = iias_ind
1185
+ if image_front is not APIHelper.SKIP:
1186
+ self.image_front = image_front
1187
+ if image_back is not APIHelper.SKIP:
1188
+ self.image_back = image_back
1189
+ if installment is not APIHelper.SKIP:
1190
+ self.installment = installment
1191
+ if installment_number is not APIHelper.SKIP:
1192
+ self.installment_number = installment_number
1193
+ if installment_count is not APIHelper.SKIP:
1194
+ self.installment_count = installment_count
1195
+ if recurring_flag is not APIHelper.SKIP:
1196
+ self.recurring_flag = recurring_flag
1197
+ if installment_counter is not APIHelper.SKIP:
1198
+ self.installment_counter = installment_counter
1199
+ if installment_total is not APIHelper.SKIP:
1200
+ self.installment_total = installment_total
1201
+ if subscription is not APIHelper.SKIP:
1202
+ self.subscription = subscription
1203
+ if standing_order is not APIHelper.SKIP:
1204
+ self.standing_order = standing_order
1205
+ if location_api_id is not APIHelper.SKIP:
1206
+ self.location_api_id = location_api_id
1207
+ if location_id is not APIHelper.SKIP:
1208
+ self.location_id = location_id
1209
+ if product_transaction_id is not APIHelper.SKIP:
1210
+ self.product_transaction_id = product_transaction_id
1211
+ if advance_deposit is not APIHelper.SKIP:
1212
+ self.advance_deposit = advance_deposit
1213
+ if no_show is not APIHelper.SKIP:
1214
+ self.no_show = no_show
1215
+ if notification_email_address is not APIHelper.SKIP:
1216
+ self.notification_email_address = notification_email_address
1217
+ if order_number is not APIHelper.SKIP:
1218
+ self.order_number = order_number
1219
+ if po_number is not APIHelper.SKIP:
1220
+ self.po_number = po_number
1221
+ if quick_invoice_id is not APIHelper.SKIP:
1222
+ self.quick_invoice_id = quick_invoice_id
1223
+ if recurring is not APIHelper.SKIP:
1224
+ self.recurring = recurring
1225
+ if recurring_number is not APIHelper.SKIP:
1226
+ self.recurring_number = recurring_number
1227
+ if room_num is not APIHelper.SKIP:
1228
+ self.room_num = room_num
1229
+ if room_rate is not APIHelper.SKIP:
1230
+ self.room_rate = room_rate
1231
+ if save_account is not APIHelper.SKIP:
1232
+ self.save_account = save_account
1233
+ if save_account_title is not APIHelper.SKIP:
1234
+ self.save_account_title = save_account_title
1235
+ if subtotal_amount is not APIHelper.SKIP:
1236
+ self.subtotal_amount = subtotal_amount
1237
+ if surcharge_amount is not APIHelper.SKIP:
1238
+ self.surcharge_amount = surcharge_amount
1239
+ if tags is not APIHelper.SKIP:
1240
+ self.tags = tags
1241
+ if tax is not APIHelper.SKIP:
1242
+ self.tax = tax
1243
+ if tip_amount is not APIHelper.SKIP:
1244
+ self.tip_amount = tip_amount
1245
+ if transaction_amount is not APIHelper.SKIP:
1246
+ self.transaction_amount = transaction_amount
1247
+ if secondary_amount is not APIHelper.SKIP:
1248
+ self.secondary_amount = secondary_amount
1249
+ if transaction_api_id is not APIHelper.SKIP:
1250
+ self.transaction_api_id = transaction_api_id
1251
+ if transaction_c_1 is not APIHelper.SKIP:
1252
+ self.transaction_c_1 = transaction_c_1
1253
+ if transaction_c_2 is not APIHelper.SKIP:
1254
+ self.transaction_c_2 = transaction_c_2
1255
+ if transaction_c_3 is not APIHelper.SKIP:
1256
+ self.transaction_c_3 = transaction_c_3
1257
+ if bank_funded_only_override is not APIHelper.SKIP:
1258
+ self.bank_funded_only_override = bank_funded_only_override
1259
+ if allow_partial_authorization_override is not APIHelper.SKIP:
1260
+ self.allow_partial_authorization_override =\
1261
+ allow_partial_authorization_override
1262
+ if auto_decline_cvv_override is not APIHelper.SKIP:
1263
+ self.auto_decline_cvv_override = auto_decline_cvv_override
1264
+ if auto_decline_street_override is not APIHelper.SKIP:
1265
+ self.auto_decline_street_override = auto_decline_street_override
1266
+ if auto_decline_zip_override is not APIHelper.SKIP:
1267
+ self.auto_decline_zip_override = auto_decline_zip_override
1268
+ if ebt_type is not APIHelper.SKIP:
1269
+ self.ebt_type = ebt_type
1270
+ if currency_code is not APIHelper.SKIP:
1271
+ self.currency_code = currency_code
1272
+ if id is not APIHelper.SKIP:
1273
+ self.id = id
1274
+ if created_ts is not APIHelper.SKIP:
1275
+ self.created_ts = created_ts
1276
+ if modified_ts is not APIHelper.SKIP:
1277
+ self.modified_ts = modified_ts
1278
+ if terminal_id is not APIHelper.SKIP:
1279
+ self.terminal_id = terminal_id
1280
+ if account_holder_name is not APIHelper.SKIP:
1281
+ self.account_holder_name = account_holder_name
1282
+ if account_type is not APIHelper.SKIP:
1283
+ self.account_type = account_type
1284
+ if token_api_id is not APIHelper.SKIP:
1285
+ self.token_api_id = token_api_id
1286
+ if token_id is not APIHelper.SKIP:
1287
+ self.token_id = token_id
1288
+ if ach_identifier is not APIHelper.SKIP:
1289
+ self.ach_identifier = ach_identifier
1290
+ if ach_sec_code is not APIHelper.SKIP:
1291
+ self.ach_sec_code = ach_sec_code
1292
+ if auth_amount is not APIHelper.SKIP:
1293
+ self.auth_amount = auth_amount
1294
+ if auth_code is not APIHelper.SKIP:
1295
+ self.auth_code = auth_code
1296
+ if avs is not APIHelper.SKIP:
1297
+ self.avs = avs
1298
+ if avs_enhanced is not APIHelper.SKIP:
1299
+ self.avs_enhanced = avs_enhanced
1300
+ if cardholder_present is not APIHelper.SKIP:
1301
+ self.cardholder_present = cardholder_present
1302
+ if card_present is not APIHelper.SKIP:
1303
+ self.card_present = card_present
1304
+ if check_number is not APIHelper.SKIP:
1305
+ self.check_number = check_number
1306
+ if customer_ip is not APIHelper.SKIP:
1307
+ self.customer_ip = customer_ip
1308
+ if cvv_response is not APIHelper.SKIP:
1309
+ self.cvv_response = cvv_response
1310
+ if entry_mode_id is not APIHelper.SKIP:
1311
+ self.entry_mode_id = entry_mode_id
1312
+ if emv_receipt_data is not APIHelper.SKIP:
1313
+ self.emv_receipt_data = emv_receipt_data
1314
+ if first_six is not APIHelper.SKIP:
1315
+ self.first_six = first_six
1316
+ if last_four is not APIHelper.SKIP:
1317
+ self.last_four = last_four
1318
+ if payment_method is not APIHelper.SKIP:
1319
+ self.payment_method = payment_method
1320
+ if terminal_serial_number is not APIHelper.SKIP:
1321
+ self.terminal_serial_number = terminal_serial_number
1322
+ if transaction_settlement_status is not APIHelper.SKIP:
1323
+ self.transaction_settlement_status = transaction_settlement_status
1324
+ if charge_back_date is not APIHelper.SKIP:
1325
+ self.charge_back_date = charge_back_date
1326
+ if is_recurring is not APIHelper.SKIP:
1327
+ self.is_recurring = is_recurring
1328
+ if notification_email_sent is not APIHelper.SKIP:
1329
+ self.notification_email_sent = notification_email_sent
1330
+ if par is not APIHelper.SKIP:
1331
+ self.par = par
1332
+ if reason_code_id is not APIHelper.SKIP:
1333
+ self.reason_code_id = reason_code_id
1334
+ if recurring_id is not APIHelper.SKIP:
1335
+ self.recurring_id = recurring_id
1336
+ if settle_date is not APIHelper.SKIP:
1337
+ self.settle_date = settle_date
1338
+ if status_code is not APIHelper.SKIP:
1339
+ self.status_code = status_code
1340
+ if transaction_batch_id is not APIHelper.SKIP:
1341
+ self.transaction_batch_id = transaction_batch_id
1342
+ if type_id is not APIHelper.SKIP:
1343
+ self.type_id = type_id
1344
+ if verbiage is not APIHelper.SKIP:
1345
+ self.verbiage = verbiage
1346
+ if voucher_number is not APIHelper.SKIP:
1347
+ self.voucher_number = voucher_number
1348
+ if void_date is not APIHelper.SKIP:
1349
+ self.void_date = void_date
1350
+ if batch is not APIHelper.SKIP:
1351
+ self.batch = batch
1352
+ if terms_agree is not APIHelper.SKIP:
1353
+ self.terms_agree = terms_agree
1354
+ if response_message is not APIHelper.SKIP:
1355
+ self.response_message = response_message
1356
+ if return_date is not APIHelper.SKIP:
1357
+ self.return_date = return_date
1358
+ if trx_source_id is not APIHelper.SKIP:
1359
+ self.trx_source_id = trx_source_id
1360
+ if routing_number is not APIHelper.SKIP:
1361
+ self.routing_number = routing_number
1362
+ if trx_source_code is not APIHelper.SKIP:
1363
+ self.trx_source_code = trx_source_code
1364
+ if paylink_id is not APIHelper.SKIP:
1365
+ self.paylink_id = paylink_id
1366
+ if is_accountvault is not APIHelper.SKIP:
1367
+ self.is_accountvault = is_accountvault
1368
+ if created_user_id is not APIHelper.SKIP:
1369
+ self.created_user_id = created_user_id
1370
+ if modified_user_id is not APIHelper.SKIP:
1371
+ self.modified_user_id = modified_user_id
1372
+ if transaction_code is not APIHelper.SKIP:
1373
+ self.transaction_code = transaction_code
1374
+ if effective_date is not APIHelper.SKIP:
1375
+ self.effective_date = effective_date
1376
+ if notification_phone is not APIHelper.SKIP:
1377
+ self.notification_phone = notification_phone
1378
+ if cavv_result is not APIHelper.SKIP:
1379
+ self.cavv_result = cavv_result
1380
+ if is_token is not APIHelper.SKIP:
1381
+ self.is_token = is_token
1382
+ if account_vault_id is not APIHelper.SKIP:
1383
+ self.account_vault_id = account_vault_id
1384
+ if hosted_payment_page_id is not APIHelper.SKIP:
1385
+ self.hosted_payment_page_id = hosted_payment_page_id
1386
+ if stan is not APIHelper.SKIP:
1387
+ self.stan = stan
1388
+ if currency is not APIHelper.SKIP:
1389
+ self.currency = currency
1390
+ if card_bin is not APIHelper.SKIP:
1391
+ self.card_bin = card_bin
1392
+ if wallet_type is not APIHelper.SKIP:
1393
+ self.wallet_type = wallet_type
1394
+ if account_vault is not APIHelper.SKIP:
1395
+ self.account_vault = account_vault
1396
+ if quick_invoice is not APIHelper.SKIP:
1397
+ self.quick_invoice = quick_invoice
1398
+ if log_emails is not APIHelper.SKIP:
1399
+ self.log_emails = log_emails
1400
+ if is_voidable is not APIHelper.SKIP:
1401
+ self.is_voidable = is_voidable
1402
+ if is_reversible is not APIHelper.SKIP:
1403
+ self.is_reversible = is_reversible
1404
+ if is_refundable is not APIHelper.SKIP:
1405
+ self.is_refundable = is_refundable
1406
+ if is_completable is not APIHelper.SKIP:
1407
+ self.is_completable = is_completable
1408
+ if is_settled is not APIHelper.SKIP:
1409
+ self.is_settled = is_settled
1410
+ if created_user is not APIHelper.SKIP:
1411
+ self.created_user = created_user
1412
+ if location is not APIHelper.SKIP:
1413
+ self.location = location
1414
+ if contact is not APIHelper.SKIP:
1415
+ self.contact = contact
1416
+ if changelogs is not APIHelper.SKIP:
1417
+ self.changelogs = changelogs
1418
+ if product_transaction is not APIHelper.SKIP:
1419
+ self.product_transaction = product_transaction
1420
+ if all_tags is not APIHelper.SKIP:
1421
+ self.all_tags = all_tags
1422
+ if tag_transactions is not APIHelper.SKIP:
1423
+ self.tag_transactions = tag_transactions
1424
+ if declined_recurring_notification is not APIHelper.SKIP:
1425
+ self.declined_recurring_notification = declined_recurring_notification
1426
+ if payment_recurring_notification is not APIHelper.SKIP:
1427
+ self.payment_recurring_notification = payment_recurring_notification
1428
+ if developer_company is not APIHelper.SKIP:
1429
+ self.developer_company = developer_company
1430
+ if terminal is not APIHelper.SKIP:
1431
+ self.terminal = terminal
1432
+ if hosted_payment_page is not APIHelper.SKIP:
1433
+ self.hosted_payment_page = hosted_payment_page
1434
+ if transaction_level_3 is not APIHelper.SKIP:
1435
+ self.transaction_level_3 = transaction_level_3
1436
+ if developer_company_id is not APIHelper.SKIP:
1437
+ self.developer_company_id = developer_company_id
1438
+ if transaction_histories is not APIHelper.SKIP:
1439
+ self.transaction_histories = transaction_histories
1440
+ if surcharge_transaction is not APIHelper.SKIP:
1441
+ self.surcharge_transaction = surcharge_transaction
1442
+ if surcharge is not APIHelper.SKIP:
1443
+ self.surcharge = surcharge
1444
+ if signature is not APIHelper.SKIP:
1445
+ self.signature = signature
1446
+ if reason_code is not APIHelper.SKIP:
1447
+ self.reason_code = reason_code
1448
+ if mtype is not APIHelper.SKIP:
1449
+ self.mtype = mtype
1450
+ if status is not APIHelper.SKIP:
1451
+ self.status = status
1452
+ if transaction_batch is not APIHelper.SKIP:
1453
+ self.transaction_batch = transaction_batch
1454
+ if transaction_splits is not APIHelper.SKIP:
1455
+ self.transaction_splits = transaction_splits
1456
+ if postback_logs is not APIHelper.SKIP:
1457
+ self.postback_logs = postback_logs
1458
+ if currency_type is not APIHelper.SKIP:
1459
+ self.currency_type = currency_type
1460
+ if transaction_references is not APIHelper.SKIP:
1461
+ self.transaction_references = transaction_references
1462
+ if rejected_transaction_ach_retries is not APIHelper.SKIP:
1463
+ self.rejected_transaction_ach_retries = rejected_transaction_ach_retries
1464
+ if return_fee_transaction_ach_retry is not APIHelper.SKIP:
1465
+ self.return_fee_transaction_ach_retry = return_fee_transaction_ach_retry
1466
+ if retry_transaction_ach_retry is not APIHelper.SKIP:
1467
+ self.retry_transaction_ach_retry = retry_transaction_ach_retry
1468
+ if is_retriable is not APIHelper.SKIP:
1469
+ self.is_retriable = is_retriable
1470
+ if saved_account is not APIHelper.SKIP:
1471
+ self.saved_account = saved_account
1472
+ if balances is not APIHelper.SKIP:
1473
+ self.balances = balances
1474
+
1475
+ # Add additional model properties to the instance
1476
+ if additional_properties is None:
1477
+ additional_properties = {}
1478
+ self.additional_properties = additional_properties
1479
+
1480
+ @classmethod
1481
+ def from_dictionary(cls,
1482
+ dictionary):
1483
+ """Create an instance of this model from a dictionary
1484
+
1485
+ Args:
1486
+ dictionary (dictionary): A dictionary representation of the object
1487
+ as obtained from the deserialization of the server's response. The
1488
+ keys MUST match property names in the API description.
1489
+
1490
+ Returns:
1491
+ object: An instance of this structure class.
1492
+
1493
+ """
1494
+ if not isinstance(dictionary, dict) or dictionary is None:
1495
+ return None
1496
+
1497
+ # Extract variables from the dictionary
1498
+ additional_amounts = None
1499
+ if dictionary.get("additional_amounts") is not None:
1500
+ additional_amounts = [
1501
+ AdditionalAmount.from_dictionary(x)
1502
+ for x in dictionary.get("additional_amounts")
1503
+ ]
1504
+ else:
1505
+ additional_amounts = APIHelper.SKIP
1506
+ billing_address =\
1507
+ BillingAddress1.from_dictionary(
1508
+ dictionary.get("billing_address"))\
1509
+ if "billing_address" in dictionary.keys()\
1510
+ else APIHelper.SKIP
1511
+ checkin_date =\
1512
+ dictionary.get("checkin_date")\
1513
+ if "checkin_date" in dictionary.keys()\
1514
+ else APIHelper.SKIP
1515
+ checkout_date =\
1516
+ dictionary.get("checkout_date")\
1517
+ if "checkout_date" in dictionary.keys()\
1518
+ else APIHelper.SKIP
1519
+ clerk_number =\
1520
+ dictionary.get("clerk_number")\
1521
+ if "clerk_number" in dictionary.keys()\
1522
+ else APIHelper.SKIP
1523
+ contact_api_id =\
1524
+ dictionary.get("contact_api_id")\
1525
+ if "contact_api_id" in dictionary.keys()\
1526
+ else APIHelper.SKIP
1527
+ contact_id =\
1528
+ dictionary.get("contact_id")\
1529
+ if "contact_id" in dictionary.keys()\
1530
+ else APIHelper.SKIP
1531
+ custom_data =\
1532
+ dictionary.get("custom_data")\
1533
+ if dictionary.get("custom_data")\
1534
+ else APIHelper.SKIP
1535
+ customer_id =\
1536
+ dictionary.get("customer_id")\
1537
+ if "customer_id" in dictionary.keys()\
1538
+ else APIHelper.SKIP
1539
+ description =\
1540
+ dictionary.get("description")\
1541
+ if "description" in dictionary.keys()\
1542
+ else APIHelper.SKIP
1543
+ iias_ind =\
1544
+ dictionary.get("iias_ind")\
1545
+ if "iias_ind" in dictionary.keys()\
1546
+ else APIHelper.SKIP
1547
+ image_front =\
1548
+ dictionary.get("image_front")\
1549
+ if "image_front" in dictionary.keys()\
1550
+ else APIHelper.SKIP
1551
+ image_back =\
1552
+ dictionary.get("image_back")\
1553
+ if "image_back" in dictionary.keys()\
1554
+ else APIHelper.SKIP
1555
+ installment =\
1556
+ dictionary.get("installment")\
1557
+ if "installment" in dictionary.keys()\
1558
+ else APIHelper.SKIP
1559
+ installment_number =\
1560
+ dictionary.get("installment_number")\
1561
+ if "installment_number" in dictionary.keys()\
1562
+ else APIHelper.SKIP
1563
+ installment_count =\
1564
+ dictionary.get("installment_count")\
1565
+ if "installment_count" in dictionary.keys()\
1566
+ else APIHelper.SKIP
1567
+ recurring_flag =\
1568
+ dictionary.get("recurring_flag")\
1569
+ if "recurring_flag" in dictionary.keys()\
1570
+ else APIHelper.SKIP
1571
+ installment_counter =\
1572
+ dictionary.get("installment_counter")\
1573
+ if "installment_counter" in dictionary.keys()\
1574
+ else APIHelper.SKIP
1575
+ installment_total =\
1576
+ dictionary.get("installment_total")\
1577
+ if "installment_total" in dictionary.keys()\
1578
+ else APIHelper.SKIP
1579
+ subscription =\
1580
+ dictionary.get("subscription")\
1581
+ if "subscription" in dictionary.keys()\
1582
+ else APIHelper.SKIP
1583
+ standing_order =\
1584
+ dictionary.get("standing_order")\
1585
+ if "standing_order" in dictionary.keys()\
1586
+ else APIHelper.SKIP
1587
+ location_api_id =\
1588
+ dictionary.get("location_api_id")\
1589
+ if "location_api_id" in dictionary.keys()\
1590
+ else APIHelper.SKIP
1591
+ location_id =\
1592
+ dictionary.get("location_id")\
1593
+ if "location_id" in dictionary.keys()\
1594
+ else APIHelper.SKIP
1595
+ product_transaction_id =\
1596
+ dictionary.get("product_transaction_id")\
1597
+ if "product_transaction_id" in dictionary.keys()\
1598
+ else APIHelper.SKIP
1599
+ advance_deposit =\
1600
+ dictionary.get("advance_deposit")\
1601
+ if "advance_deposit" in dictionary.keys()\
1602
+ else APIHelper.SKIP
1603
+ no_show =\
1604
+ dictionary.get("no_show")\
1605
+ if "no_show" in dictionary.keys()\
1606
+ else APIHelper.SKIP
1607
+ notification_email_address =\
1608
+ dictionary.get("notification_email_address")\
1609
+ if "notification_email_address" in dictionary.keys()\
1610
+ else APIHelper.SKIP
1611
+ order_number =\
1612
+ dictionary.get("order_number")\
1613
+ if "order_number" in dictionary.keys()\
1614
+ else APIHelper.SKIP
1615
+ po_number =\
1616
+ dictionary.get("po_number")\
1617
+ if "po_number" in dictionary.keys()\
1618
+ else APIHelper.SKIP
1619
+ quick_invoice_id =\
1620
+ dictionary.get("quick_invoice_id")\
1621
+ if "quick_invoice_id" in dictionary.keys()\
1622
+ else APIHelper.SKIP
1623
+ recurring =\
1624
+ Recurring3.from_dictionary(
1625
+ dictionary.get("recurring"))\
1626
+ if "recurring" in dictionary.keys()\
1627
+ else APIHelper.SKIP
1628
+ recurring_number =\
1629
+ dictionary.get("recurring_number")\
1630
+ if "recurring_number" in dictionary.keys()\
1631
+ else APIHelper.SKIP
1632
+ room_num =\
1633
+ dictionary.get("room_num")\
1634
+ if "room_num" in dictionary.keys()\
1635
+ else APIHelper.SKIP
1636
+ room_rate =\
1637
+ dictionary.get("room_rate")\
1638
+ if "room_rate" in dictionary.keys()\
1639
+ else APIHelper.SKIP
1640
+ save_account =\
1641
+ dictionary.get("save_account")\
1642
+ if "save_account" in dictionary.keys()\
1643
+ else APIHelper.SKIP
1644
+ save_account_title =\
1645
+ dictionary.get("save_account_title")\
1646
+ if "save_account_title" in dictionary.keys()\
1647
+ else APIHelper.SKIP
1648
+ subtotal_amount =\
1649
+ dictionary.get("subtotal_amount")\
1650
+ if "subtotal_amount" in dictionary.keys()\
1651
+ else APIHelper.SKIP
1652
+ surcharge_amount =\
1653
+ dictionary.get("surcharge_amount")\
1654
+ if "surcharge_amount" in dictionary.keys()\
1655
+ else APIHelper.SKIP
1656
+ tags = None
1657
+ if dictionary.get("tags") is not None:
1658
+ tags = [
1659
+ Tag.from_dictionary(x)
1660
+ for x in dictionary.get("tags")
1661
+ ]
1662
+ else:
1663
+ tags = APIHelper.SKIP
1664
+ tax =\
1665
+ dictionary.get("tax")\
1666
+ if "tax" in dictionary.keys()\
1667
+ else APIHelper.SKIP
1668
+ tip_amount =\
1669
+ dictionary.get("tip_amount")\
1670
+ if "tip_amount" in dictionary.keys()\
1671
+ else APIHelper.SKIP
1672
+ transaction_amount =\
1673
+ dictionary.get("transaction_amount")\
1674
+ if "transaction_amount" in dictionary.keys()\
1675
+ else APIHelper.SKIP
1676
+ secondary_amount =\
1677
+ dictionary.get("secondary_amount")\
1678
+ if "secondary_amount" in dictionary.keys()\
1679
+ else APIHelper.SKIP
1680
+ transaction_api_id =\
1681
+ dictionary.get("transaction_api_id")\
1682
+ if "transaction_api_id" in dictionary.keys()\
1683
+ else APIHelper.SKIP
1684
+ transaction_c_1 =\
1685
+ dictionary.get("transaction_c1")\
1686
+ if "transaction_c1" in dictionary.keys()\
1687
+ else APIHelper.SKIP
1688
+ transaction_c_2 =\
1689
+ dictionary.get("transaction_c2")\
1690
+ if "transaction_c2" in dictionary.keys()\
1691
+ else APIHelper.SKIP
1692
+ transaction_c_3 =\
1693
+ dictionary.get("transaction_c3")\
1694
+ if "transaction_c3" in dictionary.keys()\
1695
+ else APIHelper.SKIP
1696
+ bank_funded_only_override =\
1697
+ dictionary.get("bank_funded_only_override")\
1698
+ if "bank_funded_only_override" in dictionary.keys()\
1699
+ else APIHelper.SKIP
1700
+ allow_partial_authorization_override =\
1701
+ dictionary.get("allow_partial_authorization_override")\
1702
+ if "allow_partial_authorization_override" in dictionary.keys()\
1703
+ else APIHelper.SKIP
1704
+ auto_decline_cvv_override =\
1705
+ dictionary.get("auto_decline_cvv_override")\
1706
+ if "auto_decline_cvv_override" in dictionary.keys()\
1707
+ else APIHelper.SKIP
1708
+ auto_decline_street_override =\
1709
+ dictionary.get("auto_decline_street_override")\
1710
+ if "auto_decline_street_override" in dictionary.keys()\
1711
+ else APIHelper.SKIP
1712
+ auto_decline_zip_override =\
1713
+ dictionary.get("auto_decline_zip_override")\
1714
+ if "auto_decline_zip_override" in dictionary.keys()\
1715
+ else APIHelper.SKIP
1716
+ ebt_type =\
1717
+ dictionary.get("ebt_type")\
1718
+ if "ebt_type" in dictionary.keys()\
1719
+ else APIHelper.SKIP
1720
+ currency_code =\
1721
+ dictionary.get("currency_code")\
1722
+ if dictionary.get("currency_code")\
1723
+ else APIHelper.SKIP
1724
+ id =\
1725
+ dictionary.get("id")\
1726
+ if dictionary.get("id")\
1727
+ else APIHelper.SKIP
1728
+ created_ts =\
1729
+ dictionary.get("created_ts")\
1730
+ if dictionary.get("created_ts")\
1731
+ else APIHelper.SKIP
1732
+ modified_ts =\
1733
+ dictionary.get("modified_ts")\
1734
+ if dictionary.get("modified_ts")\
1735
+ else APIHelper.SKIP
1736
+ terminal_id =\
1737
+ dictionary.get("terminal_id")\
1738
+ if "terminal_id" in dictionary.keys()\
1739
+ else APIHelper.SKIP
1740
+ account_holder_name =\
1741
+ dictionary.get("account_holder_name")\
1742
+ if "account_holder_name" in dictionary.keys()\
1743
+ else APIHelper.SKIP
1744
+ account_type =\
1745
+ dictionary.get("account_type")\
1746
+ if "account_type" in dictionary.keys()\
1747
+ else APIHelper.SKIP
1748
+ token_api_id =\
1749
+ dictionary.get("token_api_id")\
1750
+ if "token_api_id" in dictionary.keys()\
1751
+ else APIHelper.SKIP
1752
+ token_id =\
1753
+ dictionary.get("token_id")\
1754
+ if "token_id" in dictionary.keys()\
1755
+ else APIHelper.SKIP
1756
+ ach_identifier =\
1757
+ dictionary.get("ach_identifier")\
1758
+ if "ach_identifier" in dictionary.keys()\
1759
+ else APIHelper.SKIP
1760
+ ach_sec_code =\
1761
+ dictionary.get("ach_sec_code")\
1762
+ if "ach_sec_code" in dictionary.keys()\
1763
+ else APIHelper.SKIP
1764
+ auth_amount =\
1765
+ dictionary.get("auth_amount")\
1766
+ if "auth_amount" in dictionary.keys()\
1767
+ else APIHelper.SKIP
1768
+ auth_code =\
1769
+ dictionary.get("auth_code")\
1770
+ if "auth_code" in dictionary.keys()\
1771
+ else APIHelper.SKIP
1772
+ avs =\
1773
+ dictionary.get("avs")\
1774
+ if "avs" in dictionary.keys()\
1775
+ else APIHelper.SKIP
1776
+ avs_enhanced =\
1777
+ dictionary.get("avs_enhanced")\
1778
+ if "avs_enhanced" in dictionary.keys()\
1779
+ else APIHelper.SKIP
1780
+ cardholder_present =\
1781
+ dictionary.get("cardholder_present")\
1782
+ if "cardholder_present" in dictionary.keys()\
1783
+ else APIHelper.SKIP
1784
+ card_present =\
1785
+ dictionary.get("card_present")\
1786
+ if "card_present" in dictionary.keys()\
1787
+ else APIHelper.SKIP
1788
+ check_number =\
1789
+ dictionary.get("check_number")\
1790
+ if "check_number" in dictionary.keys()\
1791
+ else APIHelper.SKIP
1792
+ customer_ip =\
1793
+ dictionary.get("customer_ip")\
1794
+ if "customer_ip" in dictionary.keys()\
1795
+ else APIHelper.SKIP
1796
+ cvv_response =\
1797
+ dictionary.get("cvv_response")\
1798
+ if "cvv_response" in dictionary.keys()\
1799
+ else APIHelper.SKIP
1800
+ entry_mode_id =\
1801
+ dictionary.get("entry_mode_id")\
1802
+ if "entry_mode_id" in dictionary.keys()\
1803
+ else APIHelper.SKIP
1804
+ if "emv_receipt_data" in dictionary.keys():
1805
+ emv_receipt_data =\
1806
+ EmvReceiptData.from_dictionary(
1807
+ dictionary.get("emv_receipt_data"))\
1808
+ if dictionary.get("emv_receipt_data") else None
1809
+ else:
1810
+ emv_receipt_data = APIHelper.SKIP
1811
+ first_six =\
1812
+ dictionary.get("first_six")\
1813
+ if "first_six" in dictionary.keys()\
1814
+ else APIHelper.SKIP
1815
+ last_four =\
1816
+ dictionary.get("last_four")\
1817
+ if "last_four" in dictionary.keys()\
1818
+ else APIHelper.SKIP
1819
+ payment_method =\
1820
+ dictionary.get("payment_method")\
1821
+ if dictionary.get("payment_method")\
1822
+ else APIHelper.SKIP
1823
+ terminal_serial_number =\
1824
+ dictionary.get("terminal_serial_number")\
1825
+ if "terminal_serial_number" in dictionary.keys()\
1826
+ else APIHelper.SKIP
1827
+ transaction_settlement_status =\
1828
+ dictionary.get("transaction_settlement_status")\
1829
+ if "transaction_settlement_status" in dictionary.keys()\
1830
+ else APIHelper.SKIP
1831
+ charge_back_date =\
1832
+ dictionary.get("charge_back_date")\
1833
+ if "charge_back_date" in dictionary.keys()\
1834
+ else APIHelper.SKIP
1835
+ is_recurring =\
1836
+ dictionary.get("is_recurring")\
1837
+ if "is_recurring" in dictionary.keys()\
1838
+ else APIHelper.SKIP
1839
+ notification_email_sent =\
1840
+ dictionary.get("notification_email_sent")\
1841
+ if "notification_email_sent" in dictionary.keys()\
1842
+ else APIHelper.SKIP
1843
+ par =\
1844
+ dictionary.get("par")\
1845
+ if "par" in dictionary.keys()\
1846
+ else APIHelper.SKIP
1847
+ reason_code_id =\
1848
+ dictionary.get("reason_code_id")\
1849
+ if "reason_code_id" in dictionary.keys()\
1850
+ else APIHelper.SKIP
1851
+ recurring_id =\
1852
+ dictionary.get("recurring_id")\
1853
+ if "recurring_id" in dictionary.keys()\
1854
+ else APIHelper.SKIP
1855
+ settle_date =\
1856
+ dictionary.get("settle_date")\
1857
+ if "settle_date" in dictionary.keys()\
1858
+ else APIHelper.SKIP
1859
+ status_code =\
1860
+ dictionary.get("status_code")\
1861
+ if "status_code" in dictionary.keys()\
1862
+ else APIHelper.SKIP
1863
+ transaction_batch_id =\
1864
+ dictionary.get("transaction_batch_id")\
1865
+ if "transaction_batch_id" in dictionary.keys()\
1866
+ else APIHelper.SKIP
1867
+ type_id =\
1868
+ dictionary.get("type_id")\
1869
+ if "type_id" in dictionary.keys()\
1870
+ else APIHelper.SKIP
1871
+ verbiage =\
1872
+ dictionary.get("verbiage")\
1873
+ if "verbiage" in dictionary.keys()\
1874
+ else APIHelper.SKIP
1875
+ voucher_number =\
1876
+ dictionary.get("voucher_number")\
1877
+ if "voucher_number" in dictionary.keys()\
1878
+ else APIHelper.SKIP
1879
+ void_date =\
1880
+ dictionary.get("void_date")\
1881
+ if "void_date" in dictionary.keys()\
1882
+ else APIHelper.SKIP
1883
+ batch =\
1884
+ dictionary.get("batch")\
1885
+ if "batch" in dictionary.keys()\
1886
+ else APIHelper.SKIP
1887
+ terms_agree =\
1888
+ dictionary.get("terms_agree")\
1889
+ if "terms_agree" in dictionary.keys()\
1890
+ else APIHelper.SKIP
1891
+ response_message =\
1892
+ dictionary.get("response_message")\
1893
+ if "response_message" in dictionary.keys()\
1894
+ else APIHelper.SKIP
1895
+ return_date =\
1896
+ dictionary.get("return_date")\
1897
+ if "return_date" in dictionary.keys()\
1898
+ else APIHelper.SKIP
1899
+ trx_source_id =\
1900
+ dictionary.get("trx_source_id")\
1901
+ if "trx_source_id" in dictionary.keys()\
1902
+ else APIHelper.SKIP
1903
+ routing_number =\
1904
+ dictionary.get("routing_number")\
1905
+ if "routing_number" in dictionary.keys()\
1906
+ else APIHelper.SKIP
1907
+ trx_source_code =\
1908
+ dictionary.get("trx_source_code")\
1909
+ if "trx_source_code" in dictionary.keys()\
1910
+ else APIHelper.SKIP
1911
+ paylink_id =\
1912
+ dictionary.get("paylink_id")\
1913
+ if "paylink_id" in dictionary.keys()\
1914
+ else APIHelper.SKIP
1915
+ is_accountvault =\
1916
+ dictionary.get("is_accountvault")\
1917
+ if "is_accountvault" in dictionary.keys()\
1918
+ else APIHelper.SKIP
1919
+ created_user_id =\
1920
+ dictionary.get("created_user_id")\
1921
+ if "created_user_id" in dictionary.keys()\
1922
+ else APIHelper.SKIP
1923
+ modified_user_id =\
1924
+ dictionary.get("modified_user_id")\
1925
+ if dictionary.get("modified_user_id")\
1926
+ else APIHelper.SKIP
1927
+ transaction_code =\
1928
+ dictionary.get("transaction_code")\
1929
+ if "transaction_code" in dictionary.keys()\
1930
+ else APIHelper.SKIP
1931
+ effective_date =\
1932
+ dictionary.get("effective_date")\
1933
+ if "effective_date" in dictionary.keys()\
1934
+ else APIHelper.SKIP
1935
+ notification_phone =\
1936
+ dictionary.get("notification_phone")\
1937
+ if "notification_phone" in dictionary.keys()\
1938
+ else APIHelper.SKIP
1939
+ cavv_result =\
1940
+ dictionary.get("cavv_result")\
1941
+ if "cavv_result" in dictionary.keys()\
1942
+ else APIHelper.SKIP
1943
+ is_token =\
1944
+ dictionary.get("is_token")\
1945
+ if "is_token" in dictionary.keys()\
1946
+ else APIHelper.SKIP
1947
+ account_vault_id =\
1948
+ dictionary.get("account_vault_id")\
1949
+ if "account_vault_id" in dictionary.keys()\
1950
+ else APIHelper.SKIP
1951
+ hosted_payment_page_id =\
1952
+ dictionary.get("hosted_payment_page_id")\
1953
+ if dictionary.get("hosted_payment_page_id")\
1954
+ else APIHelper.SKIP
1955
+ stan =\
1956
+ dictionary.get("stan")\
1957
+ if "stan" in dictionary.keys()\
1958
+ else APIHelper.SKIP
1959
+ currency =\
1960
+ dictionary.get("currency")\
1961
+ if "currency" in dictionary.keys()\
1962
+ else APIHelper.SKIP
1963
+ card_bin =\
1964
+ dictionary.get("card_bin")\
1965
+ if "card_bin" in dictionary.keys()\
1966
+ else APIHelper.SKIP
1967
+ wallet_type =\
1968
+ dictionary.get("wallet_type")\
1969
+ if "wallet_type" in dictionary.keys()\
1970
+ else APIHelper.SKIP
1971
+ account_vault =\
1972
+ AccountVault.from_dictionary(
1973
+ dictionary.get("account_vault"))\
1974
+ if "account_vault" in dictionary.keys()\
1975
+ else APIHelper.SKIP
1976
+ quick_invoice =\
1977
+ QuickInvoice.from_dictionary(
1978
+ dictionary.get("quick_invoice"))\
1979
+ if "quick_invoice" in dictionary.keys()\
1980
+ else APIHelper.SKIP
1981
+ log_emails = None
1982
+ if dictionary.get("log_emails") is not None:
1983
+ log_emails = [
1984
+ LogEmail.from_dictionary(x)
1985
+ for x in dictionary.get("log_emails")
1986
+ ]
1987
+ else:
1988
+ log_emails = APIHelper.SKIP
1989
+ is_voidable =\
1990
+ dictionary.get("is_voidable")\
1991
+ if "is_voidable" in dictionary.keys()\
1992
+ else APIHelper.SKIP
1993
+ is_reversible =\
1994
+ dictionary.get("is_reversible")\
1995
+ if "is_reversible" in dictionary.keys()\
1996
+ else APIHelper.SKIP
1997
+ is_refundable =\
1998
+ dictionary.get("is_refundable")\
1999
+ if "is_refundable" in dictionary.keys()\
2000
+ else APIHelper.SKIP
2001
+ is_completable =\
2002
+ dictionary.get("is_completable")\
2003
+ if "is_completable" in dictionary.keys()\
2004
+ else APIHelper.SKIP
2005
+ is_settled =\
2006
+ dictionary.get("is_settled")\
2007
+ if "is_settled" in dictionary.keys()\
2008
+ else APIHelper.SKIP
2009
+ created_user =\
2010
+ CreatedUser.from_dictionary(
2011
+ dictionary.get("created_user"))\
2012
+ if "created_user" in dictionary.keys()\
2013
+ else APIHelper.SKIP
2014
+ location =\
2015
+ Location.from_dictionary(
2016
+ dictionary.get("location"))\
2017
+ if "location" in dictionary.keys()\
2018
+ else APIHelper.SKIP
2019
+ contact =\
2020
+ Contact1.from_dictionary(
2021
+ dictionary.get("contact"))\
2022
+ if "contact" in dictionary.keys()\
2023
+ else APIHelper.SKIP
2024
+ changelogs = None
2025
+ if dictionary.get("changelogs") is not None:
2026
+ changelogs = [
2027
+ Changelog.from_dictionary(x)
2028
+ for x in dictionary.get("changelogs")
2029
+ ]
2030
+ else:
2031
+ changelogs = APIHelper.SKIP
2032
+ product_transaction =\
2033
+ ProductTransaction.from_dictionary(
2034
+ dictionary.get("product_transaction"))\
2035
+ if "product_transaction" in dictionary.keys()\
2036
+ else APIHelper.SKIP
2037
+ all_tags = None
2038
+ if dictionary.get("all_tags") is not None:
2039
+ all_tags = [
2040
+ AllTag.from_dictionary(x)
2041
+ for x in dictionary.get("all_tags")
2042
+ ]
2043
+ else:
2044
+ all_tags = APIHelper.SKIP
2045
+ tag_transactions = None
2046
+ if dictionary.get("tagTransactions") is not None:
2047
+ tag_transactions = [
2048
+ TagTransaction.from_dictionary(x)
2049
+ for x in dictionary.get("tagTransactions")
2050
+ ]
2051
+ else:
2052
+ tag_transactions = APIHelper.SKIP
2053
+ declined_recurring_notification =\
2054
+ DeclinedRecurringNotification.from_dictionary(
2055
+ dictionary.get("declined_recurring_notification"))\
2056
+ if "declined_recurring_notification" in dictionary.keys()\
2057
+ else APIHelper.SKIP
2058
+ payment_recurring_notification =\
2059
+ PaymentRecurringNotification.from_dictionary(
2060
+ dictionary.get("payment_recurring_notification"))\
2061
+ if "payment_recurring_notification" in dictionary.keys()\
2062
+ else APIHelper.SKIP
2063
+ developer_company =\
2064
+ DeveloperCompany.from_dictionary(
2065
+ dictionary.get("developer_company"))\
2066
+ if "developer_company" in dictionary.keys()\
2067
+ else APIHelper.SKIP
2068
+ terminal =\
2069
+ Terminal.from_dictionary(
2070
+ dictionary.get("terminal"))\
2071
+ if "terminal" in dictionary.keys()\
2072
+ else APIHelper.SKIP
2073
+ hosted_payment_page =\
2074
+ HostedPaymentPage.from_dictionary(
2075
+ dictionary.get("hosted_payment_page"))\
2076
+ if "hosted_payment_page" in dictionary.keys()\
2077
+ else APIHelper.SKIP
2078
+ transaction_level_3 =\
2079
+ TransactionLevel3.from_dictionary(
2080
+ dictionary.get("transaction_level3"))\
2081
+ if "transaction_level3" in dictionary.keys()\
2082
+ else APIHelper.SKIP
2083
+ developer_company_id =\
2084
+ dictionary.get("developer_company_id")\
2085
+ if "developer_company_id" in dictionary.keys()\
2086
+ else APIHelper.SKIP
2087
+ transaction_histories = None
2088
+ if dictionary.get("transaction_histories") is not None:
2089
+ transaction_histories = [
2090
+ TransactionHistory.from_dictionary(x)
2091
+ for x in dictionary.get("transaction_histories")
2092
+ ]
2093
+ else:
2094
+ transaction_histories = APIHelper.SKIP
2095
+ surcharge_transaction =\
2096
+ SurchargeTransaction.from_dictionary(
2097
+ dictionary.get("surcharge_transaction"))\
2098
+ if "surcharge_transaction" in dictionary.keys()\
2099
+ else APIHelper.SKIP
2100
+ surcharge =\
2101
+ Surcharge.from_dictionary(
2102
+ dictionary.get("surcharge"))\
2103
+ if "surcharge" in dictionary.keys()\
2104
+ else APIHelper.SKIP
2105
+ signature =\
2106
+ Signature.from_dictionary(
2107
+ dictionary.get("signature"))\
2108
+ if "signature" in dictionary.keys()\
2109
+ else APIHelper.SKIP
2110
+ reason_code =\
2111
+ ReasonCode.from_dictionary(
2112
+ dictionary.get("reason_code"))\
2113
+ if "reason_code" in dictionary.keys()\
2114
+ else APIHelper.SKIP
2115
+ mtype =\
2116
+ Type123.from_dictionary(
2117
+ dictionary.get("type"))\
2118
+ if "type" in dictionary.keys()\
2119
+ else APIHelper.SKIP
2120
+ status =\
2121
+ Status11.from_dictionary(
2122
+ dictionary.get("status"))\
2123
+ if "status" in dictionary.keys()\
2124
+ else APIHelper.SKIP
2125
+ transaction_batch =\
2126
+ TransactionBatch.from_dictionary(
2127
+ dictionary.get("transaction_batch"))\
2128
+ if "transaction_batch" in dictionary.keys()\
2129
+ else APIHelper.SKIP
2130
+ transaction_splits = None
2131
+ if dictionary.get("transaction_splits") is not None:
2132
+ transaction_splits = [
2133
+ TransactionSplit.from_dictionary(x)
2134
+ for x in dictionary.get("transaction_splits")
2135
+ ]
2136
+ else:
2137
+ transaction_splits = APIHelper.SKIP
2138
+ postback_logs = None
2139
+ if dictionary.get("postback_logs") is not None:
2140
+ postback_logs = [
2141
+ PostbackLog.from_dictionary(x)
2142
+ for x in dictionary.get("postback_logs")
2143
+ ]
2144
+ else:
2145
+ postback_logs = APIHelper.SKIP
2146
+ currency_type =\
2147
+ CurrencyType.from_dictionary(
2148
+ dictionary.get("currency_type"))\
2149
+ if "currency_type" in dictionary.keys()\
2150
+ else APIHelper.SKIP
2151
+ transaction_references = None
2152
+ if dictionary.get("transaction_references") is not None:
2153
+ transaction_references = [
2154
+ TransactionReference.from_dictionary(x)
2155
+ for x in dictionary.get("transaction_references")
2156
+ ]
2157
+ else:
2158
+ transaction_references = APIHelper.SKIP
2159
+ rejected_transaction_ach_retries = None
2160
+ if dictionary.get("rejected_transaction_ach_retries") is not None:
2161
+ rejected_transaction_ach_retries = [
2162
+ RejectedTransactionAchRetry.from_dictionary(x)
2163
+ for x in dictionary.get("rejected_transaction_ach_retries")
2164
+ ]
2165
+ else:
2166
+ rejected_transaction_ach_retries = APIHelper.SKIP
2167
+ return_fee_transaction_ach_retry =\
2168
+ ReturnFeeTransactionAchRetry.from_dictionary(
2169
+ dictionary.get("return_fee_transaction_ach_retry"))\
2170
+ if "return_fee_transaction_ach_retry" in dictionary.keys()\
2171
+ else APIHelper.SKIP
2172
+ retry_transaction_ach_retry =\
2173
+ RetryTransactionAchRetry.from_dictionary(
2174
+ dictionary.get("retry_transaction_ach_retry"))\
2175
+ if "retry_transaction_ach_retry" in dictionary.keys()\
2176
+ else APIHelper.SKIP
2177
+ is_retriable =\
2178
+ dictionary.get("is_retriable")\
2179
+ if "is_retriable" in dictionary.keys()\
2180
+ else APIHelper.SKIP
2181
+ saved_account =\
2182
+ SavedAccount.from_dictionary(
2183
+ dictionary.get("saved_account"))\
2184
+ if "saved_account" in dictionary.keys()\
2185
+ else APIHelper.SKIP
2186
+ balances = None
2187
+ if dictionary.get("balances") is not None:
2188
+ balances = [
2189
+ Balance.from_dictionary(x)
2190
+ for x in dictionary.get("balances")
2191
+ ]
2192
+ else:
2193
+ balances = APIHelper.SKIP
2194
+
2195
+ # Clean out expected properties from dictionary
2196
+ additional_properties =\
2197
+ {k: v for k, v in dictionary.items() if k not in cls._names.values()}
2198
+
2199
+ # Return an object of this model
2200
+ return cls(additional_amounts,
2201
+ billing_address,
2202
+ checkin_date,
2203
+ checkout_date,
2204
+ clerk_number,
2205
+ contact_api_id,
2206
+ contact_id,
2207
+ custom_data,
2208
+ customer_id,
2209
+ description,
2210
+ iias_ind,
2211
+ image_front,
2212
+ image_back,
2213
+ installment,
2214
+ installment_number,
2215
+ installment_count,
2216
+ recurring_flag,
2217
+ installment_counter,
2218
+ installment_total,
2219
+ subscription,
2220
+ standing_order,
2221
+ location_api_id,
2222
+ location_id,
2223
+ product_transaction_id,
2224
+ advance_deposit,
2225
+ no_show,
2226
+ notification_email_address,
2227
+ order_number,
2228
+ po_number,
2229
+ quick_invoice_id,
2230
+ recurring,
2231
+ recurring_number,
2232
+ room_num,
2233
+ room_rate,
2234
+ save_account,
2235
+ save_account_title,
2236
+ subtotal_amount,
2237
+ surcharge_amount,
2238
+ tags,
2239
+ tax,
2240
+ tip_amount,
2241
+ transaction_amount,
2242
+ secondary_amount,
2243
+ transaction_api_id,
2244
+ transaction_c_1,
2245
+ transaction_c_2,
2246
+ transaction_c_3,
2247
+ bank_funded_only_override,
2248
+ allow_partial_authorization_override,
2249
+ auto_decline_cvv_override,
2250
+ auto_decline_street_override,
2251
+ auto_decline_zip_override,
2252
+ ebt_type,
2253
+ currency_code,
2254
+ id,
2255
+ created_ts,
2256
+ modified_ts,
2257
+ terminal_id,
2258
+ account_holder_name,
2259
+ account_type,
2260
+ token_api_id,
2261
+ token_id,
2262
+ ach_identifier,
2263
+ ach_sec_code,
2264
+ auth_amount,
2265
+ auth_code,
2266
+ avs,
2267
+ avs_enhanced,
2268
+ cardholder_present,
2269
+ card_present,
2270
+ check_number,
2271
+ customer_ip,
2272
+ cvv_response,
2273
+ entry_mode_id,
2274
+ emv_receipt_data,
2275
+ first_six,
2276
+ last_four,
2277
+ payment_method,
2278
+ terminal_serial_number,
2279
+ transaction_settlement_status,
2280
+ charge_back_date,
2281
+ is_recurring,
2282
+ notification_email_sent,
2283
+ par,
2284
+ reason_code_id,
2285
+ recurring_id,
2286
+ settle_date,
2287
+ status_code,
2288
+ transaction_batch_id,
2289
+ type_id,
2290
+ verbiage,
2291
+ voucher_number,
2292
+ void_date,
2293
+ batch,
2294
+ terms_agree,
2295
+ response_message,
2296
+ return_date,
2297
+ trx_source_id,
2298
+ routing_number,
2299
+ trx_source_code,
2300
+ paylink_id,
2301
+ is_accountvault,
2302
+ created_user_id,
2303
+ modified_user_id,
2304
+ transaction_code,
2305
+ effective_date,
2306
+ notification_phone,
2307
+ cavv_result,
2308
+ is_token,
2309
+ account_vault_id,
2310
+ hosted_payment_page_id,
2311
+ stan,
2312
+ currency,
2313
+ card_bin,
2314
+ wallet_type,
2315
+ account_vault,
2316
+ quick_invoice,
2317
+ log_emails,
2318
+ is_voidable,
2319
+ is_reversible,
2320
+ is_refundable,
2321
+ is_completable,
2322
+ is_settled,
2323
+ created_user,
2324
+ location,
2325
+ contact,
2326
+ changelogs,
2327
+ product_transaction,
2328
+ all_tags,
2329
+ tag_transactions,
2330
+ declined_recurring_notification,
2331
+ payment_recurring_notification,
2332
+ developer_company,
2333
+ terminal,
2334
+ hosted_payment_page,
2335
+ transaction_level_3,
2336
+ developer_company_id,
2337
+ transaction_histories,
2338
+ surcharge_transaction,
2339
+ surcharge,
2340
+ signature,
2341
+ reason_code,
2342
+ mtype,
2343
+ status,
2344
+ transaction_batch,
2345
+ transaction_splits,
2346
+ postback_logs,
2347
+ currency_type,
2348
+ transaction_references,
2349
+ rejected_transaction_ach_retries,
2350
+ return_fee_transaction_ach_retry,
2351
+ retry_transaction_ach_retry,
2352
+ is_retriable,
2353
+ saved_account,
2354
+ balances,
2355
+ additional_properties)
2356
+
2357
+ def __repr__(self):
2358
+ """Return a unambiguous string representation."""
2359
+ _additional_amounts=(
2360
+ self.additional_amounts
2361
+ if hasattr(self, "additional_amounts")
2362
+ else None
2363
+ )
2364
+ _billing_address=(
2365
+ self.billing_address
2366
+ if hasattr(self, "billing_address")
2367
+ else None
2368
+ )
2369
+ _checkin_date=(
2370
+ self.checkin_date
2371
+ if hasattr(self, "checkin_date")
2372
+ else None
2373
+ )
2374
+ _checkout_date=(
2375
+ self.checkout_date
2376
+ if hasattr(self, "checkout_date")
2377
+ else None
2378
+ )
2379
+ _clerk_number=(
2380
+ self.clerk_number
2381
+ if hasattr(self, "clerk_number")
2382
+ else None
2383
+ )
2384
+ _contact_api_id=(
2385
+ self.contact_api_id
2386
+ if hasattr(self, "contact_api_id")
2387
+ else None
2388
+ )
2389
+ _contact_id=(
2390
+ self.contact_id
2391
+ if hasattr(self, "contact_id")
2392
+ else None
2393
+ )
2394
+ _custom_data=(
2395
+ self.custom_data
2396
+ if hasattr(self, "custom_data")
2397
+ else None
2398
+ )
2399
+ _customer_id=(
2400
+ self.customer_id
2401
+ if hasattr(self, "customer_id")
2402
+ else None
2403
+ )
2404
+ _description=(
2405
+ self.description
2406
+ if hasattr(self, "description")
2407
+ else None
2408
+ )
2409
+ _iias_ind=(
2410
+ self.iias_ind
2411
+ if hasattr(self, "iias_ind")
2412
+ else None
2413
+ )
2414
+ _image_front=(
2415
+ self.image_front
2416
+ if hasattr(self, "image_front")
2417
+ else None
2418
+ )
2419
+ _image_back=(
2420
+ self.image_back
2421
+ if hasattr(self, "image_back")
2422
+ else None
2423
+ )
2424
+ _installment=(
2425
+ self.installment
2426
+ if hasattr(self, "installment")
2427
+ else None
2428
+ )
2429
+ _installment_number=(
2430
+ self.installment_number
2431
+ if hasattr(self, "installment_number")
2432
+ else None
2433
+ )
2434
+ _installment_count=(
2435
+ self.installment_count
2436
+ if hasattr(self, "installment_count")
2437
+ else None
2438
+ )
2439
+ _recurring_flag=(
2440
+ self.recurring_flag
2441
+ if hasattr(self, "recurring_flag")
2442
+ else None
2443
+ )
2444
+ _installment_counter=(
2445
+ self.installment_counter
2446
+ if hasattr(self, "installment_counter")
2447
+ else None
2448
+ )
2449
+ _installment_total=(
2450
+ self.installment_total
2451
+ if hasattr(self, "installment_total")
2452
+ else None
2453
+ )
2454
+ _subscription=(
2455
+ self.subscription
2456
+ if hasattr(self, "subscription")
2457
+ else None
2458
+ )
2459
+ _standing_order=(
2460
+ self.standing_order
2461
+ if hasattr(self, "standing_order")
2462
+ else None
2463
+ )
2464
+ _location_api_id=(
2465
+ self.location_api_id
2466
+ if hasattr(self, "location_api_id")
2467
+ else None
2468
+ )
2469
+ _location_id=(
2470
+ self.location_id
2471
+ if hasattr(self, "location_id")
2472
+ else None
2473
+ )
2474
+ _product_transaction_id=(
2475
+ self.product_transaction_id
2476
+ if hasattr(self, "product_transaction_id")
2477
+ else None
2478
+ )
2479
+ _advance_deposit=(
2480
+ self.advance_deposit
2481
+ if hasattr(self, "advance_deposit")
2482
+ else None
2483
+ )
2484
+ _no_show=(
2485
+ self.no_show
2486
+ if hasattr(self, "no_show")
2487
+ else None
2488
+ )
2489
+ _notification_email_address=(
2490
+ self.notification_email_address
2491
+ if hasattr(self, "notification_email_address")
2492
+ else None
2493
+ )
2494
+ _order_number=(
2495
+ self.order_number
2496
+ if hasattr(self, "order_number")
2497
+ else None
2498
+ )
2499
+ _po_number=(
2500
+ self.po_number
2501
+ if hasattr(self, "po_number")
2502
+ else None
2503
+ )
2504
+ _quick_invoice_id=(
2505
+ self.quick_invoice_id
2506
+ if hasattr(self, "quick_invoice_id")
2507
+ else None
2508
+ )
2509
+ _recurring=(
2510
+ self.recurring
2511
+ if hasattr(self, "recurring")
2512
+ else None
2513
+ )
2514
+ _recurring_number=(
2515
+ self.recurring_number
2516
+ if hasattr(self, "recurring_number")
2517
+ else None
2518
+ )
2519
+ _room_num=(
2520
+ self.room_num
2521
+ if hasattr(self, "room_num")
2522
+ else None
2523
+ )
2524
+ _room_rate=(
2525
+ self.room_rate
2526
+ if hasattr(self, "room_rate")
2527
+ else None
2528
+ )
2529
+ _save_account=(
2530
+ self.save_account
2531
+ if hasattr(self, "save_account")
2532
+ else None
2533
+ )
2534
+ _save_account_title=(
2535
+ self.save_account_title
2536
+ if hasattr(self, "save_account_title")
2537
+ else None
2538
+ )
2539
+ _subtotal_amount=(
2540
+ self.subtotal_amount
2541
+ if hasattr(self, "subtotal_amount")
2542
+ else None
2543
+ )
2544
+ _surcharge_amount=(
2545
+ self.surcharge_amount
2546
+ if hasattr(self, "surcharge_amount")
2547
+ else None
2548
+ )
2549
+ _tags=(
2550
+ self.tags
2551
+ if hasattr(self, "tags")
2552
+ else None
2553
+ )
2554
+ _tax=(
2555
+ self.tax
2556
+ if hasattr(self, "tax")
2557
+ else None
2558
+ )
2559
+ _tip_amount=(
2560
+ self.tip_amount
2561
+ if hasattr(self, "tip_amount")
2562
+ else None
2563
+ )
2564
+ _transaction_amount=(
2565
+ self.transaction_amount
2566
+ if hasattr(self, "transaction_amount")
2567
+ else None
2568
+ )
2569
+ _secondary_amount=(
2570
+ self.secondary_amount
2571
+ if hasattr(self, "secondary_amount")
2572
+ else None
2573
+ )
2574
+ _transaction_api_id=(
2575
+ self.transaction_api_id
2576
+ if hasattr(self, "transaction_api_id")
2577
+ else None
2578
+ )
2579
+ _transaction_c_1=(
2580
+ self.transaction_c_1
2581
+ if hasattr(self, "transaction_c_1")
2582
+ else None
2583
+ )
2584
+ _transaction_c_2=(
2585
+ self.transaction_c_2
2586
+ if hasattr(self, "transaction_c_2")
2587
+ else None
2588
+ )
2589
+ _transaction_c_3=(
2590
+ self.transaction_c_3
2591
+ if hasattr(self, "transaction_c_3")
2592
+ else None
2593
+ )
2594
+ _bank_funded_only_override=(
2595
+ self.bank_funded_only_override
2596
+ if hasattr(self, "bank_funded_only_override")
2597
+ else None
2598
+ )
2599
+ _allow_partial_authorization_override=(
2600
+ self.allow_partial_authorization_override
2601
+ if hasattr(self, "allow_partial_authorization_override")
2602
+ else None
2603
+ )
2604
+ _auto_decline_cvv_override=(
2605
+ self.auto_decline_cvv_override
2606
+ if hasattr(self, "auto_decline_cvv_override")
2607
+ else None
2608
+ )
2609
+ _auto_decline_street_override=(
2610
+ self.auto_decline_street_override
2611
+ if hasattr(self, "auto_decline_street_override")
2612
+ else None
2613
+ )
2614
+ _auto_decline_zip_override=(
2615
+ self.auto_decline_zip_override
2616
+ if hasattr(self, "auto_decline_zip_override")
2617
+ else None
2618
+ )
2619
+ _ebt_type=(
2620
+ self.ebt_type
2621
+ if hasattr(self, "ebt_type")
2622
+ else None
2623
+ )
2624
+ _currency_code=(
2625
+ self.currency_code
2626
+ if hasattr(self, "currency_code")
2627
+ else None
2628
+ )
2629
+ _id=(
2630
+ self.id
2631
+ if hasattr(self, "id")
2632
+ else None
2633
+ )
2634
+ _created_ts=(
2635
+ self.created_ts
2636
+ if hasattr(self, "created_ts")
2637
+ else None
2638
+ )
2639
+ _modified_ts=(
2640
+ self.modified_ts
2641
+ if hasattr(self, "modified_ts")
2642
+ else None
2643
+ )
2644
+ _terminal_id=(
2645
+ self.terminal_id
2646
+ if hasattr(self, "terminal_id")
2647
+ else None
2648
+ )
2649
+ _account_holder_name=(
2650
+ self.account_holder_name
2651
+ if hasattr(self, "account_holder_name")
2652
+ else None
2653
+ )
2654
+ _account_type=(
2655
+ self.account_type
2656
+ if hasattr(self, "account_type")
2657
+ else None
2658
+ )
2659
+ _token_api_id=(
2660
+ self.token_api_id
2661
+ if hasattr(self, "token_api_id")
2662
+ else None
2663
+ )
2664
+ _token_id=(
2665
+ self.token_id
2666
+ if hasattr(self, "token_id")
2667
+ else None
2668
+ )
2669
+ _ach_identifier=(
2670
+ self.ach_identifier
2671
+ if hasattr(self, "ach_identifier")
2672
+ else None
2673
+ )
2674
+ _ach_sec_code=(
2675
+ self.ach_sec_code
2676
+ if hasattr(self, "ach_sec_code")
2677
+ else None
2678
+ )
2679
+ _auth_amount=(
2680
+ self.auth_amount
2681
+ if hasattr(self, "auth_amount")
2682
+ else None
2683
+ )
2684
+ _auth_code=(
2685
+ self.auth_code
2686
+ if hasattr(self, "auth_code")
2687
+ else None
2688
+ )
2689
+ _avs=(
2690
+ self.avs
2691
+ if hasattr(self, "avs")
2692
+ else None
2693
+ )
2694
+ _avs_enhanced=(
2695
+ self.avs_enhanced
2696
+ if hasattr(self, "avs_enhanced")
2697
+ else None
2698
+ )
2699
+ _cardholder_present=(
2700
+ self.cardholder_present
2701
+ if hasattr(self, "cardholder_present")
2702
+ else None
2703
+ )
2704
+ _card_present=(
2705
+ self.card_present
2706
+ if hasattr(self, "card_present")
2707
+ else None
2708
+ )
2709
+ _check_number=(
2710
+ self.check_number
2711
+ if hasattr(self, "check_number")
2712
+ else None
2713
+ )
2714
+ _customer_ip=(
2715
+ self.customer_ip
2716
+ if hasattr(self, "customer_ip")
2717
+ else None
2718
+ )
2719
+ _cvv_response=(
2720
+ self.cvv_response
2721
+ if hasattr(self, "cvv_response")
2722
+ else None
2723
+ )
2724
+ _entry_mode_id=(
2725
+ self.entry_mode_id
2726
+ if hasattr(self, "entry_mode_id")
2727
+ else None
2728
+ )
2729
+ _emv_receipt_data=(
2730
+ self.emv_receipt_data
2731
+ if hasattr(self, "emv_receipt_data")
2732
+ else None
2733
+ )
2734
+ _first_six=(
2735
+ self.first_six
2736
+ if hasattr(self, "first_six")
2737
+ else None
2738
+ )
2739
+ _last_four=(
2740
+ self.last_four
2741
+ if hasattr(self, "last_four")
2742
+ else None
2743
+ )
2744
+ _payment_method=(
2745
+ self.payment_method
2746
+ if hasattr(self, "payment_method")
2747
+ else None
2748
+ )
2749
+ _terminal_serial_number=(
2750
+ self.terminal_serial_number
2751
+ if hasattr(self, "terminal_serial_number")
2752
+ else None
2753
+ )
2754
+ _transaction_settlement_status=(
2755
+ self.transaction_settlement_status
2756
+ if hasattr(self, "transaction_settlement_status")
2757
+ else None
2758
+ )
2759
+ _charge_back_date=(
2760
+ self.charge_back_date
2761
+ if hasattr(self, "charge_back_date")
2762
+ else None
2763
+ )
2764
+ _is_recurring=(
2765
+ self.is_recurring
2766
+ if hasattr(self, "is_recurring")
2767
+ else None
2768
+ )
2769
+ _notification_email_sent=(
2770
+ self.notification_email_sent
2771
+ if hasattr(self, "notification_email_sent")
2772
+ else None
2773
+ )
2774
+ _par=(
2775
+ self.par
2776
+ if hasattr(self, "par")
2777
+ else None
2778
+ )
2779
+ _reason_code_id=(
2780
+ self.reason_code_id
2781
+ if hasattr(self, "reason_code_id")
2782
+ else None
2783
+ )
2784
+ _recurring_id=(
2785
+ self.recurring_id
2786
+ if hasattr(self, "recurring_id")
2787
+ else None
2788
+ )
2789
+ _settle_date=(
2790
+ self.settle_date
2791
+ if hasattr(self, "settle_date")
2792
+ else None
2793
+ )
2794
+ _status_code=(
2795
+ self.status_code
2796
+ if hasattr(self, "status_code")
2797
+ else None
2798
+ )
2799
+ _transaction_batch_id=(
2800
+ self.transaction_batch_id
2801
+ if hasattr(self, "transaction_batch_id")
2802
+ else None
2803
+ )
2804
+ _type_id=(
2805
+ self.type_id
2806
+ if hasattr(self, "type_id")
2807
+ else None
2808
+ )
2809
+ _verbiage=(
2810
+ self.verbiage
2811
+ if hasattr(self, "verbiage")
2812
+ else None
2813
+ )
2814
+ _voucher_number=(
2815
+ self.voucher_number
2816
+ if hasattr(self, "voucher_number")
2817
+ else None
2818
+ )
2819
+ _void_date=(
2820
+ self.void_date
2821
+ if hasattr(self, "void_date")
2822
+ else None
2823
+ )
2824
+ _batch=(
2825
+ self.batch
2826
+ if hasattr(self, "batch")
2827
+ else None
2828
+ )
2829
+ _terms_agree=(
2830
+ self.terms_agree
2831
+ if hasattr(self, "terms_agree")
2832
+ else None
2833
+ )
2834
+ _response_message=(
2835
+ self.response_message
2836
+ if hasattr(self, "response_message")
2837
+ else None
2838
+ )
2839
+ _return_date=(
2840
+ self.return_date
2841
+ if hasattr(self, "return_date")
2842
+ else None
2843
+ )
2844
+ _trx_source_id=(
2845
+ self.trx_source_id
2846
+ if hasattr(self, "trx_source_id")
2847
+ else None
2848
+ )
2849
+ _routing_number=(
2850
+ self.routing_number
2851
+ if hasattr(self, "routing_number")
2852
+ else None
2853
+ )
2854
+ _trx_source_code=(
2855
+ self.trx_source_code
2856
+ if hasattr(self, "trx_source_code")
2857
+ else None
2858
+ )
2859
+ _paylink_id=(
2860
+ self.paylink_id
2861
+ if hasattr(self, "paylink_id")
2862
+ else None
2863
+ )
2864
+ _is_accountvault=(
2865
+ self.is_accountvault
2866
+ if hasattr(self, "is_accountvault")
2867
+ else None
2868
+ )
2869
+ _created_user_id=(
2870
+ self.created_user_id
2871
+ if hasattr(self, "created_user_id")
2872
+ else None
2873
+ )
2874
+ _modified_user_id=(
2875
+ self.modified_user_id
2876
+ if hasattr(self, "modified_user_id")
2877
+ else None
2878
+ )
2879
+ _transaction_code=(
2880
+ self.transaction_code
2881
+ if hasattr(self, "transaction_code")
2882
+ else None
2883
+ )
2884
+ _effective_date=(
2885
+ self.effective_date
2886
+ if hasattr(self, "effective_date")
2887
+ else None
2888
+ )
2889
+ _notification_phone=(
2890
+ self.notification_phone
2891
+ if hasattr(self, "notification_phone")
2892
+ else None
2893
+ )
2894
+ _cavv_result=(
2895
+ self.cavv_result
2896
+ if hasattr(self, "cavv_result")
2897
+ else None
2898
+ )
2899
+ _is_token=(
2900
+ self.is_token
2901
+ if hasattr(self, "is_token")
2902
+ else None
2903
+ )
2904
+ _account_vault_id=(
2905
+ self.account_vault_id
2906
+ if hasattr(self, "account_vault_id")
2907
+ else None
2908
+ )
2909
+ _hosted_payment_page_id=(
2910
+ self.hosted_payment_page_id
2911
+ if hasattr(self, "hosted_payment_page_id")
2912
+ else None
2913
+ )
2914
+ _stan=(
2915
+ self.stan
2916
+ if hasattr(self, "stan")
2917
+ else None
2918
+ )
2919
+ _currency=(
2920
+ self.currency
2921
+ if hasattr(self, "currency")
2922
+ else None
2923
+ )
2924
+ _card_bin=(
2925
+ self.card_bin
2926
+ if hasattr(self, "card_bin")
2927
+ else None
2928
+ )
2929
+ _wallet_type=(
2930
+ self.wallet_type
2931
+ if hasattr(self, "wallet_type")
2932
+ else None
2933
+ )
2934
+ _account_vault=(
2935
+ self.account_vault
2936
+ if hasattr(self, "account_vault")
2937
+ else None
2938
+ )
2939
+ _quick_invoice=(
2940
+ self.quick_invoice
2941
+ if hasattr(self, "quick_invoice")
2942
+ else None
2943
+ )
2944
+ _log_emails=(
2945
+ self.log_emails
2946
+ if hasattr(self, "log_emails")
2947
+ else None
2948
+ )
2949
+ _is_voidable=(
2950
+ self.is_voidable
2951
+ if hasattr(self, "is_voidable")
2952
+ else None
2953
+ )
2954
+ _is_reversible=(
2955
+ self.is_reversible
2956
+ if hasattr(self, "is_reversible")
2957
+ else None
2958
+ )
2959
+ _is_refundable=(
2960
+ self.is_refundable
2961
+ if hasattr(self, "is_refundable")
2962
+ else None
2963
+ )
2964
+ _is_completable=(
2965
+ self.is_completable
2966
+ if hasattr(self, "is_completable")
2967
+ else None
2968
+ )
2969
+ _is_settled=(
2970
+ self.is_settled
2971
+ if hasattr(self, "is_settled")
2972
+ else None
2973
+ )
2974
+ _created_user=(
2975
+ self.created_user
2976
+ if hasattr(self, "created_user")
2977
+ else None
2978
+ )
2979
+ _location=(
2980
+ self.location
2981
+ if hasattr(self, "location")
2982
+ else None
2983
+ )
2984
+ _contact=(
2985
+ self.contact
2986
+ if hasattr(self, "contact")
2987
+ else None
2988
+ )
2989
+ _changelogs=(
2990
+ self.changelogs
2991
+ if hasattr(self, "changelogs")
2992
+ else None
2993
+ )
2994
+ _product_transaction=(
2995
+ self.product_transaction
2996
+ if hasattr(self, "product_transaction")
2997
+ else None
2998
+ )
2999
+ _all_tags=(
3000
+ self.all_tags
3001
+ if hasattr(self, "all_tags")
3002
+ else None
3003
+ )
3004
+ _tag_transactions=(
3005
+ self.tag_transactions
3006
+ if hasattr(self, "tag_transactions")
3007
+ else None
3008
+ )
3009
+ _declined_recurring_notification=(
3010
+ self.declined_recurring_notification
3011
+ if hasattr(self, "declined_recurring_notification")
3012
+ else None
3013
+ )
3014
+ _payment_recurring_notification=(
3015
+ self.payment_recurring_notification
3016
+ if hasattr(self, "payment_recurring_notification")
3017
+ else None
3018
+ )
3019
+ _developer_company=(
3020
+ self.developer_company
3021
+ if hasattr(self, "developer_company")
3022
+ else None
3023
+ )
3024
+ _terminal=(
3025
+ self.terminal
3026
+ if hasattr(self, "terminal")
3027
+ else None
3028
+ )
3029
+ _hosted_payment_page=(
3030
+ self.hosted_payment_page
3031
+ if hasattr(self, "hosted_payment_page")
3032
+ else None
3033
+ )
3034
+ _transaction_level_3=(
3035
+ self.transaction_level_3
3036
+ if hasattr(self, "transaction_level_3")
3037
+ else None
3038
+ )
3039
+ _developer_company_id=(
3040
+ self.developer_company_id
3041
+ if hasattr(self, "developer_company_id")
3042
+ else None
3043
+ )
3044
+ _transaction_histories=(
3045
+ self.transaction_histories
3046
+ if hasattr(self, "transaction_histories")
3047
+ else None
3048
+ )
3049
+ _surcharge_transaction=(
3050
+ self.surcharge_transaction
3051
+ if hasattr(self, "surcharge_transaction")
3052
+ else None
3053
+ )
3054
+ _surcharge=(
3055
+ self.surcharge
3056
+ if hasattr(self, "surcharge")
3057
+ else None
3058
+ )
3059
+ _signature=(
3060
+ self.signature
3061
+ if hasattr(self, "signature")
3062
+ else None
3063
+ )
3064
+ _reason_code=(
3065
+ self.reason_code
3066
+ if hasattr(self, "reason_code")
3067
+ else None
3068
+ )
3069
+ _mtype=(
3070
+ self.mtype
3071
+ if hasattr(self, "mtype")
3072
+ else None
3073
+ )
3074
+ _status=(
3075
+ self.status
3076
+ if hasattr(self, "status")
3077
+ else None
3078
+ )
3079
+ _transaction_batch=(
3080
+ self.transaction_batch
3081
+ if hasattr(self, "transaction_batch")
3082
+ else None
3083
+ )
3084
+ _transaction_splits=(
3085
+ self.transaction_splits
3086
+ if hasattr(self, "transaction_splits")
3087
+ else None
3088
+ )
3089
+ _postback_logs=(
3090
+ self.postback_logs
3091
+ if hasattr(self, "postback_logs")
3092
+ else None
3093
+ )
3094
+ _currency_type=(
3095
+ self.currency_type
3096
+ if hasattr(self, "currency_type")
3097
+ else None
3098
+ )
3099
+ _transaction_references=(
3100
+ self.transaction_references
3101
+ if hasattr(self, "transaction_references")
3102
+ else None
3103
+ )
3104
+ _rejected_transaction_ach_retries=(
3105
+ self.rejected_transaction_ach_retries
3106
+ if hasattr(self, "rejected_transaction_ach_retries")
3107
+ else None
3108
+ )
3109
+ _return_fee_transaction_ach_retry=(
3110
+ self.return_fee_transaction_ach_retry
3111
+ if hasattr(self, "return_fee_transaction_ach_retry")
3112
+ else None
3113
+ )
3114
+ _retry_transaction_ach_retry=(
3115
+ self.retry_transaction_ach_retry
3116
+ if hasattr(self, "retry_transaction_ach_retry")
3117
+ else None
3118
+ )
3119
+ _is_retriable=(
3120
+ self.is_retriable
3121
+ if hasattr(self, "is_retriable")
3122
+ else None
3123
+ )
3124
+ _saved_account=(
3125
+ self.saved_account
3126
+ if hasattr(self, "saved_account")
3127
+ else None
3128
+ )
3129
+ _balances=(
3130
+ self.balances
3131
+ if hasattr(self, "balances")
3132
+ else None
3133
+ )
3134
+ _additional_properties=self.additional_properties
3135
+ return (
3136
+ f"{self.__class__.__name__}("
3137
+ f"additional_amounts={_additional_amounts!r}, "
3138
+ f"billing_address={_billing_address!r}, "
3139
+ f"checkin_date={_checkin_date!r}, "
3140
+ f"checkout_date={_checkout_date!r}, "
3141
+ f"clerk_number={_clerk_number!r}, "
3142
+ f"contact_api_id={_contact_api_id!r}, "
3143
+ f"contact_id={_contact_id!r}, "
3144
+ f"custom_data={_custom_data!r}, "
3145
+ f"customer_id={_customer_id!r}, "
3146
+ f"description={_description!r}, "
3147
+ f"iias_ind={_iias_ind!r}, "
3148
+ f"image_front={_image_front!r}, "
3149
+ f"image_back={_image_back!r}, "
3150
+ f"installment={_installment!r}, "
3151
+ f"installment_number={_installment_number!r}, "
3152
+ f"installment_count={_installment_count!r}, "
3153
+ f"recurring_flag={_recurring_flag!r}, "
3154
+ f"installment_counter={_installment_counter!r}, "
3155
+ f"installment_total={_installment_total!r}, "
3156
+ f"subscription={_subscription!r}, "
3157
+ f"standing_order={_standing_order!r}, "
3158
+ f"location_api_id={_location_api_id!r}, "
3159
+ f"location_id={_location_id!r}, "
3160
+ f"product_transaction_id={_product_transaction_id!r}, "
3161
+ f"advance_deposit={_advance_deposit!r}, "
3162
+ f"no_show={_no_show!r}, "
3163
+ f"notification_email_address={_notification_email_address!r}, "
3164
+ f"order_number={_order_number!r}, "
3165
+ f"po_number={_po_number!r}, "
3166
+ f"quick_invoice_id={_quick_invoice_id!r}, "
3167
+ f"recurring={_recurring!r}, "
3168
+ f"recurring_number={_recurring_number!r}, "
3169
+ f"room_num={_room_num!r}, "
3170
+ f"room_rate={_room_rate!r}, "
3171
+ f"save_account={_save_account!r}, "
3172
+ f"save_account_title={_save_account_title!r}, "
3173
+ f"subtotal_amount={_subtotal_amount!r}, "
3174
+ f"surcharge_amount={_surcharge_amount!r}, "
3175
+ f"tags={_tags!r}, "
3176
+ f"tax={_tax!r}, "
3177
+ f"tip_amount={_tip_amount!r}, "
3178
+ f"transaction_amount={_transaction_amount!r}, "
3179
+ f"secondary_amount={_secondary_amount!r}, "
3180
+ f"transaction_api_id={_transaction_api_id!r}, "
3181
+ f"transaction_c_1={_transaction_c_1!r}, "
3182
+ f"transaction_c_2={_transaction_c_2!r}, "
3183
+ f"transaction_c_3={_transaction_c_3!r}, "
3184
+ f"bank_funded_only_override={_bank_funded_only_override!r}, "
3185
+ f"allow_partial_authorization_override={_allow_partial_authorization_override!r}, "
3186
+ f"auto_decline_cvv_override={_auto_decline_cvv_override!r}, "
3187
+ f"auto_decline_street_override={_auto_decline_street_override!r}, "
3188
+ f"auto_decline_zip_override={_auto_decline_zip_override!r}, "
3189
+ f"ebt_type={_ebt_type!r}, "
3190
+ f"currency_code={_currency_code!r}, "
3191
+ f"id={_id!r}, "
3192
+ f"created_ts={_created_ts!r}, "
3193
+ f"modified_ts={_modified_ts!r}, "
3194
+ f"terminal_id={_terminal_id!r}, "
3195
+ f"account_holder_name={_account_holder_name!r}, "
3196
+ f"account_type={_account_type!r}, "
3197
+ f"token_api_id={_token_api_id!r}, "
3198
+ f"token_id={_token_id!r}, "
3199
+ f"ach_identifier={_ach_identifier!r}, "
3200
+ f"ach_sec_code={_ach_sec_code!r}, "
3201
+ f"auth_amount={_auth_amount!r}, "
3202
+ f"auth_code={_auth_code!r}, "
3203
+ f"avs={_avs!r}, "
3204
+ f"avs_enhanced={_avs_enhanced!r}, "
3205
+ f"cardholder_present={_cardholder_present!r}, "
3206
+ f"card_present={_card_present!r}, "
3207
+ f"check_number={_check_number!r}, "
3208
+ f"customer_ip={_customer_ip!r}, "
3209
+ f"cvv_response={_cvv_response!r}, "
3210
+ f"entry_mode_id={_entry_mode_id!r}, "
3211
+ f"emv_receipt_data={_emv_receipt_data!r}, "
3212
+ f"first_six={_first_six!r}, "
3213
+ f"last_four={_last_four!r}, "
3214
+ f"payment_method={_payment_method!r}, "
3215
+ f"terminal_serial_number={_terminal_serial_number!r}, "
3216
+ f"transaction_settlement_status={_transaction_settlement_status!r}, "
3217
+ f"charge_back_date={_charge_back_date!r}, "
3218
+ f"is_recurring={_is_recurring!r}, "
3219
+ f"notification_email_sent={_notification_email_sent!r}, "
3220
+ f"par={_par!r}, "
3221
+ f"reason_code_id={_reason_code_id!r}, "
3222
+ f"recurring_id={_recurring_id!r}, "
3223
+ f"settle_date={_settle_date!r}, "
3224
+ f"status_code={_status_code!r}, "
3225
+ f"transaction_batch_id={_transaction_batch_id!r}, "
3226
+ f"type_id={_type_id!r}, "
3227
+ f"verbiage={_verbiage!r}, "
3228
+ f"voucher_number={_voucher_number!r}, "
3229
+ f"void_date={_void_date!r}, "
3230
+ f"batch={_batch!r}, "
3231
+ f"terms_agree={_terms_agree!r}, "
3232
+ f"response_message={_response_message!r}, "
3233
+ f"return_date={_return_date!r}, "
3234
+ f"trx_source_id={_trx_source_id!r}, "
3235
+ f"routing_number={_routing_number!r}, "
3236
+ f"trx_source_code={_trx_source_code!r}, "
3237
+ f"paylink_id={_paylink_id!r}, "
3238
+ f"is_accountvault={_is_accountvault!r}, "
3239
+ f"created_user_id={_created_user_id!r}, "
3240
+ f"modified_user_id={_modified_user_id!r}, "
3241
+ f"transaction_code={_transaction_code!r}, "
3242
+ f"effective_date={_effective_date!r}, "
3243
+ f"notification_phone={_notification_phone!r}, "
3244
+ f"cavv_result={_cavv_result!r}, "
3245
+ f"is_token={_is_token!r}, "
3246
+ f"account_vault_id={_account_vault_id!r}, "
3247
+ f"hosted_payment_page_id={_hosted_payment_page_id!r}, "
3248
+ f"stan={_stan!r}, "
3249
+ f"currency={_currency!r}, "
3250
+ f"card_bin={_card_bin!r}, "
3251
+ f"wallet_type={_wallet_type!r}, "
3252
+ f"account_vault={_account_vault!r}, "
3253
+ f"quick_invoice={_quick_invoice!r}, "
3254
+ f"log_emails={_log_emails!r}, "
3255
+ f"is_voidable={_is_voidable!r}, "
3256
+ f"is_reversible={_is_reversible!r}, "
3257
+ f"is_refundable={_is_refundable!r}, "
3258
+ f"is_completable={_is_completable!r}, "
3259
+ f"is_settled={_is_settled!r}, "
3260
+ f"created_user={_created_user!r}, "
3261
+ f"location={_location!r}, "
3262
+ f"contact={_contact!r}, "
3263
+ f"changelogs={_changelogs!r}, "
3264
+ f"product_transaction={_product_transaction!r}, "
3265
+ f"all_tags={_all_tags!r}, "
3266
+ f"tag_transactions={_tag_transactions!r}, "
3267
+ f"declined_recurring_notification={_declined_recurring_notification!r}, "
3268
+ f"payment_recurring_notification={_payment_recurring_notification!r}, "
3269
+ f"developer_company={_developer_company!r}, "
3270
+ f"terminal={_terminal!r}, "
3271
+ f"hosted_payment_page={_hosted_payment_page!r}, "
3272
+ f"transaction_level_3={_transaction_level_3!r}, "
3273
+ f"developer_company_id={_developer_company_id!r}, "
3274
+ f"transaction_histories={_transaction_histories!r}, "
3275
+ f"surcharge_transaction={_surcharge_transaction!r}, "
3276
+ f"surcharge={_surcharge!r}, "
3277
+ f"signature={_signature!r}, "
3278
+ f"reason_code={_reason_code!r}, "
3279
+ f"mtype={_mtype!r}, "
3280
+ f"status={_status!r}, "
3281
+ f"transaction_batch={_transaction_batch!r}, "
3282
+ f"transaction_splits={_transaction_splits!r}, "
3283
+ f"postback_logs={_postback_logs!r}, "
3284
+ f"currency_type={_currency_type!r}, "
3285
+ f"transaction_references={_transaction_references!r}, "
3286
+ f"rejected_transaction_ach_retries={_rejected_transaction_ach_retries!r}, "
3287
+ f"return_fee_transaction_ach_retry={_return_fee_transaction_ach_retry!r}, "
3288
+ f"retry_transaction_ach_retry={_retry_transaction_ach_retry!r}, "
3289
+ f"is_retriable={_is_retriable!r}, "
3290
+ f"saved_account={_saved_account!r}, "
3291
+ f"balances={_balances!r}, "
3292
+ f"additional_properties={_additional_properties!r}, "
3293
+ f")"
3294
+ )
3295
+
3296
+ def __str__(self):
3297
+ """Return a human-readable string representation."""
3298
+ _additional_amounts=(
3299
+ self.additional_amounts
3300
+ if hasattr(self, "additional_amounts")
3301
+ else None
3302
+ )
3303
+ _billing_address=(
3304
+ self.billing_address
3305
+ if hasattr(self, "billing_address")
3306
+ else None
3307
+ )
3308
+ _checkin_date=(
3309
+ self.checkin_date
3310
+ if hasattr(self, "checkin_date")
3311
+ else None
3312
+ )
3313
+ _checkout_date=(
3314
+ self.checkout_date
3315
+ if hasattr(self, "checkout_date")
3316
+ else None
3317
+ )
3318
+ _clerk_number=(
3319
+ self.clerk_number
3320
+ if hasattr(self, "clerk_number")
3321
+ else None
3322
+ )
3323
+ _contact_api_id=(
3324
+ self.contact_api_id
3325
+ if hasattr(self, "contact_api_id")
3326
+ else None
3327
+ )
3328
+ _contact_id=(
3329
+ self.contact_id
3330
+ if hasattr(self, "contact_id")
3331
+ else None
3332
+ )
3333
+ _custom_data=(
3334
+ self.custom_data
3335
+ if hasattr(self, "custom_data")
3336
+ else None
3337
+ )
3338
+ _customer_id=(
3339
+ self.customer_id
3340
+ if hasattr(self, "customer_id")
3341
+ else None
3342
+ )
3343
+ _description=(
3344
+ self.description
3345
+ if hasattr(self, "description")
3346
+ else None
3347
+ )
3348
+ _iias_ind=(
3349
+ self.iias_ind
3350
+ if hasattr(self, "iias_ind")
3351
+ else None
3352
+ )
3353
+ _image_front=(
3354
+ self.image_front
3355
+ if hasattr(self, "image_front")
3356
+ else None
3357
+ )
3358
+ _image_back=(
3359
+ self.image_back
3360
+ if hasattr(self, "image_back")
3361
+ else None
3362
+ )
3363
+ _installment=(
3364
+ self.installment
3365
+ if hasattr(self, "installment")
3366
+ else None
3367
+ )
3368
+ _installment_number=(
3369
+ self.installment_number
3370
+ if hasattr(self, "installment_number")
3371
+ else None
3372
+ )
3373
+ _installment_count=(
3374
+ self.installment_count
3375
+ if hasattr(self, "installment_count")
3376
+ else None
3377
+ )
3378
+ _recurring_flag=(
3379
+ self.recurring_flag
3380
+ if hasattr(self, "recurring_flag")
3381
+ else None
3382
+ )
3383
+ _installment_counter=(
3384
+ self.installment_counter
3385
+ if hasattr(self, "installment_counter")
3386
+ else None
3387
+ )
3388
+ _installment_total=(
3389
+ self.installment_total
3390
+ if hasattr(self, "installment_total")
3391
+ else None
3392
+ )
3393
+ _subscription=(
3394
+ self.subscription
3395
+ if hasattr(self, "subscription")
3396
+ else None
3397
+ )
3398
+ _standing_order=(
3399
+ self.standing_order
3400
+ if hasattr(self, "standing_order")
3401
+ else None
3402
+ )
3403
+ _location_api_id=(
3404
+ self.location_api_id
3405
+ if hasattr(self, "location_api_id")
3406
+ else None
3407
+ )
3408
+ _location_id=(
3409
+ self.location_id
3410
+ if hasattr(self, "location_id")
3411
+ else None
3412
+ )
3413
+ _product_transaction_id=(
3414
+ self.product_transaction_id
3415
+ if hasattr(self, "product_transaction_id")
3416
+ else None
3417
+ )
3418
+ _advance_deposit=(
3419
+ self.advance_deposit
3420
+ if hasattr(self, "advance_deposit")
3421
+ else None
3422
+ )
3423
+ _no_show=(
3424
+ self.no_show
3425
+ if hasattr(self, "no_show")
3426
+ else None
3427
+ )
3428
+ _notification_email_address=(
3429
+ self.notification_email_address
3430
+ if hasattr(self, "notification_email_address")
3431
+ else None
3432
+ )
3433
+ _order_number=(
3434
+ self.order_number
3435
+ if hasattr(self, "order_number")
3436
+ else None
3437
+ )
3438
+ _po_number=(
3439
+ self.po_number
3440
+ if hasattr(self, "po_number")
3441
+ else None
3442
+ )
3443
+ _quick_invoice_id=(
3444
+ self.quick_invoice_id
3445
+ if hasattr(self, "quick_invoice_id")
3446
+ else None
3447
+ )
3448
+ _recurring=(
3449
+ self.recurring
3450
+ if hasattr(self, "recurring")
3451
+ else None
3452
+ )
3453
+ _recurring_number=(
3454
+ self.recurring_number
3455
+ if hasattr(self, "recurring_number")
3456
+ else None
3457
+ )
3458
+ _room_num=(
3459
+ self.room_num
3460
+ if hasattr(self, "room_num")
3461
+ else None
3462
+ )
3463
+ _room_rate=(
3464
+ self.room_rate
3465
+ if hasattr(self, "room_rate")
3466
+ else None
3467
+ )
3468
+ _save_account=(
3469
+ self.save_account
3470
+ if hasattr(self, "save_account")
3471
+ else None
3472
+ )
3473
+ _save_account_title=(
3474
+ self.save_account_title
3475
+ if hasattr(self, "save_account_title")
3476
+ else None
3477
+ )
3478
+ _subtotal_amount=(
3479
+ self.subtotal_amount
3480
+ if hasattr(self, "subtotal_amount")
3481
+ else None
3482
+ )
3483
+ _surcharge_amount=(
3484
+ self.surcharge_amount
3485
+ if hasattr(self, "surcharge_amount")
3486
+ else None
3487
+ )
3488
+ _tags=(
3489
+ self.tags
3490
+ if hasattr(self, "tags")
3491
+ else None
3492
+ )
3493
+ _tax=(
3494
+ self.tax
3495
+ if hasattr(self, "tax")
3496
+ else None
3497
+ )
3498
+ _tip_amount=(
3499
+ self.tip_amount
3500
+ if hasattr(self, "tip_amount")
3501
+ else None
3502
+ )
3503
+ _transaction_amount=(
3504
+ self.transaction_amount
3505
+ if hasattr(self, "transaction_amount")
3506
+ else None
3507
+ )
3508
+ _secondary_amount=(
3509
+ self.secondary_amount
3510
+ if hasattr(self, "secondary_amount")
3511
+ else None
3512
+ )
3513
+ _transaction_api_id=(
3514
+ self.transaction_api_id
3515
+ if hasattr(self, "transaction_api_id")
3516
+ else None
3517
+ )
3518
+ _transaction_c_1=(
3519
+ self.transaction_c_1
3520
+ if hasattr(self, "transaction_c_1")
3521
+ else None
3522
+ )
3523
+ _transaction_c_2=(
3524
+ self.transaction_c_2
3525
+ if hasattr(self, "transaction_c_2")
3526
+ else None
3527
+ )
3528
+ _transaction_c_3=(
3529
+ self.transaction_c_3
3530
+ if hasattr(self, "transaction_c_3")
3531
+ else None
3532
+ )
3533
+ _bank_funded_only_override=(
3534
+ self.bank_funded_only_override
3535
+ if hasattr(self, "bank_funded_only_override")
3536
+ else None
3537
+ )
3538
+ _allow_partial_authorization_override=(
3539
+ self.allow_partial_authorization_override
3540
+ if hasattr(self, "allow_partial_authorization_override")
3541
+ else None
3542
+ )
3543
+ _auto_decline_cvv_override=(
3544
+ self.auto_decline_cvv_override
3545
+ if hasattr(self, "auto_decline_cvv_override")
3546
+ else None
3547
+ )
3548
+ _auto_decline_street_override=(
3549
+ self.auto_decline_street_override
3550
+ if hasattr(self, "auto_decline_street_override")
3551
+ else None
3552
+ )
3553
+ _auto_decline_zip_override=(
3554
+ self.auto_decline_zip_override
3555
+ if hasattr(self, "auto_decline_zip_override")
3556
+ else None
3557
+ )
3558
+ _ebt_type=(
3559
+ self.ebt_type
3560
+ if hasattr(self, "ebt_type")
3561
+ else None
3562
+ )
3563
+ _currency_code=(
3564
+ self.currency_code
3565
+ if hasattr(self, "currency_code")
3566
+ else None
3567
+ )
3568
+ _id=(
3569
+ self.id
3570
+ if hasattr(self, "id")
3571
+ else None
3572
+ )
3573
+ _created_ts=(
3574
+ self.created_ts
3575
+ if hasattr(self, "created_ts")
3576
+ else None
3577
+ )
3578
+ _modified_ts=(
3579
+ self.modified_ts
3580
+ if hasattr(self, "modified_ts")
3581
+ else None
3582
+ )
3583
+ _terminal_id=(
3584
+ self.terminal_id
3585
+ if hasattr(self, "terminal_id")
3586
+ else None
3587
+ )
3588
+ _account_holder_name=(
3589
+ self.account_holder_name
3590
+ if hasattr(self, "account_holder_name")
3591
+ else None
3592
+ )
3593
+ _account_type=(
3594
+ self.account_type
3595
+ if hasattr(self, "account_type")
3596
+ else None
3597
+ )
3598
+ _token_api_id=(
3599
+ self.token_api_id
3600
+ if hasattr(self, "token_api_id")
3601
+ else None
3602
+ )
3603
+ _token_id=(
3604
+ self.token_id
3605
+ if hasattr(self, "token_id")
3606
+ else None
3607
+ )
3608
+ _ach_identifier=(
3609
+ self.ach_identifier
3610
+ if hasattr(self, "ach_identifier")
3611
+ else None
3612
+ )
3613
+ _ach_sec_code=(
3614
+ self.ach_sec_code
3615
+ if hasattr(self, "ach_sec_code")
3616
+ else None
3617
+ )
3618
+ _auth_amount=(
3619
+ self.auth_amount
3620
+ if hasattr(self, "auth_amount")
3621
+ else None
3622
+ )
3623
+ _auth_code=(
3624
+ self.auth_code
3625
+ if hasattr(self, "auth_code")
3626
+ else None
3627
+ )
3628
+ _avs=(
3629
+ self.avs
3630
+ if hasattr(self, "avs")
3631
+ else None
3632
+ )
3633
+ _avs_enhanced=(
3634
+ self.avs_enhanced
3635
+ if hasattr(self, "avs_enhanced")
3636
+ else None
3637
+ )
3638
+ _cardholder_present=(
3639
+ self.cardholder_present
3640
+ if hasattr(self, "cardholder_present")
3641
+ else None
3642
+ )
3643
+ _card_present=(
3644
+ self.card_present
3645
+ if hasattr(self, "card_present")
3646
+ else None
3647
+ )
3648
+ _check_number=(
3649
+ self.check_number
3650
+ if hasattr(self, "check_number")
3651
+ else None
3652
+ )
3653
+ _customer_ip=(
3654
+ self.customer_ip
3655
+ if hasattr(self, "customer_ip")
3656
+ else None
3657
+ )
3658
+ _cvv_response=(
3659
+ self.cvv_response
3660
+ if hasattr(self, "cvv_response")
3661
+ else None
3662
+ )
3663
+ _entry_mode_id=(
3664
+ self.entry_mode_id
3665
+ if hasattr(self, "entry_mode_id")
3666
+ else None
3667
+ )
3668
+ _emv_receipt_data=(
3669
+ self.emv_receipt_data
3670
+ if hasattr(self, "emv_receipt_data")
3671
+ else None
3672
+ )
3673
+ _first_six=(
3674
+ self.first_six
3675
+ if hasattr(self, "first_six")
3676
+ else None
3677
+ )
3678
+ _last_four=(
3679
+ self.last_four
3680
+ if hasattr(self, "last_four")
3681
+ else None
3682
+ )
3683
+ _payment_method=(
3684
+ self.payment_method
3685
+ if hasattr(self, "payment_method")
3686
+ else None
3687
+ )
3688
+ _terminal_serial_number=(
3689
+ self.terminal_serial_number
3690
+ if hasattr(self, "terminal_serial_number")
3691
+ else None
3692
+ )
3693
+ _transaction_settlement_status=(
3694
+ self.transaction_settlement_status
3695
+ if hasattr(self, "transaction_settlement_status")
3696
+ else None
3697
+ )
3698
+ _charge_back_date=(
3699
+ self.charge_back_date
3700
+ if hasattr(self, "charge_back_date")
3701
+ else None
3702
+ )
3703
+ _is_recurring=(
3704
+ self.is_recurring
3705
+ if hasattr(self, "is_recurring")
3706
+ else None
3707
+ )
3708
+ _notification_email_sent=(
3709
+ self.notification_email_sent
3710
+ if hasattr(self, "notification_email_sent")
3711
+ else None
3712
+ )
3713
+ _par=(
3714
+ self.par
3715
+ if hasattr(self, "par")
3716
+ else None
3717
+ )
3718
+ _reason_code_id=(
3719
+ self.reason_code_id
3720
+ if hasattr(self, "reason_code_id")
3721
+ else None
3722
+ )
3723
+ _recurring_id=(
3724
+ self.recurring_id
3725
+ if hasattr(self, "recurring_id")
3726
+ else None
3727
+ )
3728
+ _settle_date=(
3729
+ self.settle_date
3730
+ if hasattr(self, "settle_date")
3731
+ else None
3732
+ )
3733
+ _status_code=(
3734
+ self.status_code
3735
+ if hasattr(self, "status_code")
3736
+ else None
3737
+ )
3738
+ _transaction_batch_id=(
3739
+ self.transaction_batch_id
3740
+ if hasattr(self, "transaction_batch_id")
3741
+ else None
3742
+ )
3743
+ _type_id=(
3744
+ self.type_id
3745
+ if hasattr(self, "type_id")
3746
+ else None
3747
+ )
3748
+ _verbiage=(
3749
+ self.verbiage
3750
+ if hasattr(self, "verbiage")
3751
+ else None
3752
+ )
3753
+ _voucher_number=(
3754
+ self.voucher_number
3755
+ if hasattr(self, "voucher_number")
3756
+ else None
3757
+ )
3758
+ _void_date=(
3759
+ self.void_date
3760
+ if hasattr(self, "void_date")
3761
+ else None
3762
+ )
3763
+ _batch=(
3764
+ self.batch
3765
+ if hasattr(self, "batch")
3766
+ else None
3767
+ )
3768
+ _terms_agree=(
3769
+ self.terms_agree
3770
+ if hasattr(self, "terms_agree")
3771
+ else None
3772
+ )
3773
+ _response_message=(
3774
+ self.response_message
3775
+ if hasattr(self, "response_message")
3776
+ else None
3777
+ )
3778
+ _return_date=(
3779
+ self.return_date
3780
+ if hasattr(self, "return_date")
3781
+ else None
3782
+ )
3783
+ _trx_source_id=(
3784
+ self.trx_source_id
3785
+ if hasattr(self, "trx_source_id")
3786
+ else None
3787
+ )
3788
+ _routing_number=(
3789
+ self.routing_number
3790
+ if hasattr(self, "routing_number")
3791
+ else None
3792
+ )
3793
+ _trx_source_code=(
3794
+ self.trx_source_code
3795
+ if hasattr(self, "trx_source_code")
3796
+ else None
3797
+ )
3798
+ _paylink_id=(
3799
+ self.paylink_id
3800
+ if hasattr(self, "paylink_id")
3801
+ else None
3802
+ )
3803
+ _is_accountvault=(
3804
+ self.is_accountvault
3805
+ if hasattr(self, "is_accountvault")
3806
+ else None
3807
+ )
3808
+ _created_user_id=(
3809
+ self.created_user_id
3810
+ if hasattr(self, "created_user_id")
3811
+ else None
3812
+ )
3813
+ _modified_user_id=(
3814
+ self.modified_user_id
3815
+ if hasattr(self, "modified_user_id")
3816
+ else None
3817
+ )
3818
+ _transaction_code=(
3819
+ self.transaction_code
3820
+ if hasattr(self, "transaction_code")
3821
+ else None
3822
+ )
3823
+ _effective_date=(
3824
+ self.effective_date
3825
+ if hasattr(self, "effective_date")
3826
+ else None
3827
+ )
3828
+ _notification_phone=(
3829
+ self.notification_phone
3830
+ if hasattr(self, "notification_phone")
3831
+ else None
3832
+ )
3833
+ _cavv_result=(
3834
+ self.cavv_result
3835
+ if hasattr(self, "cavv_result")
3836
+ else None
3837
+ )
3838
+ _is_token=(
3839
+ self.is_token
3840
+ if hasattr(self, "is_token")
3841
+ else None
3842
+ )
3843
+ _account_vault_id=(
3844
+ self.account_vault_id
3845
+ if hasattr(self, "account_vault_id")
3846
+ else None
3847
+ )
3848
+ _hosted_payment_page_id=(
3849
+ self.hosted_payment_page_id
3850
+ if hasattr(self, "hosted_payment_page_id")
3851
+ else None
3852
+ )
3853
+ _stan=(
3854
+ self.stan
3855
+ if hasattr(self, "stan")
3856
+ else None
3857
+ )
3858
+ _currency=(
3859
+ self.currency
3860
+ if hasattr(self, "currency")
3861
+ else None
3862
+ )
3863
+ _card_bin=(
3864
+ self.card_bin
3865
+ if hasattr(self, "card_bin")
3866
+ else None
3867
+ )
3868
+ _wallet_type=(
3869
+ self.wallet_type
3870
+ if hasattr(self, "wallet_type")
3871
+ else None
3872
+ )
3873
+ _account_vault=(
3874
+ self.account_vault
3875
+ if hasattr(self, "account_vault")
3876
+ else None
3877
+ )
3878
+ _quick_invoice=(
3879
+ self.quick_invoice
3880
+ if hasattr(self, "quick_invoice")
3881
+ else None
3882
+ )
3883
+ _log_emails=(
3884
+ self.log_emails
3885
+ if hasattr(self, "log_emails")
3886
+ else None
3887
+ )
3888
+ _is_voidable=(
3889
+ self.is_voidable
3890
+ if hasattr(self, "is_voidable")
3891
+ else None
3892
+ )
3893
+ _is_reversible=(
3894
+ self.is_reversible
3895
+ if hasattr(self, "is_reversible")
3896
+ else None
3897
+ )
3898
+ _is_refundable=(
3899
+ self.is_refundable
3900
+ if hasattr(self, "is_refundable")
3901
+ else None
3902
+ )
3903
+ _is_completable=(
3904
+ self.is_completable
3905
+ if hasattr(self, "is_completable")
3906
+ else None
3907
+ )
3908
+ _is_settled=(
3909
+ self.is_settled
3910
+ if hasattr(self, "is_settled")
3911
+ else None
3912
+ )
3913
+ _created_user=(
3914
+ self.created_user
3915
+ if hasattr(self, "created_user")
3916
+ else None
3917
+ )
3918
+ _location=(
3919
+ self.location
3920
+ if hasattr(self, "location")
3921
+ else None
3922
+ )
3923
+ _contact=(
3924
+ self.contact
3925
+ if hasattr(self, "contact")
3926
+ else None
3927
+ )
3928
+ _changelogs=(
3929
+ self.changelogs
3930
+ if hasattr(self, "changelogs")
3931
+ else None
3932
+ )
3933
+ _product_transaction=(
3934
+ self.product_transaction
3935
+ if hasattr(self, "product_transaction")
3936
+ else None
3937
+ )
3938
+ _all_tags=(
3939
+ self.all_tags
3940
+ if hasattr(self, "all_tags")
3941
+ else None
3942
+ )
3943
+ _tag_transactions=(
3944
+ self.tag_transactions
3945
+ if hasattr(self, "tag_transactions")
3946
+ else None
3947
+ )
3948
+ _declined_recurring_notification=(
3949
+ self.declined_recurring_notification
3950
+ if hasattr(self, "declined_recurring_notification")
3951
+ else None
3952
+ )
3953
+ _payment_recurring_notification=(
3954
+ self.payment_recurring_notification
3955
+ if hasattr(self, "payment_recurring_notification")
3956
+ else None
3957
+ )
3958
+ _developer_company=(
3959
+ self.developer_company
3960
+ if hasattr(self, "developer_company")
3961
+ else None
3962
+ )
3963
+ _terminal=(
3964
+ self.terminal
3965
+ if hasattr(self, "terminal")
3966
+ else None
3967
+ )
3968
+ _hosted_payment_page=(
3969
+ self.hosted_payment_page
3970
+ if hasattr(self, "hosted_payment_page")
3971
+ else None
3972
+ )
3973
+ _transaction_level_3=(
3974
+ self.transaction_level_3
3975
+ if hasattr(self, "transaction_level_3")
3976
+ else None
3977
+ )
3978
+ _developer_company_id=(
3979
+ self.developer_company_id
3980
+ if hasattr(self, "developer_company_id")
3981
+ else None
3982
+ )
3983
+ _transaction_histories=(
3984
+ self.transaction_histories
3985
+ if hasattr(self, "transaction_histories")
3986
+ else None
3987
+ )
3988
+ _surcharge_transaction=(
3989
+ self.surcharge_transaction
3990
+ if hasattr(self, "surcharge_transaction")
3991
+ else None
3992
+ )
3993
+ _surcharge=(
3994
+ self.surcharge
3995
+ if hasattr(self, "surcharge")
3996
+ else None
3997
+ )
3998
+ _signature=(
3999
+ self.signature
4000
+ if hasattr(self, "signature")
4001
+ else None
4002
+ )
4003
+ _reason_code=(
4004
+ self.reason_code
4005
+ if hasattr(self, "reason_code")
4006
+ else None
4007
+ )
4008
+ _mtype=(
4009
+ self.mtype
4010
+ if hasattr(self, "mtype")
4011
+ else None
4012
+ )
4013
+ _status=(
4014
+ self.status
4015
+ if hasattr(self, "status")
4016
+ else None
4017
+ )
4018
+ _transaction_batch=(
4019
+ self.transaction_batch
4020
+ if hasattr(self, "transaction_batch")
4021
+ else None
4022
+ )
4023
+ _transaction_splits=(
4024
+ self.transaction_splits
4025
+ if hasattr(self, "transaction_splits")
4026
+ else None
4027
+ )
4028
+ _postback_logs=(
4029
+ self.postback_logs
4030
+ if hasattr(self, "postback_logs")
4031
+ else None
4032
+ )
4033
+ _currency_type=(
4034
+ self.currency_type
4035
+ if hasattr(self, "currency_type")
4036
+ else None
4037
+ )
4038
+ _transaction_references=(
4039
+ self.transaction_references
4040
+ if hasattr(self, "transaction_references")
4041
+ else None
4042
+ )
4043
+ _rejected_transaction_ach_retries=(
4044
+ self.rejected_transaction_ach_retries
4045
+ if hasattr(self, "rejected_transaction_ach_retries")
4046
+ else None
4047
+ )
4048
+ _return_fee_transaction_ach_retry=(
4049
+ self.return_fee_transaction_ach_retry
4050
+ if hasattr(self, "return_fee_transaction_ach_retry")
4051
+ else None
4052
+ )
4053
+ _retry_transaction_ach_retry=(
4054
+ self.retry_transaction_ach_retry
4055
+ if hasattr(self, "retry_transaction_ach_retry")
4056
+ else None
4057
+ )
4058
+ _is_retriable=(
4059
+ self.is_retriable
4060
+ if hasattr(self, "is_retriable")
4061
+ else None
4062
+ )
4063
+ _saved_account=(
4064
+ self.saved_account
4065
+ if hasattr(self, "saved_account")
4066
+ else None
4067
+ )
4068
+ _balances=(
4069
+ self.balances
4070
+ if hasattr(self, "balances")
4071
+ else None
4072
+ )
4073
+ _additional_properties=self.additional_properties
4074
+ return (
4075
+ f"{self.__class__.__name__}("
4076
+ f"additional_amounts={_additional_amounts!s}, "
4077
+ f"billing_address={_billing_address!s}, "
4078
+ f"checkin_date={_checkin_date!s}, "
4079
+ f"checkout_date={_checkout_date!s}, "
4080
+ f"clerk_number={_clerk_number!s}, "
4081
+ f"contact_api_id={_contact_api_id!s}, "
4082
+ f"contact_id={_contact_id!s}, "
4083
+ f"custom_data={_custom_data!s}, "
4084
+ f"customer_id={_customer_id!s}, "
4085
+ f"description={_description!s}, "
4086
+ f"iias_ind={_iias_ind!s}, "
4087
+ f"image_front={_image_front!s}, "
4088
+ f"image_back={_image_back!s}, "
4089
+ f"installment={_installment!s}, "
4090
+ f"installment_number={_installment_number!s}, "
4091
+ f"installment_count={_installment_count!s}, "
4092
+ f"recurring_flag={_recurring_flag!s}, "
4093
+ f"installment_counter={_installment_counter!s}, "
4094
+ f"installment_total={_installment_total!s}, "
4095
+ f"subscription={_subscription!s}, "
4096
+ f"standing_order={_standing_order!s}, "
4097
+ f"location_api_id={_location_api_id!s}, "
4098
+ f"location_id={_location_id!s}, "
4099
+ f"product_transaction_id={_product_transaction_id!s}, "
4100
+ f"advance_deposit={_advance_deposit!s}, "
4101
+ f"no_show={_no_show!s}, "
4102
+ f"notification_email_address={_notification_email_address!s}, "
4103
+ f"order_number={_order_number!s}, "
4104
+ f"po_number={_po_number!s}, "
4105
+ f"quick_invoice_id={_quick_invoice_id!s}, "
4106
+ f"recurring={_recurring!s}, "
4107
+ f"recurring_number={_recurring_number!s}, "
4108
+ f"room_num={_room_num!s}, "
4109
+ f"room_rate={_room_rate!s}, "
4110
+ f"save_account={_save_account!s}, "
4111
+ f"save_account_title={_save_account_title!s}, "
4112
+ f"subtotal_amount={_subtotal_amount!s}, "
4113
+ f"surcharge_amount={_surcharge_amount!s}, "
4114
+ f"tags={_tags!s}, "
4115
+ f"tax={_tax!s}, "
4116
+ f"tip_amount={_tip_amount!s}, "
4117
+ f"transaction_amount={_transaction_amount!s}, "
4118
+ f"secondary_amount={_secondary_amount!s}, "
4119
+ f"transaction_api_id={_transaction_api_id!s}, "
4120
+ f"transaction_c_1={_transaction_c_1!s}, "
4121
+ f"transaction_c_2={_transaction_c_2!s}, "
4122
+ f"transaction_c_3={_transaction_c_3!s}, "
4123
+ f"bank_funded_only_override={_bank_funded_only_override!s}, "
4124
+ f"allow_partial_authorization_override={_allow_partial_authorization_override!s}, "
4125
+ f"auto_decline_cvv_override={_auto_decline_cvv_override!s}, "
4126
+ f"auto_decline_street_override={_auto_decline_street_override!s}, "
4127
+ f"auto_decline_zip_override={_auto_decline_zip_override!s}, "
4128
+ f"ebt_type={_ebt_type!s}, "
4129
+ f"currency_code={_currency_code!s}, "
4130
+ f"id={_id!s}, "
4131
+ f"created_ts={_created_ts!s}, "
4132
+ f"modified_ts={_modified_ts!s}, "
4133
+ f"terminal_id={_terminal_id!s}, "
4134
+ f"account_holder_name={_account_holder_name!s}, "
4135
+ f"account_type={_account_type!s}, "
4136
+ f"token_api_id={_token_api_id!s}, "
4137
+ f"token_id={_token_id!s}, "
4138
+ f"ach_identifier={_ach_identifier!s}, "
4139
+ f"ach_sec_code={_ach_sec_code!s}, "
4140
+ f"auth_amount={_auth_amount!s}, "
4141
+ f"auth_code={_auth_code!s}, "
4142
+ f"avs={_avs!s}, "
4143
+ f"avs_enhanced={_avs_enhanced!s}, "
4144
+ f"cardholder_present={_cardholder_present!s}, "
4145
+ f"card_present={_card_present!s}, "
4146
+ f"check_number={_check_number!s}, "
4147
+ f"customer_ip={_customer_ip!s}, "
4148
+ f"cvv_response={_cvv_response!s}, "
4149
+ f"entry_mode_id={_entry_mode_id!s}, "
4150
+ f"emv_receipt_data={_emv_receipt_data!s}, "
4151
+ f"first_six={_first_six!s}, "
4152
+ f"last_four={_last_four!s}, "
4153
+ f"payment_method={_payment_method!s}, "
4154
+ f"terminal_serial_number={_terminal_serial_number!s}, "
4155
+ f"transaction_settlement_status={_transaction_settlement_status!s}, "
4156
+ f"charge_back_date={_charge_back_date!s}, "
4157
+ f"is_recurring={_is_recurring!s}, "
4158
+ f"notification_email_sent={_notification_email_sent!s}, "
4159
+ f"par={_par!s}, "
4160
+ f"reason_code_id={_reason_code_id!s}, "
4161
+ f"recurring_id={_recurring_id!s}, "
4162
+ f"settle_date={_settle_date!s}, "
4163
+ f"status_code={_status_code!s}, "
4164
+ f"transaction_batch_id={_transaction_batch_id!s}, "
4165
+ f"type_id={_type_id!s}, "
4166
+ f"verbiage={_verbiage!s}, "
4167
+ f"voucher_number={_voucher_number!s}, "
4168
+ f"void_date={_void_date!s}, "
4169
+ f"batch={_batch!s}, "
4170
+ f"terms_agree={_terms_agree!s}, "
4171
+ f"response_message={_response_message!s}, "
4172
+ f"return_date={_return_date!s}, "
4173
+ f"trx_source_id={_trx_source_id!s}, "
4174
+ f"routing_number={_routing_number!s}, "
4175
+ f"trx_source_code={_trx_source_code!s}, "
4176
+ f"paylink_id={_paylink_id!s}, "
4177
+ f"is_accountvault={_is_accountvault!s}, "
4178
+ f"created_user_id={_created_user_id!s}, "
4179
+ f"modified_user_id={_modified_user_id!s}, "
4180
+ f"transaction_code={_transaction_code!s}, "
4181
+ f"effective_date={_effective_date!s}, "
4182
+ f"notification_phone={_notification_phone!s}, "
4183
+ f"cavv_result={_cavv_result!s}, "
4184
+ f"is_token={_is_token!s}, "
4185
+ f"account_vault_id={_account_vault_id!s}, "
4186
+ f"hosted_payment_page_id={_hosted_payment_page_id!s}, "
4187
+ f"stan={_stan!s}, "
4188
+ f"currency={_currency!s}, "
4189
+ f"card_bin={_card_bin!s}, "
4190
+ f"wallet_type={_wallet_type!s}, "
4191
+ f"account_vault={_account_vault!s}, "
4192
+ f"quick_invoice={_quick_invoice!s}, "
4193
+ f"log_emails={_log_emails!s}, "
4194
+ f"is_voidable={_is_voidable!s}, "
4195
+ f"is_reversible={_is_reversible!s}, "
4196
+ f"is_refundable={_is_refundable!s}, "
4197
+ f"is_completable={_is_completable!s}, "
4198
+ f"is_settled={_is_settled!s}, "
4199
+ f"created_user={_created_user!s}, "
4200
+ f"location={_location!s}, "
4201
+ f"contact={_contact!s}, "
4202
+ f"changelogs={_changelogs!s}, "
4203
+ f"product_transaction={_product_transaction!s}, "
4204
+ f"all_tags={_all_tags!s}, "
4205
+ f"tag_transactions={_tag_transactions!s}, "
4206
+ f"declined_recurring_notification={_declined_recurring_notification!s}, "
4207
+ f"payment_recurring_notification={_payment_recurring_notification!s}, "
4208
+ f"developer_company={_developer_company!s}, "
4209
+ f"terminal={_terminal!s}, "
4210
+ f"hosted_payment_page={_hosted_payment_page!s}, "
4211
+ f"transaction_level_3={_transaction_level_3!s}, "
4212
+ f"developer_company_id={_developer_company_id!s}, "
4213
+ f"transaction_histories={_transaction_histories!s}, "
4214
+ f"surcharge_transaction={_surcharge_transaction!s}, "
4215
+ f"surcharge={_surcharge!s}, "
4216
+ f"signature={_signature!s}, "
4217
+ f"reason_code={_reason_code!s}, "
4218
+ f"mtype={_mtype!s}, "
4219
+ f"status={_status!s}, "
4220
+ f"transaction_batch={_transaction_batch!s}, "
4221
+ f"transaction_splits={_transaction_splits!s}, "
4222
+ f"postback_logs={_postback_logs!s}, "
4223
+ f"currency_type={_currency_type!s}, "
4224
+ f"transaction_references={_transaction_references!s}, "
4225
+ f"rejected_transaction_ach_retries={_rejected_transaction_ach_retries!s}, "
4226
+ f"return_fee_transaction_ach_retry={_return_fee_transaction_ach_retry!s}, "
4227
+ f"retry_transaction_ach_retry={_retry_transaction_ach_retry!s}, "
4228
+ f"is_retriable={_is_retriable!s}, "
4229
+ f"saved_account={_saved_account!s}, "
4230
+ f"balances={_balances!s}, "
4231
+ f"additional_properties={_additional_properties!s}, "
4232
+ f")"
4233
+ )