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,3196 @@
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.additional_amount import (
9
+ AdditionalAmount,
10
+ )
11
+ from fortisapi.models.billing_address_1 import (
12
+ BillingAddress1,
13
+ )
14
+ from fortisapi.models.emv_receipt_data import (
15
+ EmvReceiptData,
16
+ )
17
+ from fortisapi.models.identity_verification import (
18
+ IdentityVerification,
19
+ )
20
+
21
+
22
+ class Transaction(object):
23
+ """Implementation of the 'Transaction' model.
24
+
25
+ Attributes:
26
+ additional_amounts (List[AdditionalAmount]): Additional amounts
27
+ billing_address (BillingAddress1): Billing Address Object
28
+ checkin_date (str): Checkin Date - The time difference between checkin_date
29
+ and checkout_date must be less than or equal to 99 days. NOTE: if
30
+ checkin_date is in the future, set the advance_deposit to 1 >Required if
31
+ merchant industry type is lodging. >
32
+ checkout_date (str): Checkout Date - The time difference between checkin_date
33
+ and checkout_date must be less than or equal to 99 days. >Required if
34
+ merchant industry type is lodging. >
35
+ clerk_number (str): Clerk or Employee Identifier
36
+ contact_api_id (str): This can be supplied in place of contact_id if you
37
+ would like to use a contact for the transaction and are using your own
38
+ custom api_id's to track contacts in the system.
39
+ contact_id (str): If contact_id is provided, ensure it belongs to the same
40
+ location as the transaction. You cannot move transaction across locations.
41
+ custom_data (Any): A field that allows custom JSON to be entered to store
42
+ extra data.
43
+ customer_id (str): Can be used by Merchants to identify Contacts in our
44
+ system by an ID from another system.
45
+ description (str): Description
46
+ identity_verification (IdentityVerification): Identity Verification
47
+ iias_ind (IiasIndEnum): Possible values are '0', '1','2'
48
+ image_front (str): A base64 encoded string for the image. Used with Check21
49
+ ACH transactions.
50
+ image_back (str): A base64 encoded string for the image. Used with Check21
51
+ ACH transactions.
52
+ installment (bool): Flag that is allowed to be passed on card not present
53
+ industries to signify the transaction is a fixed installment plan
54
+ transaction.
55
+ installment_number (int): If this is a fixed installment plan and installment
56
+ field is being passed as 1, then this field must have a vlue of 1-999
57
+ specifying the current installment number that is running.
58
+ installment_count (int): If this is a fixed installment plan and installment
59
+ field is being passed as 1, then this field must have a vlue of 1-999
60
+ specifying the total number of installments on the plan. This number must
61
+ be grater than or equal to installment_number.
62
+ recurring_flag (RecurringFlagEnum): Recurring Flag
63
+ installment_counter (int): Installment Counter
64
+ installment_total (int): Installment Total
65
+ subscription (bool): Subscription
66
+ standing_order (bool): Standing Order
67
+ location_api_id (str): This can be supplied in place of location_id for the
68
+ transaction if you are using your own custom api_id's for your locations.
69
+ location_id (str): A valid Location Id to associate the transaction with.
70
+ product_transaction_id (str): The Product's method (cc/ach) has to match the
71
+ action. If not provided, the API will use the default configured for the
72
+ Location.
73
+ advance_deposit (bool): Advance Deposit
74
+ no_show (bool): Used in Lodging
75
+ notification_email_address (str): If email is supplied then receipt will be
76
+ emailed
77
+ order_number (str): Required for CC transactions , if merchant's deposit
78
+ account's duplicate check per batch has 'order_number' field
79
+ po_number (str): Purchase Order number
80
+ quick_invoice_id (str): Can be used to associate a transaction to a Quick
81
+ Invoice. Quick Invoice transactions will have a value for this field
82
+ automatically.
83
+ recurring (bool): Flag that is allowed to be passed on card not present
84
+ industries to signify the transaction is an ongoing recurring
85
+ transaction. Possible values to send are 0 or 1. This field must be 0 or
86
+ not present if installment is sent as 1.
87
+ recurring_number (int): If this is an ongoing recurring and recurring field
88
+ is being passed as 1, then this field must have a vlue of 1-999
89
+ specifying the current recurring number that is running.
90
+ room_num (str): Used in Lodging
91
+ room_rate (int): Required if merchant industry type is lodging.
92
+ save_account (bool): Specifies to save account to contacts profile if
93
+ account_number/track_data is present with either contact_id or
94
+ contact_api_id in params.
95
+ save_account_title (str): If saving token while running a transaction, this
96
+ will be the title of the token.
97
+ subtotal_amount (int): This field is allowed and required for transactions
98
+ that have a product where surcharge is configured. Use only integer
99
+ numbers, so $10.99 will be 1099.
100
+ surcharge_amount (int): This field is allowed and required for transactions
101
+ that have a product where surcharge is configured. Use only integer
102
+ numbers, so $10.99 will be 1099.
103
+ tags (List[str]): Tags
104
+ tax (int): The total tax amount for the transaction, including any tax on the
105
+ surcharge (Extra Tax).
106
+ tip_amount (int): Optional tip amount. Tip is not supported for lodging and
107
+ ecommerce merchants. Use only integer numbers, so $10.99 will be 1099.
108
+ transaction_amount (int): Amount of the transaction. This should always be
109
+ the desired settle amount of the transaction. Use only integer numbers,
110
+ so $10.99 will be 1099.
111
+ secondary_amount (int): Retained Amount of the transaction. This should
112
+ always be less than transaction amount. Use only integer numbers, so
113
+ $10.99 will be 1099
114
+ transaction_api_id (str): See api_id page for more details
115
+ transaction_c_1 (str): Custom field 1 for api users to store custom data
116
+ transaction_c_2 (str): Custom field 2 for api users to store custom data
117
+ transaction_c_3 (str): Custom field 3 for api users to store custom data
118
+ bank_funded_only_override (bool): Bank Funded Only Override
119
+ allow_partial_authorization_override (bool): Allow Partial Authorization
120
+ Override
121
+ auto_decline_cvv_override (bool): Auto Decline CVV Override
122
+ auto_decline_street_override (bool): Auto Decline Street Override
123
+ auto_decline_zip_override (bool): Auto Decline Zip Override
124
+ ebt_type (EbtTypeEnum): EBT Type
125
+ currency_code (CurrencyCodeEnum): The currency code, in ISO 4217 format. It
126
+ can be either the 3-letter code (e.g., USD) or the numeric code (e.g.,
127
+ 840).
128
+ id (str): Transaction ID
129
+ created_ts (int): Created Time Stamp
130
+ modified_ts (int): Modified Time Stamp
131
+ terminal_id (str): Terminal ID
132
+ account_holder_name (str): For CC, this is the 'Name (as it appears) on
133
+ Card'. For ACH, this is the 'Name on Account'. >Required for ACH
134
+ transactions if account_vault_id is not provided. For CC transactions
135
+ that are run through a terminal, this field may be overwritten by data
136
+ acquired from the credit card track data. >
137
+ account_type (str): Required for ACH transactions if account_vault_id is not
138
+ provided. >For ACH, allowed values are 'checking' or 'savings'. For CC,
139
+ this field is read only. The system will identify card type and generate
140
+ a value for this field automatically. possible values are: visa, mc,
141
+ disc, amex, jcb, diners, and debit. >
142
+ token_api_id (str): This can be supplied in place of account_vault_id if you
143
+ would like to use an token for the transaction and are using your own
144
+ custom api_id's to track accountvaults in the system.
145
+ token_id (str): Required if account_number, track_data, micr_data is not
146
+ provided.
147
+ ach_identifier (str): Required for ACH transactions in certain scenarios.
148
+ ach_sec_code (AchSecCode1Enum): Required for ACH transactions if
149
+ account_vault_id is not provided.
150
+ auth_amount (int): Authorization Amount
151
+ auth_code (str): Required on force transactions and EBT voucher clear
152
+ sale/refund. Ignored for all other actions.
153
+ avs (AvsEnum): AVS
154
+ avs_enhanced (str): AVS Enhanced
155
+ cardholder_present (bool): If the cardholder is present at the point of
156
+ service
157
+ card_present (bool): A POST only field to specify whether or not the card is
158
+ present. >This field will be defaulted to '1' for all card present
159
+ industries (retail, lodging, restaurant) and '0' for card not present
160
+ industries (MOTO/e-commerce). For lodging, if the no_show flag is set to
161
+ '1', this field will automatically be set to '0'. For transactions where
162
+ account_vault_id is used, this filed will be set to '0'. >
163
+ check_number (str): Required for transactions using TEL SEC code.
164
+ customer_ip (str): Can be used to store customer IP Address
165
+ cvv_response (str): Obfuscated CVV
166
+ entry_mode_id (EntryModeIdEnum): Entry Mode - See entry mode section for more
167
+ detail
168
+ emv_receipt_data (EmvReceiptData): This field is a read only field. This
169
+ field will only be populated for EMV transactions and will contain proper
170
+ JSON formatted data with some or all of the following fields:
171
+ TC,TVR,AID,TSI,ATC,APPLAB,APPN,CVM
172
+ first_six (str): First six numbers of account_number. Automatically
173
+ generated by system.
174
+ last_four (str): Last four numbers of account_number. Automatically
175
+ generated by the system.
176
+ payment_method (PaymentMethod9Enum): 'cc' or 'ach'
177
+ terminal_serial_number (str): If transaction was processed using a terminal,
178
+ this field would contain the terminal's serial number
179
+ transaction_settlement_status (str): (Deprecated field)
180
+ charge_back_date (str): Charge Back Date (ACH Trxs)
181
+ is_recurring (bool): Flag that is allowed to be passed on card not present
182
+ industries to signify the transaction is a fixed installment plan
183
+ transaction.
184
+ notification_email_sent (bool): Indicates if email receipt has been sent
185
+ par (str): A field usually returned form the processor to uniquely identifier
186
+ a specific cardholder's credit card.
187
+ reason_code_id (ReasonCodeId1Enum): Response reason code that provides more
188
+ detail as to the result of the transaction. The reason code list can be
189
+ found here: Response Reason Codes >0 - N/A > >1000 - CC - Approved / ACH
190
+ - Accepted > >1000 - CC - Approved / ACH - Accepted > >1001 -
191
+ AuthCompleted > >1002 - Forced > >1003 - AuthOnly Declined > >1004 -
192
+ Validation Failure (System Run Trx) > >1005 - Processor Response Invalid
193
+ > >1200 - Voided > >1201 - Partial Approval > >1240 - Approved, optional
194
+ fields are missing (Paya ACH only) > >1301 - Account Deactivated for
195
+ Fraud > >1302-1399 - Reserved for Future Fraud Reason Codes > >1500 -
196
+ Generic Decline > >1510 - Call > >1518 - Transaction Not Permitted -
197
+ Terminal > >1520 - Pickup Card > >1530 - Retry Trx > >1531 -
198
+ Communication Error > >1540 - Setup Issue, contact Support > >1541 -
199
+ Device is not signature capable > >1588 - Data could not be de-tokenized
200
+ > >1599 - Other Reason > >1601 - Generic Decline > >1602 - Call > >1603 -
201
+ No Reply > >1604 - Pickup Card - No Fraud > >1605 - Pickup Card - Fraud >
202
+ >1606 - Pickup Card - Lost > >1607 - Pickup Card - Stolen > >1608 -
203
+ Account Error > >1609 - Already Reversed > >1610 - Bad PIN > >1611 -
204
+ Cashback Exceeded > >1612 - Cashback Not Available > >1613 - CID Error >
205
+ >1614 - Date Error > >1615 - Do Not Honor > >1616 - NSF > >1618 - Invalid
206
+ Service Code > >1619 - Exceeded activity limit > >1620 - Violation >
207
+ >1621 - Encryption Error > >1622 - Card Expired > >1623 - Renter > >1624
208
+ - Security Violation > >1625 - Card Not Permitted > >1626 - Trans Not
209
+ Permitted > >1627 - System Error > >1628 - Bad Merchant ID > >1629 -
210
+ Duplicate Batch (Already Closed) > >1630 - Batch Rejected > >1631 -
211
+ Account Closed > >1632 - PIN tries exceeded > > > > > > > > > > > > > > >
212
+ >1640 - Required fields are missing (ACH only) > >1641 - Previously
213
+ declined transaction (1640) > > > > > > > > > > > > > > > > > >1650 -
214
+ Contact Support > >1651 - Max Sending - Throttle Limit Hit (ACH only) >
215
+ >1652 - Max Attempts Exceeded > >1653 - Contact Support > >1654 - Voided
216
+ - Online Reversal Failed > >1655 - Decline (AVS Auto Reversal) > >1656 -
217
+ Decline (CVV Auto Reversal) > >1657 - Decline (Partial Auth Auto
218
+ Reversal) > >1658 - Expired Authorization > >1659 - Declined - Partial
219
+ Approval not Supported > >1660 - Bank Account Error, please delete and
220
+ re-add Token > >1661 - Declined AuthIncrement > >1662 - Auto Reversal -
221
+ Processor can't settle > >1663 - Manager Needed (Needs override
222
+ transaction) > >1664 - Token Not Found: Sharing Group Unavailable > >1665
223
+ - Contact Not Found: Sharing Group Unavailable > >1666 - Amount Error >
224
+ >1667 - Action Not Allowed in Current State > >1668 - Original
225
+ Authorization Not Valid > >1701 - Chip Reject > >1800 - Incorrect CVV >
226
+ >1801 - Duplicate Transaction > >1802 - MID/TID Not Registered > >1803 -
227
+ Stop Recurring > >1804 - No Transactions in Batch > >1805 - Batch Does
228
+ Not Exist > > > **ACH Reject Reason Codes** | Code | E-Code | Verbiage
229
+ | Short Description | Long Description | | ----------- | ----------- |
230
+ ----------- | ----------- | ----------- | | 2101 | Rejected-R01 | |
231
+ Insufficient funds | Available balance is not sufficient to cover the
232
+ amount of the debit entry | | 2102 | Rejected-R02 | E02 | Bank account
233
+ closed | Previously active amount has been closed by the customer of RDFI
234
+ | | 2103 | Rejected-R03 | E03 | No bank account/unable to locate account
235
+ | Account number does not correspond to the individual identified in the
236
+ entry, or the account number designated is not an open account | | 2104 |
237
+ Rejected-R04 | E04 | Invalid bank account number | Account number
238
+ structure is not valid | | 2105 | Rejected-R05 | E05 | Reserved |
239
+ Currently not in use | | 2106 | Rejected-R06 | | Returned per ODFI
240
+ request | ODFI requested the RDFI to return the entry | | 2107 |
241
+ Rejected-R07 | E07 | Authorization revoked by customer | Receiver has
242
+ revoked authorization | | 2108 | Rejected-R08 | E08 | Payment stopped |
243
+ Receiver of a recurring debit has stopped payment of an entry | | 2109 |
244
+ Rejected-R09 | | Uncollected funds | Collected funds are not sufficient
245
+ for payment of the debit entry | | 2110 | Rejected-R10 | E10 | Customer
246
+ Advises Originator is Not Known to Receiver and/or Is Not Authorized by
247
+ Receiver to Debit Receiver’s Account | Receiver has advised RDFI that
248
+ originator is not authorized to debit his bank account | | 2111 |
249
+ Rejected-R11 | | Customer Advises Entry Not In Accordance with the Terms
250
+ of the Authorization | To be used when there is an error in the
251
+ authorization | | 2112 | Rejected-R12 | | Branch sold to another RDFI |
252
+ RDFI unable to post entry destined for a bank account maintained at a
253
+ branch sold to another financial institution | | 2113 | Rejected-R13 | |
254
+ RDFI not qualified to participate | Financial institution does not
255
+ receive commercial ACH entries | | 2114 | Rejected-R14 | E14 |
256
+ Representative payee deceased or unable to continue in that capacity |
257
+ The representative payee authorized to accept entries on behalf of a
258
+ beneficiary is either deceased or unable to continue in that capacity | |
259
+ 2115 | Rejected-R15 | E15 | Beneficiary or bank account holder deceased |
260
+ (Other than representative payee) deceased* - (1) the beneficiary
261
+ entitled to payments is deceased or (2) the bank account holder other
262
+ than a representative payee is deceased | | 2116 | Rejected-R16 | E16 |
263
+ Bank account frozen | Funds in bank account are unavailable due to action
264
+ by RDFI or legal order | | 2117 | Rejected-R17 | | File record edit
265
+ criteria | Entry with Invalid Account Number Initiated Under Questionable
266
+ Circumstances | | 2118 | Rejected-R18 | | Improper effective entry date
267
+ | Entries have been presented prior to the first available processing
268
+ window for the effective date. | | 2119 | Rejected-R19 | | Amount field
269
+ error | Improper formatting of the amount field | | 2120 | Rejected-R20 |
270
+ | Non-payment bank account | Entry destined for non-payment bank account
271
+ defined by reg. | | 2121 | Rejected-R21 | | Invalid company
272
+ Identification | The company ID information not valid (normally CIE
273
+ entries) | | 2122 | Rejected-R22 | | Invalid individual ID number |
274
+ Individual id used by receiver is incorrect (CIE entries) | | 2123 |
275
+ Rejected-R23 | | Credit entry refused by receiver | Receiver returned
276
+ entry because minimum or exact amount not remitted, bank account is
277
+ subject to litigation, or payment represents an overpayment, originator
278
+ is not known to receiver or receiver has not authorized this credit entry
279
+ to this bank account | | 2124 | Rejected-R24 | | Duplicate entry | RDFI
280
+ has received a duplicate entry | | 2125 | Rejected-R25 | | Addenda error
281
+ | Improper formatting of the addenda record information | | 2126 |
282
+ Rejected-R26 | | Mandatory field error | Improper information in one of
283
+ the mandatory fields | | 2127 | Rejected-R27 | | Trace number error |
284
+ Original entry trace number is not valid for return entry; or addenda
285
+ trace numbers do not correspond with entry detail record | | 2128 |
286
+ Rejected-R28 | | Transit routing number check digit error | Check digit
287
+ for the transit routing number is incorrect | | 2129 | Rejected-R29 | E29
288
+ | Corporate customer advises not authorized | RDFI has been notified by
289
+ corporate receiver that debit entry of originator is not authorized | |
290
+ 2130 | Rejected-R30 | | RDFI not participant in check truncation program
291
+ | Financial institution not participating in automated check safekeeping
292
+ application | | 2131 | Rejected-R31 | | Permissible return entry (CCD
293
+ and CTX only) | RDFI has been notified by the ODFI that it agrees to
294
+ accept a CCD or CTX return entry | | 2132 | Rejected-R32 | | RDFI
295
+ non-settlement | RDFI is not able to settle the entry | | 2133 |
296
+ Rejected-R33 | | Return of XCK entry | RDFI determines at its sole
297
+ discretion to return an XCK entry; an XCK return entry may be initiated
298
+ by midnight of the sixtieth day following the settlement date if the XCK
299
+ entry | | 2134 | Rejected-R34 | | Limited participation RDFI | RDFI
300
+ participation has been limited by a federal or state supervisor | | 2135
301
+ | Rejected-R35 | | Return of improper debit entry | ACH debit not
302
+ permitted for use with the CIE standard entry class code (except for
303
+ reversals) | | 2136 | Rejected-R36 | | Return of Improper Credit Entry |
304
+ | | 2137 | Rejected-R37 | | Source Document Presented for Payment | | |
305
+ 2138 | Rejected-R38 | | Stop Payment on Source Document | | | 2139 |
306
+ Rejected-R39 | | Improper Source Document | | | 2140 | Rejected-R40 |
307
+ | Return of ENR Entry by Federal Government Agency | | | 2141 |
308
+ Rejected-R41 | | Invalid Transaction Code | | | 2142 | Rejected-R42 |
309
+ | Routing Number/Check Digit Error | | | 2143 | Rejected-R43 | |
310
+ Invalid DFI Account Number | | | 2144 | Rejected-R44 | | Invalid
311
+ Individual ID Number/Identification | | | 2145 | Rejected-R45 | |
312
+ Invalid Individual Name/Company Name | | | 2146 | Rejected-R46 | |
313
+ Invalid Representative Payee Indicator | | | 2147 | Rejected-R47 | |
314
+ Duplicate Enrollment | | | 2150 | Rejected-R50 | | State Law Affecting
315
+ RCK Acceptance | | | 2151 | Rejected-R51 | | Item is Ineligible, Notice
316
+ Not Provided, etc. | | | 2152 | Rejected-R52 | | Stop Payment on Item
317
+ (adjustment entries) | | | 2153 | Rejected-R53 | | Item and ACH Entry
318
+ Presented for Payment | | | 2161 | Rejected-R61 | | Misrouted Return |
319
+ | | 2162 | Rejected-R62 | | Incorrect Trace Number | | | 2163 |
320
+ Rejected-R63 | | Incorrect Dollar Amount | | | 2164 | Rejected-R64 | |
321
+ Incorrect Individual Identification | | | 2165 | Rejected-R65 | |
322
+ Incorrect Transaction Code | | | 2166 | Rejected-R66 | | Incorrect
323
+ Company Identification | | | 2167 | Rejected-R67 | | Duplicate Return |
324
+ | | 2168 | Rejected-R68 | | Untimely Return | | | 2169 | Rejected-R69 |
325
+ | Multiple Errors | | | 2170 | Rejected-R70 | | Permissible Return
326
+ Entry Not Accepted | | | 2171 | Rejected-R71 | | Misrouted Dishonored
327
+ Return | | | 2172 | Rejected-R72 | | Untimely Dishonored Return | | |
328
+ 2173 | Rejected-R73 | | Timely Original Return | | | 2174 |
329
+ Rejected-R74 | | Corrected Return | | | 2180 | Rejected-R80 | |
330
+ Cross-Border Payment Coding Error | | | 2181 | Rejected-R81 | |
331
+ Non-Participant in Cross-Border Program | | | 2182 | Rejected-R82 | |
332
+ Invalid Foreign Receiving DFI Identification | | | 2183 | Rejected-R83 |
333
+ | Foreign Receiving DFI Unable to Settle | | | 2200 | Voided | |
334
+ Processor Void | The transaction was voided by the processor before being
335
+ sent to the bank | | 2201 | Rejected-C01 | | | | | 2202 | Rejected-C02
336
+ | | | | | 2203 | Rejected-C03 | | | | | 2204 | Rejected-C04 | | |
337
+ | | 2205 | Rejected-C05 | | | | | 2206 | Rejected-C06 | | | | |
338
+ 2207 | Rejected-C07 | | | | | 2208 | Rejected-C08 | | | | | 2209 |
339
+ Rejected-C09 | | | | | 2210 | Rejected-C10 | | | | | 2211 |
340
+ Rejected-C11 | | | | | 2212 | Rejected-C12 | | | | | 2213 |
341
+ Rejected-C13 | | | | | 2261 | Rejected-C61 | | | | | 2262 |
342
+ Rejected-C62 | | | | | 2263 | Rejected-C63 | | | | | 2264 |
343
+ Rejected-C64 | | | | | 2265 | Rejected-C65 | | | | | 2266 |
344
+ Rejected-C66 | | | | | 2267 | Rejected-C67 | | | | | 2268 |
345
+ Rejected-C68 | | | | | 2269 | Rejected-C69 | | | | | 2301 |
346
+ Rejected-X01 | | Misc Check 21 Return | | | 2304 | Rejected-X04 | |
347
+ Invalid Image | | | 2305 | Rejected-X05 | E95 | Breach of Warranty | |
348
+ | 2306 | Rejected-X06 | E96 | Counterfeit / Forgery | | | 2307 |
349
+ Rejected-X07 | E97 | Refer to Maker | | | 2308 | Rejected-X08 | |
350
+ Maximum Payment Attempts | | | 2309 | Rejected-X09 | | Item Cannot be
351
+ Re-presented | | | 2310 | Rejected-X10 | | Not Our Item | | | 2321 |
352
+ Rejected-X21 | | Pay None | | | 2322 | Rejected-X22 | | Pay All | | |
353
+ 2323 | Rejected-X23 | E93 | Non-Negotiable | | | 2329 | Rejected-X29 |
354
+ | Stale Dated | | | 2345 | Rejected-X45 | | Misc Return | | | 2371 |
355
+ Rejected-X71 | | RCK - 2nd Time | | | 2372 | Rejected-X72 | | RCK
356
+ Reject - ACH | | | 2373 | Rejected-X73 | | RCK Reject - Payer | |
357
+ recurring_id (str): A unique identifer used to associate a transaction with a
358
+ Recurring.
359
+ settle_date (str): Settle date
360
+ status_code (StatusCode17Enum): Status ID - See status id section for more
361
+ detail >101 - Sale cc Approved > >102 - Sale cc AuthOnly > >111 - Refund
362
+ cc Refunded > >121 - Credit/Debit/Refund cc AvsOnly > >131 -
363
+ Credit/Debit/Refund ach Pending Origination > >132 - Credit/Debit/Refund
364
+ ach Originating > >133 - Credit/Debit/Refund ach Originated > >134 -
365
+ Credit/Debit/Refund ach Settled > >191 - Settled (depracated - batches
366
+ are now settled on the /v2/transactionbatches endpoint) > >201 - All
367
+ cc/ach Voided > >301 - All cc/ach Declined > >331 - Credit/Debit/Refund
368
+ ach Charged Back >
369
+ transaction_batch_id (str): For cc transactions, this is the id of the batch
370
+ the transaction belongs to (not to be confused with batch number). This
371
+ will be null for transactions that do not settle (void and authonly).
372
+ type_id (TypeIdEnum): Type ID - See type id section for more detail
373
+ verbiage (str): Verbiage -Do not use verbiage to see if the transaction was
374
+ approved, use status_id
375
+ voucher_number (str): Voucher Number
376
+ void_date (str): void date
377
+ batch (str): Batch
378
+ terms_agree (bool): Terms Agreement
379
+ response_message (str): Response Message
380
+ return_date (str): Return Date
381
+ trx_source_id (TrxSourceIdEnum): How the transaction was obtained by the API.
382
+ >1 - Unknown - The origination of this transaction could not be
383
+ determined. > >2 - Mobile - The origination of this transaction is
384
+ through the mobile application. This is always a merchant submitted
385
+ payment. > >3 - Web - The origination of this transaction is through a
386
+ web browser. This is always a merchant submitted payment. Examples
387
+ include Virtual Terminal, Contact Charge, and Transaction Details - Run
388
+ Again pages. > >4 - IVR Transaction - The origination of this transaction
389
+ is over the phone. This payment is submitted by an automated system
390
+ initiated by the cardholder. > >5 - Contact Statement - The orignation of
391
+ this transaction is through a Vericle statement. > >6 - Contact Payment
392
+ Mobile - The origination of this transaction is through the mobile
393
+ application. This is always submitted by a contact user. > >7 - Contact
394
+ Payment - The origination of this transaction is through a web browser.
395
+ This is always submitted by a contact user. > >8 - Quick Invoice - The
396
+ orignation of this transaction is through a Quick Invoice. This is
397
+ typically submitted by a contact user, however the transaction can also
398
+ be submitted by a merchant. > >9 - Payform - The origination of this
399
+ transaction is through a Payform. This is typically a merchant submitted
400
+ transaction, and is always from an internal developer. > >10 - Hosted
401
+ Payment Page - The orignation of this transaction is through a Hosted
402
+ Payment Page. This is typically a cardholder submitted transaction. > >11
403
+ - Emulator - The origination of this transaction is through Auth.Net
404
+ emulator. This is typically submitted through an integration to a website
405
+ or a shopping cart. > >12 - Integration - The orignation of this
406
+ transaction is through an integrated solution. This will always be from
407
+ an external developer. > >13 - Recurring Billing - The orignation of this
408
+ transaction is through a scheduled recurring payment. This payment is
409
+ system-initiated based on a payment schedule that has been configured. >
410
+ >14 - Recurring Secondary - This feature has not been implented yet. >
411
+ >15 - Declined Recurring Email - The orignation of this transaction is
412
+ through the email notification sent when a recurring payment has been
413
+ declined. This is typically submitted by a cardholder. > >16 - Paylink -
414
+ The orignation of this transaction is through a Paylink. This is
415
+ typically submitted by a contact user, however the transaction can also
416
+ be submitted by a merchant. > >17 - Elements - The origination of this
417
+ transaction is through the Elements payments page. This can be a
418
+ cardholder submitted or a merchant submitted transaction. > >18 - ACH
419
+ Import - The origination of this transaction is through an ACH file
420
+ import. This is a merchant initiated process. >
421
+ routing_number (str): This field is read only for ach on transactions. Must
422
+ be supplied if account_vault_id is not provided.
423
+ trx_source_code (TrxSourceCodeEnum): How the transaction was obtained by the
424
+ API. >1 - Unknown - The origination of this transaction could not be
425
+ determined. > >2 - Mobile - The origination of this transaction is
426
+ through the mobile application. This is always a merchant submitted
427
+ payment. > >3 - Web - The origination of this transaction is through a
428
+ web browser. This is always a merchant submitted payment. Examples
429
+ include Virtual Terminal, Contact Charge, and Transaction Details - Run
430
+ Again pages. > >4 - IVR Transaction - The origination of this transaction
431
+ is over the phone. This payment is submitted by an automated system
432
+ initiated by the cardholder. > >5 - Contact Statement - The orignation of
433
+ this transaction is through a Vericle statement. > >6 - Contact Payment
434
+ Mobile - The origination of this transaction is through the mobile
435
+ application. This is always submitted by a contact user. > >7 - Contact
436
+ Payment - The origination of this transaction is through a web browser.
437
+ This is always submitted by a contact user. > >8 - Quick Invoice - The
438
+ orignation of this transaction is through a Quick Invoice. This is
439
+ typically submitted by a contact user, however the transaction can also
440
+ be submitted by a merchant. > >9 - Payform - The origination of this
441
+ transaction is through a Payform. This is typically a merchant submitted
442
+ transaction, and is always from an internal developer. > >10 - Hosted
443
+ Payment Page - The orignation of this transaction is through a Hosted
444
+ Payment Page. This is typically a cardholder submitted transaction. > >11
445
+ - Emulator - The origination of this transaction is through Auth.Net
446
+ emulator. This is typically submitted through an integration to a website
447
+ or a shopping cart. > >12 - Integration - The orignation of this
448
+ transaction is through an integrated solution. This will always be from
449
+ an external developer. > >13 - Recurring Billing - The orignation of this
450
+ transaction is through a scheduled recurring payment. This payment is
451
+ system-initiated based on a payment schedule that has been configured. >
452
+ >14 - Recurring Secondary - This feature has not been implented yet. >
453
+ >15 - Declined Recurring Email - The orignation of this transaction is
454
+ through the email notification sent when a recurring payment has been
455
+ declined. This is typically submitted by a cardholder. > >16 - Paylink -
456
+ The orignation of this transaction is through a Paylink. This is
457
+ typically submitted by a contact user, however the transaction can also
458
+ be submitted by a merchant. > >17 - Elements - The origination of this
459
+ transaction is through the Elements payments page. This can be a
460
+ cardholder submitted or a merchant submitted transaction. > >18 - ACH
461
+ Import - The origination of this transaction is through an ACH file
462
+ import. This is a merchant initiated process. >
463
+ paylink_id (str): Paylink Id
464
+ is_accountvault (bool): Is Token Transaction
465
+ created_user_id (str): User ID Created the register
466
+ modified_user_id (str): Last User ID that updated the register
467
+ transaction_code (str): Transaction Code
468
+ effective_date (str): For ACH only, this is optional and defaults to current
469
+ day.
470
+ notification_phone (str): Notification Phone. Country code not included
471
+ cavv_result (str): Cavv Result
472
+ is_token (bool): Is Token Transaction
473
+ account_vault_id (str): Token ID
474
+ hosted_payment_page_id (str): Hosted Payment Page Id
475
+ stan (str): The model property of type str.
476
+ currency (str): Currency
477
+ card_bin (str): Card Bin
478
+ wallet_type (str): This value provides information from where the transaction
479
+ was initialized (Such as In-App provider)
480
+ additional_properties (Dict[str, object]): The additional properties for the
481
+ model.
482
+
483
+ """
484
+
485
+ # Create a mapping from Model property names to API property names
486
+ _names = {
487
+ "additional_amounts": "additional_amounts",
488
+ "billing_address": "billing_address",
489
+ "checkin_date": "checkin_date",
490
+ "checkout_date": "checkout_date",
491
+ "clerk_number": "clerk_number",
492
+ "contact_api_id": "contact_api_id",
493
+ "contact_id": "contact_id",
494
+ "custom_data": "custom_data",
495
+ "customer_id": "customer_id",
496
+ "description": "description",
497
+ "identity_verification": "identity_verification",
498
+ "iias_ind": "iias_ind",
499
+ "image_front": "image_front",
500
+ "image_back": "image_back",
501
+ "installment": "installment",
502
+ "installment_number": "installment_number",
503
+ "installment_count": "installment_count",
504
+ "recurring_flag": "recurring_flag",
505
+ "installment_counter": "installment_counter",
506
+ "installment_total": "installment_total",
507
+ "subscription": "subscription",
508
+ "standing_order": "standing_order",
509
+ "location_api_id": "location_api_id",
510
+ "location_id": "location_id",
511
+ "product_transaction_id": "product_transaction_id",
512
+ "advance_deposit": "advance_deposit",
513
+ "no_show": "no_show",
514
+ "notification_email_address": "notification_email_address",
515
+ "order_number": "order_number",
516
+ "po_number": "po_number",
517
+ "quick_invoice_id": "quick_invoice_id",
518
+ "recurring": "recurring",
519
+ "recurring_number": "recurring_number",
520
+ "room_num": "room_num",
521
+ "room_rate": "room_rate",
522
+ "save_account": "save_account",
523
+ "save_account_title": "save_account_title",
524
+ "subtotal_amount": "subtotal_amount",
525
+ "surcharge_amount": "surcharge_amount",
526
+ "tags": "tags",
527
+ "tax": "tax",
528
+ "tip_amount": "tip_amount",
529
+ "transaction_amount": "transaction_amount",
530
+ "secondary_amount": "secondary_amount",
531
+ "transaction_api_id": "transaction_api_id",
532
+ "transaction_c_1": "transaction_c1",
533
+ "transaction_c_2": "transaction_c2",
534
+ "transaction_c_3": "transaction_c3",
535
+ "bank_funded_only_override": "bank_funded_only_override",
536
+ "allow_partial_authorization_override": "allow_partial_authorization_override",
537
+ "auto_decline_cvv_override": "auto_decline_cvv_override",
538
+ "auto_decline_street_override": "auto_decline_street_override",
539
+ "auto_decline_zip_override": "auto_decline_zip_override",
540
+ "ebt_type": "ebt_type",
541
+ "currency_code": "currency_code",
542
+ "id": "id",
543
+ "created_ts": "created_ts",
544
+ "modified_ts": "modified_ts",
545
+ "terminal_id": "terminal_id",
546
+ "account_holder_name": "account_holder_name",
547
+ "account_type": "account_type",
548
+ "token_api_id": "token_api_id",
549
+ "token_id": "token_id",
550
+ "ach_identifier": "ach_identifier",
551
+ "ach_sec_code": "ach_sec_code",
552
+ "auth_amount": "auth_amount",
553
+ "auth_code": "auth_code",
554
+ "avs": "avs",
555
+ "avs_enhanced": "avs_enhanced",
556
+ "cardholder_present": "cardholder_present",
557
+ "card_present": "card_present",
558
+ "check_number": "check_number",
559
+ "customer_ip": "customer_ip",
560
+ "cvv_response": "cvv_response",
561
+ "entry_mode_id": "entry_mode_id",
562
+ "emv_receipt_data": "emv_receipt_data",
563
+ "first_six": "first_six",
564
+ "last_four": "last_four",
565
+ "payment_method": "payment_method",
566
+ "terminal_serial_number": "terminal_serial_number",
567
+ "transaction_settlement_status": "transaction_settlement_status",
568
+ "charge_back_date": "charge_back_date",
569
+ "is_recurring": "is_recurring",
570
+ "notification_email_sent": "notification_email_sent",
571
+ "par": "par",
572
+ "reason_code_id": "reason_code_id",
573
+ "recurring_id": "recurring_id",
574
+ "settle_date": "settle_date",
575
+ "status_code": "status_code",
576
+ "transaction_batch_id": "transaction_batch_id",
577
+ "type_id": "type_id",
578
+ "verbiage": "verbiage",
579
+ "voucher_number": "voucher_number",
580
+ "void_date": "void_date",
581
+ "batch": "batch",
582
+ "terms_agree": "terms_agree",
583
+ "response_message": "response_message",
584
+ "return_date": "return_date",
585
+ "trx_source_id": "trx_source_id",
586
+ "routing_number": "routing_number",
587
+ "trx_source_code": "trx_source_code",
588
+ "paylink_id": "paylink_id",
589
+ "is_accountvault": "is_accountvault",
590
+ "created_user_id": "created_user_id",
591
+ "modified_user_id": "modified_user_id",
592
+ "transaction_code": "transaction_code",
593
+ "effective_date": "effective_date",
594
+ "notification_phone": "notification_phone",
595
+ "cavv_result": "cavv_result",
596
+ "is_token": "is_token",
597
+ "account_vault_id": "account_vault_id",
598
+ "hosted_payment_page_id": "hosted_payment_page_id",
599
+ "stan": "stan",
600
+ "currency": "currency",
601
+ "card_bin": "card_bin",
602
+ "wallet_type": "wallet_type",
603
+ }
604
+
605
+ _optionals = [
606
+ "additional_amounts",
607
+ "billing_address",
608
+ "checkin_date",
609
+ "checkout_date",
610
+ "clerk_number",
611
+ "contact_api_id",
612
+ "contact_id",
613
+ "custom_data",
614
+ "customer_id",
615
+ "description",
616
+ "identity_verification",
617
+ "iias_ind",
618
+ "image_front",
619
+ "image_back",
620
+ "installment",
621
+ "installment_number",
622
+ "installment_count",
623
+ "recurring_flag",
624
+ "installment_counter",
625
+ "installment_total",
626
+ "subscription",
627
+ "standing_order",
628
+ "location_api_id",
629
+ "location_id",
630
+ "product_transaction_id",
631
+ "advance_deposit",
632
+ "no_show",
633
+ "notification_email_address",
634
+ "order_number",
635
+ "po_number",
636
+ "quick_invoice_id",
637
+ "recurring",
638
+ "recurring_number",
639
+ "room_num",
640
+ "room_rate",
641
+ "save_account",
642
+ "save_account_title",
643
+ "subtotal_amount",
644
+ "surcharge_amount",
645
+ "tags",
646
+ "tax",
647
+ "tip_amount",
648
+ "transaction_amount",
649
+ "secondary_amount",
650
+ "transaction_api_id",
651
+ "transaction_c_1",
652
+ "transaction_c_2",
653
+ "transaction_c_3",
654
+ "bank_funded_only_override",
655
+ "allow_partial_authorization_override",
656
+ "auto_decline_cvv_override",
657
+ "auto_decline_street_override",
658
+ "auto_decline_zip_override",
659
+ "ebt_type",
660
+ "currency_code",
661
+ "id",
662
+ "created_ts",
663
+ "modified_ts",
664
+ "terminal_id",
665
+ "account_holder_name",
666
+ "account_type",
667
+ "token_api_id",
668
+ "token_id",
669
+ "ach_identifier",
670
+ "ach_sec_code",
671
+ "auth_amount",
672
+ "auth_code",
673
+ "avs",
674
+ "avs_enhanced",
675
+ "cardholder_present",
676
+ "card_present",
677
+ "check_number",
678
+ "customer_ip",
679
+ "cvv_response",
680
+ "entry_mode_id",
681
+ "emv_receipt_data",
682
+ "first_six",
683
+ "last_four",
684
+ "payment_method",
685
+ "terminal_serial_number",
686
+ "transaction_settlement_status",
687
+ "charge_back_date",
688
+ "is_recurring",
689
+ "notification_email_sent",
690
+ "par",
691
+ "reason_code_id",
692
+ "recurring_id",
693
+ "settle_date",
694
+ "status_code",
695
+ "transaction_batch_id",
696
+ "type_id",
697
+ "verbiage",
698
+ "voucher_number",
699
+ "void_date",
700
+ "batch",
701
+ "terms_agree",
702
+ "response_message",
703
+ "return_date",
704
+ "trx_source_id",
705
+ "routing_number",
706
+ "trx_source_code",
707
+ "paylink_id",
708
+ "is_accountvault",
709
+ "created_user_id",
710
+ "modified_user_id",
711
+ "transaction_code",
712
+ "effective_date",
713
+ "notification_phone",
714
+ "cavv_result",
715
+ "is_token",
716
+ "account_vault_id",
717
+ "hosted_payment_page_id",
718
+ "stan",
719
+ "currency",
720
+ "card_bin",
721
+ "wallet_type",
722
+ ]
723
+
724
+ _nullables = [
725
+ "checkin_date",
726
+ "checkout_date",
727
+ "clerk_number",
728
+ "contact_api_id",
729
+ "contact_id",
730
+ "customer_id",
731
+ "description",
732
+ "iias_ind",
733
+ "image_front",
734
+ "image_back",
735
+ "installment_number",
736
+ "installment_count",
737
+ "recurring_flag",
738
+ "installment_counter",
739
+ "installment_total",
740
+ "location_api_id",
741
+ "location_id",
742
+ "product_transaction_id",
743
+ "notification_email_address",
744
+ "order_number",
745
+ "po_number",
746
+ "quick_invoice_id",
747
+ "recurring_number",
748
+ "room_num",
749
+ "room_rate",
750
+ "save_account_title",
751
+ "subtotal_amount",
752
+ "surcharge_amount",
753
+ "tags",
754
+ "tax",
755
+ "tip_amount",
756
+ "transaction_amount",
757
+ "secondary_amount",
758
+ "transaction_api_id",
759
+ "transaction_c_1",
760
+ "transaction_c_2",
761
+ "transaction_c_3",
762
+ "ebt_type",
763
+ "terminal_id",
764
+ "account_holder_name",
765
+ "account_type",
766
+ "token_api_id",
767
+ "token_id",
768
+ "ach_identifier",
769
+ "ach_sec_code",
770
+ "auth_amount",
771
+ "auth_code",
772
+ "avs",
773
+ "avs_enhanced",
774
+ "check_number",
775
+ "customer_ip",
776
+ "cvv_response",
777
+ "entry_mode_id",
778
+ "emv_receipt_data",
779
+ "first_six",
780
+ "last_four",
781
+ "terminal_serial_number",
782
+ "transaction_settlement_status",
783
+ "charge_back_date",
784
+ "par",
785
+ "reason_code_id",
786
+ "recurring_id",
787
+ "settle_date",
788
+ "status_code",
789
+ "transaction_batch_id",
790
+ "type_id",
791
+ "verbiage",
792
+ "voucher_number",
793
+ "void_date",
794
+ "batch",
795
+ "response_message",
796
+ "return_date",
797
+ "trx_source_id",
798
+ "routing_number",
799
+ "trx_source_code",
800
+ "paylink_id",
801
+ "created_user_id",
802
+ "transaction_code",
803
+ "effective_date",
804
+ "notification_phone",
805
+ "cavv_result",
806
+ "account_vault_id",
807
+ "stan",
808
+ "currency",
809
+ "card_bin",
810
+ "wallet_type",
811
+ ]
812
+
813
+ def __init__(
814
+ self,
815
+ additional_amounts=APIHelper.SKIP,
816
+ billing_address=APIHelper.SKIP,
817
+ checkin_date=APIHelper.SKIP,
818
+ checkout_date=APIHelper.SKIP,
819
+ clerk_number=APIHelper.SKIP,
820
+ contact_api_id=APIHelper.SKIP,
821
+ contact_id=APIHelper.SKIP,
822
+ custom_data=APIHelper.SKIP,
823
+ customer_id=APIHelper.SKIP,
824
+ description=APIHelper.SKIP,
825
+ identity_verification=APIHelper.SKIP,
826
+ iias_ind=APIHelper.SKIP,
827
+ image_front=APIHelper.SKIP,
828
+ image_back=APIHelper.SKIP,
829
+ installment=APIHelper.SKIP,
830
+ installment_number=APIHelper.SKIP,
831
+ installment_count=APIHelper.SKIP,
832
+ recurring_flag=APIHelper.SKIP,
833
+ installment_counter=APIHelper.SKIP,
834
+ installment_total=APIHelper.SKIP,
835
+ subscription=APIHelper.SKIP,
836
+ standing_order=APIHelper.SKIP,
837
+ location_api_id=APIHelper.SKIP,
838
+ location_id=APIHelper.SKIP,
839
+ product_transaction_id=APIHelper.SKIP,
840
+ advance_deposit=APIHelper.SKIP,
841
+ no_show=APIHelper.SKIP,
842
+ notification_email_address=APIHelper.SKIP,
843
+ order_number=APIHelper.SKIP,
844
+ po_number=APIHelper.SKIP,
845
+ quick_invoice_id=APIHelper.SKIP,
846
+ recurring=APIHelper.SKIP,
847
+ recurring_number=APIHelper.SKIP,
848
+ room_num=APIHelper.SKIP,
849
+ room_rate=APIHelper.SKIP,
850
+ save_account=APIHelper.SKIP,
851
+ save_account_title=APIHelper.SKIP,
852
+ subtotal_amount=APIHelper.SKIP,
853
+ surcharge_amount=APIHelper.SKIP,
854
+ tags=APIHelper.SKIP,
855
+ tax=APIHelper.SKIP,
856
+ tip_amount=APIHelper.SKIP,
857
+ transaction_amount=APIHelper.SKIP,
858
+ secondary_amount=APIHelper.SKIP,
859
+ transaction_api_id=APIHelper.SKIP,
860
+ transaction_c_1=APIHelper.SKIP,
861
+ transaction_c_2=APIHelper.SKIP,
862
+ transaction_c_3=APIHelper.SKIP,
863
+ bank_funded_only_override=APIHelper.SKIP,
864
+ allow_partial_authorization_override=APIHelper.SKIP,
865
+ auto_decline_cvv_override=APIHelper.SKIP,
866
+ auto_decline_street_override=APIHelper.SKIP,
867
+ auto_decline_zip_override=APIHelper.SKIP,
868
+ ebt_type=APIHelper.SKIP,
869
+ currency_code=APIHelper.SKIP,
870
+ id=APIHelper.SKIP,
871
+ created_ts=APIHelper.SKIP,
872
+ modified_ts=APIHelper.SKIP,
873
+ terminal_id=APIHelper.SKIP,
874
+ account_holder_name=APIHelper.SKIP,
875
+ account_type=APIHelper.SKIP,
876
+ token_api_id=APIHelper.SKIP,
877
+ token_id=APIHelper.SKIP,
878
+ ach_identifier=APIHelper.SKIP,
879
+ ach_sec_code=APIHelper.SKIP,
880
+ auth_amount=APIHelper.SKIP,
881
+ auth_code=APIHelper.SKIP,
882
+ avs=APIHelper.SKIP,
883
+ avs_enhanced=APIHelper.SKIP,
884
+ cardholder_present=APIHelper.SKIP,
885
+ card_present=APIHelper.SKIP,
886
+ check_number=APIHelper.SKIP,
887
+ customer_ip=APIHelper.SKIP,
888
+ cvv_response=APIHelper.SKIP,
889
+ entry_mode_id=APIHelper.SKIP,
890
+ emv_receipt_data=APIHelper.SKIP,
891
+ first_six=APIHelper.SKIP,
892
+ last_four=APIHelper.SKIP,
893
+ payment_method=APIHelper.SKIP,
894
+ terminal_serial_number=APIHelper.SKIP,
895
+ transaction_settlement_status=APIHelper.SKIP,
896
+ charge_back_date=APIHelper.SKIP,
897
+ is_recurring=APIHelper.SKIP,
898
+ notification_email_sent=APIHelper.SKIP,
899
+ par=APIHelper.SKIP,
900
+ reason_code_id=APIHelper.SKIP,
901
+ recurring_id=APIHelper.SKIP,
902
+ settle_date=APIHelper.SKIP,
903
+ status_code=APIHelper.SKIP,
904
+ transaction_batch_id=APIHelper.SKIP,
905
+ type_id=APIHelper.SKIP,
906
+ verbiage=APIHelper.SKIP,
907
+ voucher_number=APIHelper.SKIP,
908
+ void_date=APIHelper.SKIP,
909
+ batch=APIHelper.SKIP,
910
+ terms_agree=APIHelper.SKIP,
911
+ response_message=APIHelper.SKIP,
912
+ return_date=APIHelper.SKIP,
913
+ trx_source_id=APIHelper.SKIP,
914
+ routing_number=APIHelper.SKIP,
915
+ trx_source_code=APIHelper.SKIP,
916
+ paylink_id=APIHelper.SKIP,
917
+ is_accountvault=APIHelper.SKIP,
918
+ created_user_id=APIHelper.SKIP,
919
+ modified_user_id=APIHelper.SKIP,
920
+ transaction_code=APIHelper.SKIP,
921
+ effective_date=APIHelper.SKIP,
922
+ notification_phone=APIHelper.SKIP,
923
+ cavv_result=APIHelper.SKIP,
924
+ is_token=APIHelper.SKIP,
925
+ account_vault_id=APIHelper.SKIP,
926
+ hosted_payment_page_id=APIHelper.SKIP,
927
+ stan=APIHelper.SKIP,
928
+ currency=APIHelper.SKIP,
929
+ card_bin=APIHelper.SKIP,
930
+ wallet_type=APIHelper.SKIP,
931
+ additional_properties=None):
932
+ """Initialize a Transaction instance."""
933
+ # Initialize members of the class
934
+ if additional_amounts is not APIHelper.SKIP:
935
+ self.additional_amounts = additional_amounts
936
+ if billing_address is not APIHelper.SKIP:
937
+ self.billing_address = billing_address
938
+ if checkin_date is not APIHelper.SKIP:
939
+ self.checkin_date = checkin_date
940
+ if checkout_date is not APIHelper.SKIP:
941
+ self.checkout_date = checkout_date
942
+ if clerk_number is not APIHelper.SKIP:
943
+ self.clerk_number = clerk_number
944
+ if contact_api_id is not APIHelper.SKIP:
945
+ self.contact_api_id = contact_api_id
946
+ if contact_id is not APIHelper.SKIP:
947
+ self.contact_id = contact_id
948
+ if custom_data is not APIHelper.SKIP:
949
+ self.custom_data = custom_data
950
+ if customer_id is not APIHelper.SKIP:
951
+ self.customer_id = customer_id
952
+ if description is not APIHelper.SKIP:
953
+ self.description = description
954
+ if identity_verification is not APIHelper.SKIP:
955
+ self.identity_verification = identity_verification
956
+ if iias_ind is not APIHelper.SKIP:
957
+ self.iias_ind = iias_ind
958
+ if image_front is not APIHelper.SKIP:
959
+ self.image_front = image_front
960
+ if image_back is not APIHelper.SKIP:
961
+ self.image_back = image_back
962
+ if installment is not APIHelper.SKIP:
963
+ self.installment = installment
964
+ if installment_number is not APIHelper.SKIP:
965
+ self.installment_number = installment_number
966
+ if installment_count is not APIHelper.SKIP:
967
+ self.installment_count = installment_count
968
+ if recurring_flag is not APIHelper.SKIP:
969
+ self.recurring_flag = recurring_flag
970
+ if installment_counter is not APIHelper.SKIP:
971
+ self.installment_counter = installment_counter
972
+ if installment_total is not APIHelper.SKIP:
973
+ self.installment_total = installment_total
974
+ if subscription is not APIHelper.SKIP:
975
+ self.subscription = subscription
976
+ if standing_order is not APIHelper.SKIP:
977
+ self.standing_order = standing_order
978
+ if location_api_id is not APIHelper.SKIP:
979
+ self.location_api_id = location_api_id
980
+ if location_id is not APIHelper.SKIP:
981
+ self.location_id = location_id
982
+ if product_transaction_id is not APIHelper.SKIP:
983
+ self.product_transaction_id = product_transaction_id
984
+ if advance_deposit is not APIHelper.SKIP:
985
+ self.advance_deposit = advance_deposit
986
+ if no_show is not APIHelper.SKIP:
987
+ self.no_show = no_show
988
+ if notification_email_address is not APIHelper.SKIP:
989
+ self.notification_email_address = notification_email_address
990
+ if order_number is not APIHelper.SKIP:
991
+ self.order_number = order_number
992
+ if po_number is not APIHelper.SKIP:
993
+ self.po_number = po_number
994
+ if quick_invoice_id is not APIHelper.SKIP:
995
+ self.quick_invoice_id = quick_invoice_id
996
+ if recurring is not APIHelper.SKIP:
997
+ self.recurring = recurring
998
+ if recurring_number is not APIHelper.SKIP:
999
+ self.recurring_number = recurring_number
1000
+ if room_num is not APIHelper.SKIP:
1001
+ self.room_num = room_num
1002
+ if room_rate is not APIHelper.SKIP:
1003
+ self.room_rate = room_rate
1004
+ if save_account is not APIHelper.SKIP:
1005
+ self.save_account = save_account
1006
+ if save_account_title is not APIHelper.SKIP:
1007
+ self.save_account_title = save_account_title
1008
+ if subtotal_amount is not APIHelper.SKIP:
1009
+ self.subtotal_amount = subtotal_amount
1010
+ if surcharge_amount is not APIHelper.SKIP:
1011
+ self.surcharge_amount = surcharge_amount
1012
+ if tags is not APIHelper.SKIP:
1013
+ self.tags = tags
1014
+ if tax is not APIHelper.SKIP:
1015
+ self.tax = tax
1016
+ if tip_amount is not APIHelper.SKIP:
1017
+ self.tip_amount = tip_amount
1018
+ if transaction_amount is not APIHelper.SKIP:
1019
+ self.transaction_amount = transaction_amount
1020
+ if secondary_amount is not APIHelper.SKIP:
1021
+ self.secondary_amount = secondary_amount
1022
+ if transaction_api_id is not APIHelper.SKIP:
1023
+ self.transaction_api_id = transaction_api_id
1024
+ if transaction_c_1 is not APIHelper.SKIP:
1025
+ self.transaction_c_1 = transaction_c_1
1026
+ if transaction_c_2 is not APIHelper.SKIP:
1027
+ self.transaction_c_2 = transaction_c_2
1028
+ if transaction_c_3 is not APIHelper.SKIP:
1029
+ self.transaction_c_3 = transaction_c_3
1030
+ if bank_funded_only_override is not APIHelper.SKIP:
1031
+ self.bank_funded_only_override = bank_funded_only_override
1032
+ if allow_partial_authorization_override is not APIHelper.SKIP:
1033
+ self.allow_partial_authorization_override =\
1034
+ allow_partial_authorization_override
1035
+ if auto_decline_cvv_override is not APIHelper.SKIP:
1036
+ self.auto_decline_cvv_override = auto_decline_cvv_override
1037
+ if auto_decline_street_override is not APIHelper.SKIP:
1038
+ self.auto_decline_street_override = auto_decline_street_override
1039
+ if auto_decline_zip_override is not APIHelper.SKIP:
1040
+ self.auto_decline_zip_override = auto_decline_zip_override
1041
+ if ebt_type is not APIHelper.SKIP:
1042
+ self.ebt_type = ebt_type
1043
+ if currency_code is not APIHelper.SKIP:
1044
+ self.currency_code = currency_code
1045
+ if id is not APIHelper.SKIP:
1046
+ self.id = id
1047
+ if created_ts is not APIHelper.SKIP:
1048
+ self.created_ts = created_ts
1049
+ if modified_ts is not APIHelper.SKIP:
1050
+ self.modified_ts = modified_ts
1051
+ if terminal_id is not APIHelper.SKIP:
1052
+ self.terminal_id = terminal_id
1053
+ if account_holder_name is not APIHelper.SKIP:
1054
+ self.account_holder_name = account_holder_name
1055
+ if account_type is not APIHelper.SKIP:
1056
+ self.account_type = account_type
1057
+ if token_api_id is not APIHelper.SKIP:
1058
+ self.token_api_id = token_api_id
1059
+ if token_id is not APIHelper.SKIP:
1060
+ self.token_id = token_id
1061
+ if ach_identifier is not APIHelper.SKIP:
1062
+ self.ach_identifier = ach_identifier
1063
+ if ach_sec_code is not APIHelper.SKIP:
1064
+ self.ach_sec_code = ach_sec_code
1065
+ if auth_amount is not APIHelper.SKIP:
1066
+ self.auth_amount = auth_amount
1067
+ if auth_code is not APIHelper.SKIP:
1068
+ self.auth_code = auth_code
1069
+ if avs is not APIHelper.SKIP:
1070
+ self.avs = avs
1071
+ if avs_enhanced is not APIHelper.SKIP:
1072
+ self.avs_enhanced = avs_enhanced
1073
+ if cardholder_present is not APIHelper.SKIP:
1074
+ self.cardholder_present = cardholder_present
1075
+ if card_present is not APIHelper.SKIP:
1076
+ self.card_present = card_present
1077
+ if check_number is not APIHelper.SKIP:
1078
+ self.check_number = check_number
1079
+ if customer_ip is not APIHelper.SKIP:
1080
+ self.customer_ip = customer_ip
1081
+ if cvv_response is not APIHelper.SKIP:
1082
+ self.cvv_response = cvv_response
1083
+ if entry_mode_id is not APIHelper.SKIP:
1084
+ self.entry_mode_id = entry_mode_id
1085
+ if emv_receipt_data is not APIHelper.SKIP:
1086
+ self.emv_receipt_data = emv_receipt_data
1087
+ if first_six is not APIHelper.SKIP:
1088
+ self.first_six = first_six
1089
+ if last_four is not APIHelper.SKIP:
1090
+ self.last_four = last_four
1091
+ if payment_method is not APIHelper.SKIP:
1092
+ self.payment_method = payment_method
1093
+ if terminal_serial_number is not APIHelper.SKIP:
1094
+ self.terminal_serial_number = terminal_serial_number
1095
+ if transaction_settlement_status is not APIHelper.SKIP:
1096
+ self.transaction_settlement_status = transaction_settlement_status
1097
+ if charge_back_date is not APIHelper.SKIP:
1098
+ self.charge_back_date = charge_back_date
1099
+ if is_recurring is not APIHelper.SKIP:
1100
+ self.is_recurring = is_recurring
1101
+ if notification_email_sent is not APIHelper.SKIP:
1102
+ self.notification_email_sent = notification_email_sent
1103
+ if par is not APIHelper.SKIP:
1104
+ self.par = par
1105
+ if reason_code_id is not APIHelper.SKIP:
1106
+ self.reason_code_id = reason_code_id
1107
+ if recurring_id is not APIHelper.SKIP:
1108
+ self.recurring_id = recurring_id
1109
+ if settle_date is not APIHelper.SKIP:
1110
+ self.settle_date = settle_date
1111
+ if status_code is not APIHelper.SKIP:
1112
+ self.status_code = status_code
1113
+ if transaction_batch_id is not APIHelper.SKIP:
1114
+ self.transaction_batch_id = transaction_batch_id
1115
+ if type_id is not APIHelper.SKIP:
1116
+ self.type_id = type_id
1117
+ if verbiage is not APIHelper.SKIP:
1118
+ self.verbiage = verbiage
1119
+ if voucher_number is not APIHelper.SKIP:
1120
+ self.voucher_number = voucher_number
1121
+ if void_date is not APIHelper.SKIP:
1122
+ self.void_date = void_date
1123
+ if batch is not APIHelper.SKIP:
1124
+ self.batch = batch
1125
+ if terms_agree is not APIHelper.SKIP:
1126
+ self.terms_agree = terms_agree
1127
+ if response_message is not APIHelper.SKIP:
1128
+ self.response_message = response_message
1129
+ if return_date is not APIHelper.SKIP:
1130
+ self.return_date = return_date
1131
+ if trx_source_id is not APIHelper.SKIP:
1132
+ self.trx_source_id = trx_source_id
1133
+ if routing_number is not APIHelper.SKIP:
1134
+ self.routing_number = routing_number
1135
+ if trx_source_code is not APIHelper.SKIP:
1136
+ self.trx_source_code = trx_source_code
1137
+ if paylink_id is not APIHelper.SKIP:
1138
+ self.paylink_id = paylink_id
1139
+ if is_accountvault is not APIHelper.SKIP:
1140
+ self.is_accountvault = is_accountvault
1141
+ if created_user_id is not APIHelper.SKIP:
1142
+ self.created_user_id = created_user_id
1143
+ if modified_user_id is not APIHelper.SKIP:
1144
+ self.modified_user_id = modified_user_id
1145
+ if transaction_code is not APIHelper.SKIP:
1146
+ self.transaction_code = transaction_code
1147
+ if effective_date is not APIHelper.SKIP:
1148
+ self.effective_date = effective_date
1149
+ if notification_phone is not APIHelper.SKIP:
1150
+ self.notification_phone = notification_phone
1151
+ if cavv_result is not APIHelper.SKIP:
1152
+ self.cavv_result = cavv_result
1153
+ if is_token is not APIHelper.SKIP:
1154
+ self.is_token = is_token
1155
+ if account_vault_id is not APIHelper.SKIP:
1156
+ self.account_vault_id = account_vault_id
1157
+ if hosted_payment_page_id is not APIHelper.SKIP:
1158
+ self.hosted_payment_page_id = hosted_payment_page_id
1159
+ if stan is not APIHelper.SKIP:
1160
+ self.stan = stan
1161
+ if currency is not APIHelper.SKIP:
1162
+ self.currency = currency
1163
+ if card_bin is not APIHelper.SKIP:
1164
+ self.card_bin = card_bin
1165
+ if wallet_type is not APIHelper.SKIP:
1166
+ self.wallet_type = wallet_type
1167
+
1168
+ # Add additional model properties to the instance
1169
+ if additional_properties is None:
1170
+ additional_properties = {}
1171
+ self.additional_properties = additional_properties
1172
+
1173
+ @classmethod
1174
+ def from_dictionary(cls,
1175
+ dictionary):
1176
+ """Create an instance of this model from a dictionary
1177
+
1178
+ Args:
1179
+ dictionary (dictionary): A dictionary representation of the object
1180
+ as obtained from the deserialization of the server's response. The
1181
+ keys MUST match property names in the API description.
1182
+
1183
+ Returns:
1184
+ object: An instance of this structure class.
1185
+
1186
+ """
1187
+ if not isinstance(dictionary, dict) or dictionary is None:
1188
+ return None
1189
+
1190
+ # Extract variables from the dictionary
1191
+ additional_amounts = None
1192
+ if dictionary.get("additional_amounts") is not None:
1193
+ additional_amounts = [
1194
+ AdditionalAmount.from_dictionary(x)
1195
+ for x in dictionary.get("additional_amounts")
1196
+ ]
1197
+ else:
1198
+ additional_amounts = APIHelper.SKIP
1199
+ billing_address =\
1200
+ BillingAddress1.from_dictionary(
1201
+ dictionary.get("billing_address"))\
1202
+ if "billing_address" in dictionary.keys()\
1203
+ else APIHelper.SKIP
1204
+ checkin_date =\
1205
+ dictionary.get("checkin_date")\
1206
+ if "checkin_date" in dictionary.keys()\
1207
+ else APIHelper.SKIP
1208
+ checkout_date =\
1209
+ dictionary.get("checkout_date")\
1210
+ if "checkout_date" in dictionary.keys()\
1211
+ else APIHelper.SKIP
1212
+ clerk_number =\
1213
+ dictionary.get("clerk_number")\
1214
+ if "clerk_number" in dictionary.keys()\
1215
+ else APIHelper.SKIP
1216
+ contact_api_id =\
1217
+ dictionary.get("contact_api_id")\
1218
+ if "contact_api_id" in dictionary.keys()\
1219
+ else APIHelper.SKIP
1220
+ contact_id =\
1221
+ dictionary.get("contact_id")\
1222
+ if "contact_id" in dictionary.keys()\
1223
+ else APIHelper.SKIP
1224
+ custom_data =\
1225
+ dictionary.get("custom_data")\
1226
+ if dictionary.get("custom_data")\
1227
+ else APIHelper.SKIP
1228
+ customer_id =\
1229
+ dictionary.get("customer_id")\
1230
+ if "customer_id" in dictionary.keys()\
1231
+ else APIHelper.SKIP
1232
+ description =\
1233
+ dictionary.get("description")\
1234
+ if "description" in dictionary.keys()\
1235
+ else APIHelper.SKIP
1236
+ identity_verification =\
1237
+ IdentityVerification.from_dictionary(
1238
+ dictionary.get("identity_verification"))\
1239
+ if "identity_verification" in dictionary.keys()\
1240
+ else APIHelper.SKIP
1241
+ iias_ind =\
1242
+ dictionary.get("iias_ind")\
1243
+ if "iias_ind" in dictionary.keys()\
1244
+ else APIHelper.SKIP
1245
+ image_front =\
1246
+ dictionary.get("image_front")\
1247
+ if "image_front" in dictionary.keys()\
1248
+ else APIHelper.SKIP
1249
+ image_back =\
1250
+ dictionary.get("image_back")\
1251
+ if "image_back" in dictionary.keys()\
1252
+ else APIHelper.SKIP
1253
+ installment =\
1254
+ dictionary.get("installment")\
1255
+ if "installment" in dictionary.keys()\
1256
+ else APIHelper.SKIP
1257
+ installment_number =\
1258
+ dictionary.get("installment_number")\
1259
+ if "installment_number" in dictionary.keys()\
1260
+ else APIHelper.SKIP
1261
+ installment_count =\
1262
+ dictionary.get("installment_count")\
1263
+ if "installment_count" in dictionary.keys()\
1264
+ else APIHelper.SKIP
1265
+ recurring_flag =\
1266
+ dictionary.get("recurring_flag")\
1267
+ if "recurring_flag" in dictionary.keys()\
1268
+ else APIHelper.SKIP
1269
+ installment_counter =\
1270
+ dictionary.get("installment_counter")\
1271
+ if "installment_counter" in dictionary.keys()\
1272
+ else APIHelper.SKIP
1273
+ installment_total =\
1274
+ dictionary.get("installment_total")\
1275
+ if "installment_total" in dictionary.keys()\
1276
+ else APIHelper.SKIP
1277
+ subscription =\
1278
+ dictionary.get("subscription")\
1279
+ if "subscription" in dictionary.keys()\
1280
+ else APIHelper.SKIP
1281
+ standing_order =\
1282
+ dictionary.get("standing_order")\
1283
+ if "standing_order" in dictionary.keys()\
1284
+ else APIHelper.SKIP
1285
+ location_api_id =\
1286
+ dictionary.get("location_api_id")\
1287
+ if "location_api_id" in dictionary.keys()\
1288
+ else APIHelper.SKIP
1289
+ location_id =\
1290
+ dictionary.get("location_id")\
1291
+ if "location_id" in dictionary.keys()\
1292
+ else APIHelper.SKIP
1293
+ product_transaction_id =\
1294
+ dictionary.get("product_transaction_id")\
1295
+ if "product_transaction_id" in dictionary.keys()\
1296
+ else APIHelper.SKIP
1297
+ advance_deposit =\
1298
+ dictionary.get("advance_deposit")\
1299
+ if "advance_deposit" in dictionary.keys()\
1300
+ else APIHelper.SKIP
1301
+ no_show =\
1302
+ dictionary.get("no_show")\
1303
+ if "no_show" in dictionary.keys()\
1304
+ else APIHelper.SKIP
1305
+ notification_email_address =\
1306
+ dictionary.get("notification_email_address")\
1307
+ if "notification_email_address" in dictionary.keys()\
1308
+ else APIHelper.SKIP
1309
+ order_number =\
1310
+ dictionary.get("order_number")\
1311
+ if "order_number" in dictionary.keys()\
1312
+ else APIHelper.SKIP
1313
+ po_number =\
1314
+ dictionary.get("po_number")\
1315
+ if "po_number" in dictionary.keys()\
1316
+ else APIHelper.SKIP
1317
+ quick_invoice_id =\
1318
+ dictionary.get("quick_invoice_id")\
1319
+ if "quick_invoice_id" in dictionary.keys()\
1320
+ else APIHelper.SKIP
1321
+ recurring =\
1322
+ dictionary.get("recurring")\
1323
+ if "recurring" in dictionary.keys()\
1324
+ else APIHelper.SKIP
1325
+ recurring_number =\
1326
+ dictionary.get("recurring_number")\
1327
+ if "recurring_number" in dictionary.keys()\
1328
+ else APIHelper.SKIP
1329
+ room_num =\
1330
+ dictionary.get("room_num")\
1331
+ if "room_num" in dictionary.keys()\
1332
+ else APIHelper.SKIP
1333
+ room_rate =\
1334
+ dictionary.get("room_rate")\
1335
+ if "room_rate" in dictionary.keys()\
1336
+ else APIHelper.SKIP
1337
+ save_account =\
1338
+ dictionary.get("save_account")\
1339
+ if "save_account" in dictionary.keys()\
1340
+ else APIHelper.SKIP
1341
+ save_account_title =\
1342
+ dictionary.get("save_account_title")\
1343
+ if "save_account_title" in dictionary.keys()\
1344
+ else APIHelper.SKIP
1345
+ subtotal_amount =\
1346
+ dictionary.get("subtotal_amount")\
1347
+ if "subtotal_amount" in dictionary.keys()\
1348
+ else APIHelper.SKIP
1349
+ surcharge_amount =\
1350
+ dictionary.get("surcharge_amount")\
1351
+ if "surcharge_amount" in dictionary.keys()\
1352
+ else APIHelper.SKIP
1353
+ tags =\
1354
+ dictionary.get("tags")\
1355
+ if "tags" in dictionary.keys()\
1356
+ else APIHelper.SKIP
1357
+ tax =\
1358
+ dictionary.get("tax")\
1359
+ if "tax" in dictionary.keys()\
1360
+ else APIHelper.SKIP
1361
+ tip_amount =\
1362
+ dictionary.get("tip_amount")\
1363
+ if "tip_amount" in dictionary.keys()\
1364
+ else APIHelper.SKIP
1365
+ transaction_amount =\
1366
+ dictionary.get("transaction_amount")\
1367
+ if "transaction_amount" in dictionary.keys()\
1368
+ else APIHelper.SKIP
1369
+ secondary_amount =\
1370
+ dictionary.get("secondary_amount")\
1371
+ if "secondary_amount" in dictionary.keys()\
1372
+ else APIHelper.SKIP
1373
+ transaction_api_id =\
1374
+ dictionary.get("transaction_api_id")\
1375
+ if "transaction_api_id" in dictionary.keys()\
1376
+ else APIHelper.SKIP
1377
+ transaction_c_1 =\
1378
+ dictionary.get("transaction_c1")\
1379
+ if "transaction_c1" in dictionary.keys()\
1380
+ else APIHelper.SKIP
1381
+ transaction_c_2 =\
1382
+ dictionary.get("transaction_c2")\
1383
+ if "transaction_c2" in dictionary.keys()\
1384
+ else APIHelper.SKIP
1385
+ transaction_c_3 =\
1386
+ dictionary.get("transaction_c3")\
1387
+ if "transaction_c3" in dictionary.keys()\
1388
+ else APIHelper.SKIP
1389
+ bank_funded_only_override =\
1390
+ dictionary.get("bank_funded_only_override")\
1391
+ if "bank_funded_only_override" in dictionary.keys()\
1392
+ else APIHelper.SKIP
1393
+ allow_partial_authorization_override =\
1394
+ dictionary.get("allow_partial_authorization_override")\
1395
+ if "allow_partial_authorization_override" in dictionary.keys()\
1396
+ else APIHelper.SKIP
1397
+ auto_decline_cvv_override =\
1398
+ dictionary.get("auto_decline_cvv_override")\
1399
+ if "auto_decline_cvv_override" in dictionary.keys()\
1400
+ else APIHelper.SKIP
1401
+ auto_decline_street_override =\
1402
+ dictionary.get("auto_decline_street_override")\
1403
+ if "auto_decline_street_override" in dictionary.keys()\
1404
+ else APIHelper.SKIP
1405
+ auto_decline_zip_override =\
1406
+ dictionary.get("auto_decline_zip_override")\
1407
+ if "auto_decline_zip_override" in dictionary.keys()\
1408
+ else APIHelper.SKIP
1409
+ ebt_type =\
1410
+ dictionary.get("ebt_type")\
1411
+ if "ebt_type" in dictionary.keys()\
1412
+ else APIHelper.SKIP
1413
+ currency_code =\
1414
+ dictionary.get("currency_code")\
1415
+ if dictionary.get("currency_code")\
1416
+ else APIHelper.SKIP
1417
+ id =\
1418
+ dictionary.get("id")\
1419
+ if dictionary.get("id")\
1420
+ else APIHelper.SKIP
1421
+ created_ts =\
1422
+ dictionary.get("created_ts")\
1423
+ if dictionary.get("created_ts")\
1424
+ else APIHelper.SKIP
1425
+ modified_ts =\
1426
+ dictionary.get("modified_ts")\
1427
+ if dictionary.get("modified_ts")\
1428
+ else APIHelper.SKIP
1429
+ terminal_id =\
1430
+ dictionary.get("terminal_id")\
1431
+ if "terminal_id" in dictionary.keys()\
1432
+ else APIHelper.SKIP
1433
+ account_holder_name =\
1434
+ dictionary.get("account_holder_name")\
1435
+ if "account_holder_name" in dictionary.keys()\
1436
+ else APIHelper.SKIP
1437
+ account_type =\
1438
+ dictionary.get("account_type")\
1439
+ if "account_type" in dictionary.keys()\
1440
+ else APIHelper.SKIP
1441
+ token_api_id =\
1442
+ dictionary.get("token_api_id")\
1443
+ if "token_api_id" in dictionary.keys()\
1444
+ else APIHelper.SKIP
1445
+ token_id =\
1446
+ dictionary.get("token_id")\
1447
+ if "token_id" in dictionary.keys()\
1448
+ else APIHelper.SKIP
1449
+ ach_identifier =\
1450
+ dictionary.get("ach_identifier")\
1451
+ if "ach_identifier" in dictionary.keys()\
1452
+ else APIHelper.SKIP
1453
+ ach_sec_code =\
1454
+ dictionary.get("ach_sec_code")\
1455
+ if "ach_sec_code" in dictionary.keys()\
1456
+ else APIHelper.SKIP
1457
+ auth_amount =\
1458
+ dictionary.get("auth_amount")\
1459
+ if "auth_amount" in dictionary.keys()\
1460
+ else APIHelper.SKIP
1461
+ auth_code =\
1462
+ dictionary.get("auth_code")\
1463
+ if "auth_code" in dictionary.keys()\
1464
+ else APIHelper.SKIP
1465
+ avs =\
1466
+ dictionary.get("avs")\
1467
+ if "avs" in dictionary.keys()\
1468
+ else APIHelper.SKIP
1469
+ avs_enhanced =\
1470
+ dictionary.get("avs_enhanced")\
1471
+ if "avs_enhanced" in dictionary.keys()\
1472
+ else APIHelper.SKIP
1473
+ cardholder_present =\
1474
+ dictionary.get("cardholder_present")\
1475
+ if "cardholder_present" in dictionary.keys()\
1476
+ else APIHelper.SKIP
1477
+ card_present =\
1478
+ dictionary.get("card_present")\
1479
+ if "card_present" in dictionary.keys()\
1480
+ else APIHelper.SKIP
1481
+ check_number =\
1482
+ dictionary.get("check_number")\
1483
+ if "check_number" in dictionary.keys()\
1484
+ else APIHelper.SKIP
1485
+ customer_ip =\
1486
+ dictionary.get("customer_ip")\
1487
+ if "customer_ip" in dictionary.keys()\
1488
+ else APIHelper.SKIP
1489
+ cvv_response =\
1490
+ dictionary.get("cvv_response")\
1491
+ if "cvv_response" in dictionary.keys()\
1492
+ else APIHelper.SKIP
1493
+ entry_mode_id =\
1494
+ dictionary.get("entry_mode_id")\
1495
+ if "entry_mode_id" in dictionary.keys()\
1496
+ else APIHelper.SKIP
1497
+ if "emv_receipt_data" in dictionary.keys():
1498
+ emv_receipt_data =\
1499
+ EmvReceiptData.from_dictionary(
1500
+ dictionary.get("emv_receipt_data"))\
1501
+ if dictionary.get("emv_receipt_data") else None
1502
+ else:
1503
+ emv_receipt_data = APIHelper.SKIP
1504
+ first_six =\
1505
+ dictionary.get("first_six")\
1506
+ if "first_six" in dictionary.keys()\
1507
+ else APIHelper.SKIP
1508
+ last_four =\
1509
+ dictionary.get("last_four")\
1510
+ if "last_four" in dictionary.keys()\
1511
+ else APIHelper.SKIP
1512
+ payment_method =\
1513
+ dictionary.get("payment_method")\
1514
+ if dictionary.get("payment_method")\
1515
+ else APIHelper.SKIP
1516
+ terminal_serial_number =\
1517
+ dictionary.get("terminal_serial_number")\
1518
+ if "terminal_serial_number" in dictionary.keys()\
1519
+ else APIHelper.SKIP
1520
+ transaction_settlement_status =\
1521
+ dictionary.get("transaction_settlement_status")\
1522
+ if "transaction_settlement_status" in dictionary.keys()\
1523
+ else APIHelper.SKIP
1524
+ charge_back_date =\
1525
+ dictionary.get("charge_back_date")\
1526
+ if "charge_back_date" in dictionary.keys()\
1527
+ else APIHelper.SKIP
1528
+ is_recurring =\
1529
+ dictionary.get("is_recurring")\
1530
+ if "is_recurring" in dictionary.keys()\
1531
+ else APIHelper.SKIP
1532
+ notification_email_sent =\
1533
+ dictionary.get("notification_email_sent")\
1534
+ if "notification_email_sent" in dictionary.keys()\
1535
+ else APIHelper.SKIP
1536
+ par =\
1537
+ dictionary.get("par")\
1538
+ if "par" in dictionary.keys()\
1539
+ else APIHelper.SKIP
1540
+ reason_code_id =\
1541
+ dictionary.get("reason_code_id")\
1542
+ if "reason_code_id" in dictionary.keys()\
1543
+ else APIHelper.SKIP
1544
+ recurring_id =\
1545
+ dictionary.get("recurring_id")\
1546
+ if "recurring_id" in dictionary.keys()\
1547
+ else APIHelper.SKIP
1548
+ settle_date =\
1549
+ dictionary.get("settle_date")\
1550
+ if "settle_date" in dictionary.keys()\
1551
+ else APIHelper.SKIP
1552
+ status_code =\
1553
+ dictionary.get("status_code")\
1554
+ if "status_code" in dictionary.keys()\
1555
+ else APIHelper.SKIP
1556
+ transaction_batch_id =\
1557
+ dictionary.get("transaction_batch_id")\
1558
+ if "transaction_batch_id" in dictionary.keys()\
1559
+ else APIHelper.SKIP
1560
+ type_id =\
1561
+ dictionary.get("type_id")\
1562
+ if "type_id" in dictionary.keys()\
1563
+ else APIHelper.SKIP
1564
+ verbiage =\
1565
+ dictionary.get("verbiage")\
1566
+ if "verbiage" in dictionary.keys()\
1567
+ else APIHelper.SKIP
1568
+ voucher_number =\
1569
+ dictionary.get("voucher_number")\
1570
+ if "voucher_number" in dictionary.keys()\
1571
+ else APIHelper.SKIP
1572
+ void_date =\
1573
+ dictionary.get("void_date")\
1574
+ if "void_date" in dictionary.keys()\
1575
+ else APIHelper.SKIP
1576
+ batch =\
1577
+ dictionary.get("batch")\
1578
+ if "batch" in dictionary.keys()\
1579
+ else APIHelper.SKIP
1580
+ terms_agree =\
1581
+ dictionary.get("terms_agree")\
1582
+ if "terms_agree" in dictionary.keys()\
1583
+ else APIHelper.SKIP
1584
+ response_message =\
1585
+ dictionary.get("response_message")\
1586
+ if "response_message" in dictionary.keys()\
1587
+ else APIHelper.SKIP
1588
+ return_date =\
1589
+ dictionary.get("return_date")\
1590
+ if "return_date" in dictionary.keys()\
1591
+ else APIHelper.SKIP
1592
+ trx_source_id =\
1593
+ dictionary.get("trx_source_id")\
1594
+ if "trx_source_id" in dictionary.keys()\
1595
+ else APIHelper.SKIP
1596
+ routing_number =\
1597
+ dictionary.get("routing_number")\
1598
+ if "routing_number" in dictionary.keys()\
1599
+ else APIHelper.SKIP
1600
+ trx_source_code =\
1601
+ dictionary.get("trx_source_code")\
1602
+ if "trx_source_code" in dictionary.keys()\
1603
+ else APIHelper.SKIP
1604
+ paylink_id =\
1605
+ dictionary.get("paylink_id")\
1606
+ if "paylink_id" in dictionary.keys()\
1607
+ else APIHelper.SKIP
1608
+ is_accountvault =\
1609
+ dictionary.get("is_accountvault")\
1610
+ if "is_accountvault" in dictionary.keys()\
1611
+ else APIHelper.SKIP
1612
+ created_user_id =\
1613
+ dictionary.get("created_user_id")\
1614
+ if "created_user_id" in dictionary.keys()\
1615
+ else APIHelper.SKIP
1616
+ modified_user_id =\
1617
+ dictionary.get("modified_user_id")\
1618
+ if dictionary.get("modified_user_id")\
1619
+ else APIHelper.SKIP
1620
+ transaction_code =\
1621
+ dictionary.get("transaction_code")\
1622
+ if "transaction_code" in dictionary.keys()\
1623
+ else APIHelper.SKIP
1624
+ effective_date =\
1625
+ dictionary.get("effective_date")\
1626
+ if "effective_date" in dictionary.keys()\
1627
+ else APIHelper.SKIP
1628
+ notification_phone =\
1629
+ dictionary.get("notification_phone")\
1630
+ if "notification_phone" in dictionary.keys()\
1631
+ else APIHelper.SKIP
1632
+ cavv_result =\
1633
+ dictionary.get("cavv_result")\
1634
+ if "cavv_result" in dictionary.keys()\
1635
+ else APIHelper.SKIP
1636
+ is_token =\
1637
+ dictionary.get("is_token")\
1638
+ if "is_token" in dictionary.keys()\
1639
+ else APIHelper.SKIP
1640
+ account_vault_id =\
1641
+ dictionary.get("account_vault_id")\
1642
+ if "account_vault_id" in dictionary.keys()\
1643
+ else APIHelper.SKIP
1644
+ hosted_payment_page_id =\
1645
+ dictionary.get("hosted_payment_page_id")\
1646
+ if dictionary.get("hosted_payment_page_id")\
1647
+ else APIHelper.SKIP
1648
+ stan =\
1649
+ dictionary.get("stan")\
1650
+ if "stan" in dictionary.keys()\
1651
+ else APIHelper.SKIP
1652
+ currency =\
1653
+ dictionary.get("currency")\
1654
+ if "currency" in dictionary.keys()\
1655
+ else APIHelper.SKIP
1656
+ card_bin =\
1657
+ dictionary.get("card_bin")\
1658
+ if "card_bin" in dictionary.keys()\
1659
+ else APIHelper.SKIP
1660
+ wallet_type =\
1661
+ dictionary.get("wallet_type")\
1662
+ if "wallet_type" in dictionary.keys()\
1663
+ else APIHelper.SKIP
1664
+
1665
+ # Clean out expected properties from dictionary
1666
+ additional_properties =\
1667
+ {k: v for k, v in dictionary.items() if k not in cls._names.values()}
1668
+
1669
+ # Return an object of this model
1670
+ return cls(additional_amounts,
1671
+ billing_address,
1672
+ checkin_date,
1673
+ checkout_date,
1674
+ clerk_number,
1675
+ contact_api_id,
1676
+ contact_id,
1677
+ custom_data,
1678
+ customer_id,
1679
+ description,
1680
+ identity_verification,
1681
+ iias_ind,
1682
+ image_front,
1683
+ image_back,
1684
+ installment,
1685
+ installment_number,
1686
+ installment_count,
1687
+ recurring_flag,
1688
+ installment_counter,
1689
+ installment_total,
1690
+ subscription,
1691
+ standing_order,
1692
+ location_api_id,
1693
+ location_id,
1694
+ product_transaction_id,
1695
+ advance_deposit,
1696
+ no_show,
1697
+ notification_email_address,
1698
+ order_number,
1699
+ po_number,
1700
+ quick_invoice_id,
1701
+ recurring,
1702
+ recurring_number,
1703
+ room_num,
1704
+ room_rate,
1705
+ save_account,
1706
+ save_account_title,
1707
+ subtotal_amount,
1708
+ surcharge_amount,
1709
+ tags,
1710
+ tax,
1711
+ tip_amount,
1712
+ transaction_amount,
1713
+ secondary_amount,
1714
+ transaction_api_id,
1715
+ transaction_c_1,
1716
+ transaction_c_2,
1717
+ transaction_c_3,
1718
+ bank_funded_only_override,
1719
+ allow_partial_authorization_override,
1720
+ auto_decline_cvv_override,
1721
+ auto_decline_street_override,
1722
+ auto_decline_zip_override,
1723
+ ebt_type,
1724
+ currency_code,
1725
+ id,
1726
+ created_ts,
1727
+ modified_ts,
1728
+ terminal_id,
1729
+ account_holder_name,
1730
+ account_type,
1731
+ token_api_id,
1732
+ token_id,
1733
+ ach_identifier,
1734
+ ach_sec_code,
1735
+ auth_amount,
1736
+ auth_code,
1737
+ avs,
1738
+ avs_enhanced,
1739
+ cardholder_present,
1740
+ card_present,
1741
+ check_number,
1742
+ customer_ip,
1743
+ cvv_response,
1744
+ entry_mode_id,
1745
+ emv_receipt_data,
1746
+ first_six,
1747
+ last_four,
1748
+ payment_method,
1749
+ terminal_serial_number,
1750
+ transaction_settlement_status,
1751
+ charge_back_date,
1752
+ is_recurring,
1753
+ notification_email_sent,
1754
+ par,
1755
+ reason_code_id,
1756
+ recurring_id,
1757
+ settle_date,
1758
+ status_code,
1759
+ transaction_batch_id,
1760
+ type_id,
1761
+ verbiage,
1762
+ voucher_number,
1763
+ void_date,
1764
+ batch,
1765
+ terms_agree,
1766
+ response_message,
1767
+ return_date,
1768
+ trx_source_id,
1769
+ routing_number,
1770
+ trx_source_code,
1771
+ paylink_id,
1772
+ is_accountvault,
1773
+ created_user_id,
1774
+ modified_user_id,
1775
+ transaction_code,
1776
+ effective_date,
1777
+ notification_phone,
1778
+ cavv_result,
1779
+ is_token,
1780
+ account_vault_id,
1781
+ hosted_payment_page_id,
1782
+ stan,
1783
+ currency,
1784
+ card_bin,
1785
+ wallet_type,
1786
+ additional_properties)
1787
+
1788
+ def __repr__(self):
1789
+ """Return a unambiguous string representation."""
1790
+ _additional_amounts=(
1791
+ self.additional_amounts
1792
+ if hasattr(self, "additional_amounts")
1793
+ else None
1794
+ )
1795
+ _billing_address=(
1796
+ self.billing_address
1797
+ if hasattr(self, "billing_address")
1798
+ else None
1799
+ )
1800
+ _checkin_date=(
1801
+ self.checkin_date
1802
+ if hasattr(self, "checkin_date")
1803
+ else None
1804
+ )
1805
+ _checkout_date=(
1806
+ self.checkout_date
1807
+ if hasattr(self, "checkout_date")
1808
+ else None
1809
+ )
1810
+ _clerk_number=(
1811
+ self.clerk_number
1812
+ if hasattr(self, "clerk_number")
1813
+ else None
1814
+ )
1815
+ _contact_api_id=(
1816
+ self.contact_api_id
1817
+ if hasattr(self, "contact_api_id")
1818
+ else None
1819
+ )
1820
+ _contact_id=(
1821
+ self.contact_id
1822
+ if hasattr(self, "contact_id")
1823
+ else None
1824
+ )
1825
+ _custom_data=(
1826
+ self.custom_data
1827
+ if hasattr(self, "custom_data")
1828
+ else None
1829
+ )
1830
+ _customer_id=(
1831
+ self.customer_id
1832
+ if hasattr(self, "customer_id")
1833
+ else None
1834
+ )
1835
+ _description=(
1836
+ self.description
1837
+ if hasattr(self, "description")
1838
+ else None
1839
+ )
1840
+ _identity_verification=(
1841
+ self.identity_verification
1842
+ if hasattr(self, "identity_verification")
1843
+ else None
1844
+ )
1845
+ _iias_ind=(
1846
+ self.iias_ind
1847
+ if hasattr(self, "iias_ind")
1848
+ else None
1849
+ )
1850
+ _image_front=(
1851
+ self.image_front
1852
+ if hasattr(self, "image_front")
1853
+ else None
1854
+ )
1855
+ _image_back=(
1856
+ self.image_back
1857
+ if hasattr(self, "image_back")
1858
+ else None
1859
+ )
1860
+ _installment=(
1861
+ self.installment
1862
+ if hasattr(self, "installment")
1863
+ else None
1864
+ )
1865
+ _installment_number=(
1866
+ self.installment_number
1867
+ if hasattr(self, "installment_number")
1868
+ else None
1869
+ )
1870
+ _installment_count=(
1871
+ self.installment_count
1872
+ if hasattr(self, "installment_count")
1873
+ else None
1874
+ )
1875
+ _recurring_flag=(
1876
+ self.recurring_flag
1877
+ if hasattr(self, "recurring_flag")
1878
+ else None
1879
+ )
1880
+ _installment_counter=(
1881
+ self.installment_counter
1882
+ if hasattr(self, "installment_counter")
1883
+ else None
1884
+ )
1885
+ _installment_total=(
1886
+ self.installment_total
1887
+ if hasattr(self, "installment_total")
1888
+ else None
1889
+ )
1890
+ _subscription=(
1891
+ self.subscription
1892
+ if hasattr(self, "subscription")
1893
+ else None
1894
+ )
1895
+ _standing_order=(
1896
+ self.standing_order
1897
+ if hasattr(self, "standing_order")
1898
+ else None
1899
+ )
1900
+ _location_api_id=(
1901
+ self.location_api_id
1902
+ if hasattr(self, "location_api_id")
1903
+ else None
1904
+ )
1905
+ _location_id=(
1906
+ self.location_id
1907
+ if hasattr(self, "location_id")
1908
+ else None
1909
+ )
1910
+ _product_transaction_id=(
1911
+ self.product_transaction_id
1912
+ if hasattr(self, "product_transaction_id")
1913
+ else None
1914
+ )
1915
+ _advance_deposit=(
1916
+ self.advance_deposit
1917
+ if hasattr(self, "advance_deposit")
1918
+ else None
1919
+ )
1920
+ _no_show=(
1921
+ self.no_show
1922
+ if hasattr(self, "no_show")
1923
+ else None
1924
+ )
1925
+ _notification_email_address=(
1926
+ self.notification_email_address
1927
+ if hasattr(self, "notification_email_address")
1928
+ else None
1929
+ )
1930
+ _order_number=(
1931
+ self.order_number
1932
+ if hasattr(self, "order_number")
1933
+ else None
1934
+ )
1935
+ _po_number=(
1936
+ self.po_number
1937
+ if hasattr(self, "po_number")
1938
+ else None
1939
+ )
1940
+ _quick_invoice_id=(
1941
+ self.quick_invoice_id
1942
+ if hasattr(self, "quick_invoice_id")
1943
+ else None
1944
+ )
1945
+ _recurring=(
1946
+ self.recurring
1947
+ if hasattr(self, "recurring")
1948
+ else None
1949
+ )
1950
+ _recurring_number=(
1951
+ self.recurring_number
1952
+ if hasattr(self, "recurring_number")
1953
+ else None
1954
+ )
1955
+ _room_num=(
1956
+ self.room_num
1957
+ if hasattr(self, "room_num")
1958
+ else None
1959
+ )
1960
+ _room_rate=(
1961
+ self.room_rate
1962
+ if hasattr(self, "room_rate")
1963
+ else None
1964
+ )
1965
+ _save_account=(
1966
+ self.save_account
1967
+ if hasattr(self, "save_account")
1968
+ else None
1969
+ )
1970
+ _save_account_title=(
1971
+ self.save_account_title
1972
+ if hasattr(self, "save_account_title")
1973
+ else None
1974
+ )
1975
+ _subtotal_amount=(
1976
+ self.subtotal_amount
1977
+ if hasattr(self, "subtotal_amount")
1978
+ else None
1979
+ )
1980
+ _surcharge_amount=(
1981
+ self.surcharge_amount
1982
+ if hasattr(self, "surcharge_amount")
1983
+ else None
1984
+ )
1985
+ _tags=(
1986
+ self.tags
1987
+ if hasattr(self, "tags")
1988
+ else None
1989
+ )
1990
+ _tax=(
1991
+ self.tax
1992
+ if hasattr(self, "tax")
1993
+ else None
1994
+ )
1995
+ _tip_amount=(
1996
+ self.tip_amount
1997
+ if hasattr(self, "tip_amount")
1998
+ else None
1999
+ )
2000
+ _transaction_amount=(
2001
+ self.transaction_amount
2002
+ if hasattr(self, "transaction_amount")
2003
+ else None
2004
+ )
2005
+ _secondary_amount=(
2006
+ self.secondary_amount
2007
+ if hasattr(self, "secondary_amount")
2008
+ else None
2009
+ )
2010
+ _transaction_api_id=(
2011
+ self.transaction_api_id
2012
+ if hasattr(self, "transaction_api_id")
2013
+ else None
2014
+ )
2015
+ _transaction_c_1=(
2016
+ self.transaction_c_1
2017
+ if hasattr(self, "transaction_c_1")
2018
+ else None
2019
+ )
2020
+ _transaction_c_2=(
2021
+ self.transaction_c_2
2022
+ if hasattr(self, "transaction_c_2")
2023
+ else None
2024
+ )
2025
+ _transaction_c_3=(
2026
+ self.transaction_c_3
2027
+ if hasattr(self, "transaction_c_3")
2028
+ else None
2029
+ )
2030
+ _bank_funded_only_override=(
2031
+ self.bank_funded_only_override
2032
+ if hasattr(self, "bank_funded_only_override")
2033
+ else None
2034
+ )
2035
+ _allow_partial_authorization_override=(
2036
+ self.allow_partial_authorization_override
2037
+ if hasattr(self, "allow_partial_authorization_override")
2038
+ else None
2039
+ )
2040
+ _auto_decline_cvv_override=(
2041
+ self.auto_decline_cvv_override
2042
+ if hasattr(self, "auto_decline_cvv_override")
2043
+ else None
2044
+ )
2045
+ _auto_decline_street_override=(
2046
+ self.auto_decline_street_override
2047
+ if hasattr(self, "auto_decline_street_override")
2048
+ else None
2049
+ )
2050
+ _auto_decline_zip_override=(
2051
+ self.auto_decline_zip_override
2052
+ if hasattr(self, "auto_decline_zip_override")
2053
+ else None
2054
+ )
2055
+ _ebt_type=(
2056
+ self.ebt_type
2057
+ if hasattr(self, "ebt_type")
2058
+ else None
2059
+ )
2060
+ _currency_code=(
2061
+ self.currency_code
2062
+ if hasattr(self, "currency_code")
2063
+ else None
2064
+ )
2065
+ _id=(
2066
+ self.id
2067
+ if hasattr(self, "id")
2068
+ else None
2069
+ )
2070
+ _created_ts=(
2071
+ self.created_ts
2072
+ if hasattr(self, "created_ts")
2073
+ else None
2074
+ )
2075
+ _modified_ts=(
2076
+ self.modified_ts
2077
+ if hasattr(self, "modified_ts")
2078
+ else None
2079
+ )
2080
+ _terminal_id=(
2081
+ self.terminal_id
2082
+ if hasattr(self, "terminal_id")
2083
+ else None
2084
+ )
2085
+ _account_holder_name=(
2086
+ self.account_holder_name
2087
+ if hasattr(self, "account_holder_name")
2088
+ else None
2089
+ )
2090
+ _account_type=(
2091
+ self.account_type
2092
+ if hasattr(self, "account_type")
2093
+ else None
2094
+ )
2095
+ _token_api_id=(
2096
+ self.token_api_id
2097
+ if hasattr(self, "token_api_id")
2098
+ else None
2099
+ )
2100
+ _token_id=(
2101
+ self.token_id
2102
+ if hasattr(self, "token_id")
2103
+ else None
2104
+ )
2105
+ _ach_identifier=(
2106
+ self.ach_identifier
2107
+ if hasattr(self, "ach_identifier")
2108
+ else None
2109
+ )
2110
+ _ach_sec_code=(
2111
+ self.ach_sec_code
2112
+ if hasattr(self, "ach_sec_code")
2113
+ else None
2114
+ )
2115
+ _auth_amount=(
2116
+ self.auth_amount
2117
+ if hasattr(self, "auth_amount")
2118
+ else None
2119
+ )
2120
+ _auth_code=(
2121
+ self.auth_code
2122
+ if hasattr(self, "auth_code")
2123
+ else None
2124
+ )
2125
+ _avs=(
2126
+ self.avs
2127
+ if hasattr(self, "avs")
2128
+ else None
2129
+ )
2130
+ _avs_enhanced=(
2131
+ self.avs_enhanced
2132
+ if hasattr(self, "avs_enhanced")
2133
+ else None
2134
+ )
2135
+ _cardholder_present=(
2136
+ self.cardholder_present
2137
+ if hasattr(self, "cardholder_present")
2138
+ else None
2139
+ )
2140
+ _card_present=(
2141
+ self.card_present
2142
+ if hasattr(self, "card_present")
2143
+ else None
2144
+ )
2145
+ _check_number=(
2146
+ self.check_number
2147
+ if hasattr(self, "check_number")
2148
+ else None
2149
+ )
2150
+ _customer_ip=(
2151
+ self.customer_ip
2152
+ if hasattr(self, "customer_ip")
2153
+ else None
2154
+ )
2155
+ _cvv_response=(
2156
+ self.cvv_response
2157
+ if hasattr(self, "cvv_response")
2158
+ else None
2159
+ )
2160
+ _entry_mode_id=(
2161
+ self.entry_mode_id
2162
+ if hasattr(self, "entry_mode_id")
2163
+ else None
2164
+ )
2165
+ _emv_receipt_data=(
2166
+ self.emv_receipt_data
2167
+ if hasattr(self, "emv_receipt_data")
2168
+ else None
2169
+ )
2170
+ _first_six=(
2171
+ self.first_six
2172
+ if hasattr(self, "first_six")
2173
+ else None
2174
+ )
2175
+ _last_four=(
2176
+ self.last_four
2177
+ if hasattr(self, "last_four")
2178
+ else None
2179
+ )
2180
+ _payment_method=(
2181
+ self.payment_method
2182
+ if hasattr(self, "payment_method")
2183
+ else None
2184
+ )
2185
+ _terminal_serial_number=(
2186
+ self.terminal_serial_number
2187
+ if hasattr(self, "terminal_serial_number")
2188
+ else None
2189
+ )
2190
+ _transaction_settlement_status=(
2191
+ self.transaction_settlement_status
2192
+ if hasattr(self, "transaction_settlement_status")
2193
+ else None
2194
+ )
2195
+ _charge_back_date=(
2196
+ self.charge_back_date
2197
+ if hasattr(self, "charge_back_date")
2198
+ else None
2199
+ )
2200
+ _is_recurring=(
2201
+ self.is_recurring
2202
+ if hasattr(self, "is_recurring")
2203
+ else None
2204
+ )
2205
+ _notification_email_sent=(
2206
+ self.notification_email_sent
2207
+ if hasattr(self, "notification_email_sent")
2208
+ else None
2209
+ )
2210
+ _par=(
2211
+ self.par
2212
+ if hasattr(self, "par")
2213
+ else None
2214
+ )
2215
+ _reason_code_id=(
2216
+ self.reason_code_id
2217
+ if hasattr(self, "reason_code_id")
2218
+ else None
2219
+ )
2220
+ _recurring_id=(
2221
+ self.recurring_id
2222
+ if hasattr(self, "recurring_id")
2223
+ else None
2224
+ )
2225
+ _settle_date=(
2226
+ self.settle_date
2227
+ if hasattr(self, "settle_date")
2228
+ else None
2229
+ )
2230
+ _status_code=(
2231
+ self.status_code
2232
+ if hasattr(self, "status_code")
2233
+ else None
2234
+ )
2235
+ _transaction_batch_id=(
2236
+ self.transaction_batch_id
2237
+ if hasattr(self, "transaction_batch_id")
2238
+ else None
2239
+ )
2240
+ _type_id=(
2241
+ self.type_id
2242
+ if hasattr(self, "type_id")
2243
+ else None
2244
+ )
2245
+ _verbiage=(
2246
+ self.verbiage
2247
+ if hasattr(self, "verbiage")
2248
+ else None
2249
+ )
2250
+ _voucher_number=(
2251
+ self.voucher_number
2252
+ if hasattr(self, "voucher_number")
2253
+ else None
2254
+ )
2255
+ _void_date=(
2256
+ self.void_date
2257
+ if hasattr(self, "void_date")
2258
+ else None
2259
+ )
2260
+ _batch=(
2261
+ self.batch
2262
+ if hasattr(self, "batch")
2263
+ else None
2264
+ )
2265
+ _terms_agree=(
2266
+ self.terms_agree
2267
+ if hasattr(self, "terms_agree")
2268
+ else None
2269
+ )
2270
+ _response_message=(
2271
+ self.response_message
2272
+ if hasattr(self, "response_message")
2273
+ else None
2274
+ )
2275
+ _return_date=(
2276
+ self.return_date
2277
+ if hasattr(self, "return_date")
2278
+ else None
2279
+ )
2280
+ _trx_source_id=(
2281
+ self.trx_source_id
2282
+ if hasattr(self, "trx_source_id")
2283
+ else None
2284
+ )
2285
+ _routing_number=(
2286
+ self.routing_number
2287
+ if hasattr(self, "routing_number")
2288
+ else None
2289
+ )
2290
+ _trx_source_code=(
2291
+ self.trx_source_code
2292
+ if hasattr(self, "trx_source_code")
2293
+ else None
2294
+ )
2295
+ _paylink_id=(
2296
+ self.paylink_id
2297
+ if hasattr(self, "paylink_id")
2298
+ else None
2299
+ )
2300
+ _is_accountvault=(
2301
+ self.is_accountvault
2302
+ if hasattr(self, "is_accountvault")
2303
+ else None
2304
+ )
2305
+ _created_user_id=(
2306
+ self.created_user_id
2307
+ if hasattr(self, "created_user_id")
2308
+ else None
2309
+ )
2310
+ _modified_user_id=(
2311
+ self.modified_user_id
2312
+ if hasattr(self, "modified_user_id")
2313
+ else None
2314
+ )
2315
+ _transaction_code=(
2316
+ self.transaction_code
2317
+ if hasattr(self, "transaction_code")
2318
+ else None
2319
+ )
2320
+ _effective_date=(
2321
+ self.effective_date
2322
+ if hasattr(self, "effective_date")
2323
+ else None
2324
+ )
2325
+ _notification_phone=(
2326
+ self.notification_phone
2327
+ if hasattr(self, "notification_phone")
2328
+ else None
2329
+ )
2330
+ _cavv_result=(
2331
+ self.cavv_result
2332
+ if hasattr(self, "cavv_result")
2333
+ else None
2334
+ )
2335
+ _is_token=(
2336
+ self.is_token
2337
+ if hasattr(self, "is_token")
2338
+ else None
2339
+ )
2340
+ _account_vault_id=(
2341
+ self.account_vault_id
2342
+ if hasattr(self, "account_vault_id")
2343
+ else None
2344
+ )
2345
+ _hosted_payment_page_id=(
2346
+ self.hosted_payment_page_id
2347
+ if hasattr(self, "hosted_payment_page_id")
2348
+ else None
2349
+ )
2350
+ _stan=(
2351
+ self.stan
2352
+ if hasattr(self, "stan")
2353
+ else None
2354
+ )
2355
+ _currency=(
2356
+ self.currency
2357
+ if hasattr(self, "currency")
2358
+ else None
2359
+ )
2360
+ _card_bin=(
2361
+ self.card_bin
2362
+ if hasattr(self, "card_bin")
2363
+ else None
2364
+ )
2365
+ _wallet_type=(
2366
+ self.wallet_type
2367
+ if hasattr(self, "wallet_type")
2368
+ else None
2369
+ )
2370
+ _additional_properties=self.additional_properties
2371
+ return (
2372
+ f"{self.__class__.__name__}("
2373
+ f"additional_amounts={_additional_amounts!r}, "
2374
+ f"billing_address={_billing_address!r}, "
2375
+ f"checkin_date={_checkin_date!r}, "
2376
+ f"checkout_date={_checkout_date!r}, "
2377
+ f"clerk_number={_clerk_number!r}, "
2378
+ f"contact_api_id={_contact_api_id!r}, "
2379
+ f"contact_id={_contact_id!r}, "
2380
+ f"custom_data={_custom_data!r}, "
2381
+ f"customer_id={_customer_id!r}, "
2382
+ f"description={_description!r}, "
2383
+ f"identity_verification={_identity_verification!r}, "
2384
+ f"iias_ind={_iias_ind!r}, "
2385
+ f"image_front={_image_front!r}, "
2386
+ f"image_back={_image_back!r}, "
2387
+ f"installment={_installment!r}, "
2388
+ f"installment_number={_installment_number!r}, "
2389
+ f"installment_count={_installment_count!r}, "
2390
+ f"recurring_flag={_recurring_flag!r}, "
2391
+ f"installment_counter={_installment_counter!r}, "
2392
+ f"installment_total={_installment_total!r}, "
2393
+ f"subscription={_subscription!r}, "
2394
+ f"standing_order={_standing_order!r}, "
2395
+ f"location_api_id={_location_api_id!r}, "
2396
+ f"location_id={_location_id!r}, "
2397
+ f"product_transaction_id={_product_transaction_id!r}, "
2398
+ f"advance_deposit={_advance_deposit!r}, "
2399
+ f"no_show={_no_show!r}, "
2400
+ f"notification_email_address={_notification_email_address!r}, "
2401
+ f"order_number={_order_number!r}, "
2402
+ f"po_number={_po_number!r}, "
2403
+ f"quick_invoice_id={_quick_invoice_id!r}, "
2404
+ f"recurring={_recurring!r}, "
2405
+ f"recurring_number={_recurring_number!r}, "
2406
+ f"room_num={_room_num!r}, "
2407
+ f"room_rate={_room_rate!r}, "
2408
+ f"save_account={_save_account!r}, "
2409
+ f"save_account_title={_save_account_title!r}, "
2410
+ f"subtotal_amount={_subtotal_amount!r}, "
2411
+ f"surcharge_amount={_surcharge_amount!r}, "
2412
+ f"tags={_tags!r}, "
2413
+ f"tax={_tax!r}, "
2414
+ f"tip_amount={_tip_amount!r}, "
2415
+ f"transaction_amount={_transaction_amount!r}, "
2416
+ f"secondary_amount={_secondary_amount!r}, "
2417
+ f"transaction_api_id={_transaction_api_id!r}, "
2418
+ f"transaction_c_1={_transaction_c_1!r}, "
2419
+ f"transaction_c_2={_transaction_c_2!r}, "
2420
+ f"transaction_c_3={_transaction_c_3!r}, "
2421
+ f"bank_funded_only_override={_bank_funded_only_override!r}, "
2422
+ f"allow_partial_authorization_override={_allow_partial_authorization_override!r}, "
2423
+ f"auto_decline_cvv_override={_auto_decline_cvv_override!r}, "
2424
+ f"auto_decline_street_override={_auto_decline_street_override!r}, "
2425
+ f"auto_decline_zip_override={_auto_decline_zip_override!r}, "
2426
+ f"ebt_type={_ebt_type!r}, "
2427
+ f"currency_code={_currency_code!r}, "
2428
+ f"id={_id!r}, "
2429
+ f"created_ts={_created_ts!r}, "
2430
+ f"modified_ts={_modified_ts!r}, "
2431
+ f"terminal_id={_terminal_id!r}, "
2432
+ f"account_holder_name={_account_holder_name!r}, "
2433
+ f"account_type={_account_type!r}, "
2434
+ f"token_api_id={_token_api_id!r}, "
2435
+ f"token_id={_token_id!r}, "
2436
+ f"ach_identifier={_ach_identifier!r}, "
2437
+ f"ach_sec_code={_ach_sec_code!r}, "
2438
+ f"auth_amount={_auth_amount!r}, "
2439
+ f"auth_code={_auth_code!r}, "
2440
+ f"avs={_avs!r}, "
2441
+ f"avs_enhanced={_avs_enhanced!r}, "
2442
+ f"cardholder_present={_cardholder_present!r}, "
2443
+ f"card_present={_card_present!r}, "
2444
+ f"check_number={_check_number!r}, "
2445
+ f"customer_ip={_customer_ip!r}, "
2446
+ f"cvv_response={_cvv_response!r}, "
2447
+ f"entry_mode_id={_entry_mode_id!r}, "
2448
+ f"emv_receipt_data={_emv_receipt_data!r}, "
2449
+ f"first_six={_first_six!r}, "
2450
+ f"last_four={_last_four!r}, "
2451
+ f"payment_method={_payment_method!r}, "
2452
+ f"terminal_serial_number={_terminal_serial_number!r}, "
2453
+ f"transaction_settlement_status={_transaction_settlement_status!r}, "
2454
+ f"charge_back_date={_charge_back_date!r}, "
2455
+ f"is_recurring={_is_recurring!r}, "
2456
+ f"notification_email_sent={_notification_email_sent!r}, "
2457
+ f"par={_par!r}, "
2458
+ f"reason_code_id={_reason_code_id!r}, "
2459
+ f"recurring_id={_recurring_id!r}, "
2460
+ f"settle_date={_settle_date!r}, "
2461
+ f"status_code={_status_code!r}, "
2462
+ f"transaction_batch_id={_transaction_batch_id!r}, "
2463
+ f"type_id={_type_id!r}, "
2464
+ f"verbiage={_verbiage!r}, "
2465
+ f"voucher_number={_voucher_number!r}, "
2466
+ f"void_date={_void_date!r}, "
2467
+ f"batch={_batch!r}, "
2468
+ f"terms_agree={_terms_agree!r}, "
2469
+ f"response_message={_response_message!r}, "
2470
+ f"return_date={_return_date!r}, "
2471
+ f"trx_source_id={_trx_source_id!r}, "
2472
+ f"routing_number={_routing_number!r}, "
2473
+ f"trx_source_code={_trx_source_code!r}, "
2474
+ f"paylink_id={_paylink_id!r}, "
2475
+ f"is_accountvault={_is_accountvault!r}, "
2476
+ f"created_user_id={_created_user_id!r}, "
2477
+ f"modified_user_id={_modified_user_id!r}, "
2478
+ f"transaction_code={_transaction_code!r}, "
2479
+ f"effective_date={_effective_date!r}, "
2480
+ f"notification_phone={_notification_phone!r}, "
2481
+ f"cavv_result={_cavv_result!r}, "
2482
+ f"is_token={_is_token!r}, "
2483
+ f"account_vault_id={_account_vault_id!r}, "
2484
+ f"hosted_payment_page_id={_hosted_payment_page_id!r}, "
2485
+ f"stan={_stan!r}, "
2486
+ f"currency={_currency!r}, "
2487
+ f"card_bin={_card_bin!r}, "
2488
+ f"wallet_type={_wallet_type!r}, "
2489
+ f"additional_properties={_additional_properties!r}, "
2490
+ f")"
2491
+ )
2492
+
2493
+ def __str__(self):
2494
+ """Return a human-readable string representation."""
2495
+ _additional_amounts=(
2496
+ self.additional_amounts
2497
+ if hasattr(self, "additional_amounts")
2498
+ else None
2499
+ )
2500
+ _billing_address=(
2501
+ self.billing_address
2502
+ if hasattr(self, "billing_address")
2503
+ else None
2504
+ )
2505
+ _checkin_date=(
2506
+ self.checkin_date
2507
+ if hasattr(self, "checkin_date")
2508
+ else None
2509
+ )
2510
+ _checkout_date=(
2511
+ self.checkout_date
2512
+ if hasattr(self, "checkout_date")
2513
+ else None
2514
+ )
2515
+ _clerk_number=(
2516
+ self.clerk_number
2517
+ if hasattr(self, "clerk_number")
2518
+ else None
2519
+ )
2520
+ _contact_api_id=(
2521
+ self.contact_api_id
2522
+ if hasattr(self, "contact_api_id")
2523
+ else None
2524
+ )
2525
+ _contact_id=(
2526
+ self.contact_id
2527
+ if hasattr(self, "contact_id")
2528
+ else None
2529
+ )
2530
+ _custom_data=(
2531
+ self.custom_data
2532
+ if hasattr(self, "custom_data")
2533
+ else None
2534
+ )
2535
+ _customer_id=(
2536
+ self.customer_id
2537
+ if hasattr(self, "customer_id")
2538
+ else None
2539
+ )
2540
+ _description=(
2541
+ self.description
2542
+ if hasattr(self, "description")
2543
+ else None
2544
+ )
2545
+ _identity_verification=(
2546
+ self.identity_verification
2547
+ if hasattr(self, "identity_verification")
2548
+ else None
2549
+ )
2550
+ _iias_ind=(
2551
+ self.iias_ind
2552
+ if hasattr(self, "iias_ind")
2553
+ else None
2554
+ )
2555
+ _image_front=(
2556
+ self.image_front
2557
+ if hasattr(self, "image_front")
2558
+ else None
2559
+ )
2560
+ _image_back=(
2561
+ self.image_back
2562
+ if hasattr(self, "image_back")
2563
+ else None
2564
+ )
2565
+ _installment=(
2566
+ self.installment
2567
+ if hasattr(self, "installment")
2568
+ else None
2569
+ )
2570
+ _installment_number=(
2571
+ self.installment_number
2572
+ if hasattr(self, "installment_number")
2573
+ else None
2574
+ )
2575
+ _installment_count=(
2576
+ self.installment_count
2577
+ if hasattr(self, "installment_count")
2578
+ else None
2579
+ )
2580
+ _recurring_flag=(
2581
+ self.recurring_flag
2582
+ if hasattr(self, "recurring_flag")
2583
+ else None
2584
+ )
2585
+ _installment_counter=(
2586
+ self.installment_counter
2587
+ if hasattr(self, "installment_counter")
2588
+ else None
2589
+ )
2590
+ _installment_total=(
2591
+ self.installment_total
2592
+ if hasattr(self, "installment_total")
2593
+ else None
2594
+ )
2595
+ _subscription=(
2596
+ self.subscription
2597
+ if hasattr(self, "subscription")
2598
+ else None
2599
+ )
2600
+ _standing_order=(
2601
+ self.standing_order
2602
+ if hasattr(self, "standing_order")
2603
+ else None
2604
+ )
2605
+ _location_api_id=(
2606
+ self.location_api_id
2607
+ if hasattr(self, "location_api_id")
2608
+ else None
2609
+ )
2610
+ _location_id=(
2611
+ self.location_id
2612
+ if hasattr(self, "location_id")
2613
+ else None
2614
+ )
2615
+ _product_transaction_id=(
2616
+ self.product_transaction_id
2617
+ if hasattr(self, "product_transaction_id")
2618
+ else None
2619
+ )
2620
+ _advance_deposit=(
2621
+ self.advance_deposit
2622
+ if hasattr(self, "advance_deposit")
2623
+ else None
2624
+ )
2625
+ _no_show=(
2626
+ self.no_show
2627
+ if hasattr(self, "no_show")
2628
+ else None
2629
+ )
2630
+ _notification_email_address=(
2631
+ self.notification_email_address
2632
+ if hasattr(self, "notification_email_address")
2633
+ else None
2634
+ )
2635
+ _order_number=(
2636
+ self.order_number
2637
+ if hasattr(self, "order_number")
2638
+ else None
2639
+ )
2640
+ _po_number=(
2641
+ self.po_number
2642
+ if hasattr(self, "po_number")
2643
+ else None
2644
+ )
2645
+ _quick_invoice_id=(
2646
+ self.quick_invoice_id
2647
+ if hasattr(self, "quick_invoice_id")
2648
+ else None
2649
+ )
2650
+ _recurring=(
2651
+ self.recurring
2652
+ if hasattr(self, "recurring")
2653
+ else None
2654
+ )
2655
+ _recurring_number=(
2656
+ self.recurring_number
2657
+ if hasattr(self, "recurring_number")
2658
+ else None
2659
+ )
2660
+ _room_num=(
2661
+ self.room_num
2662
+ if hasattr(self, "room_num")
2663
+ else None
2664
+ )
2665
+ _room_rate=(
2666
+ self.room_rate
2667
+ if hasattr(self, "room_rate")
2668
+ else None
2669
+ )
2670
+ _save_account=(
2671
+ self.save_account
2672
+ if hasattr(self, "save_account")
2673
+ else None
2674
+ )
2675
+ _save_account_title=(
2676
+ self.save_account_title
2677
+ if hasattr(self, "save_account_title")
2678
+ else None
2679
+ )
2680
+ _subtotal_amount=(
2681
+ self.subtotal_amount
2682
+ if hasattr(self, "subtotal_amount")
2683
+ else None
2684
+ )
2685
+ _surcharge_amount=(
2686
+ self.surcharge_amount
2687
+ if hasattr(self, "surcharge_amount")
2688
+ else None
2689
+ )
2690
+ _tags=(
2691
+ self.tags
2692
+ if hasattr(self, "tags")
2693
+ else None
2694
+ )
2695
+ _tax=(
2696
+ self.tax
2697
+ if hasattr(self, "tax")
2698
+ else None
2699
+ )
2700
+ _tip_amount=(
2701
+ self.tip_amount
2702
+ if hasattr(self, "tip_amount")
2703
+ else None
2704
+ )
2705
+ _transaction_amount=(
2706
+ self.transaction_amount
2707
+ if hasattr(self, "transaction_amount")
2708
+ else None
2709
+ )
2710
+ _secondary_amount=(
2711
+ self.secondary_amount
2712
+ if hasattr(self, "secondary_amount")
2713
+ else None
2714
+ )
2715
+ _transaction_api_id=(
2716
+ self.transaction_api_id
2717
+ if hasattr(self, "transaction_api_id")
2718
+ else None
2719
+ )
2720
+ _transaction_c_1=(
2721
+ self.transaction_c_1
2722
+ if hasattr(self, "transaction_c_1")
2723
+ else None
2724
+ )
2725
+ _transaction_c_2=(
2726
+ self.transaction_c_2
2727
+ if hasattr(self, "transaction_c_2")
2728
+ else None
2729
+ )
2730
+ _transaction_c_3=(
2731
+ self.transaction_c_3
2732
+ if hasattr(self, "transaction_c_3")
2733
+ else None
2734
+ )
2735
+ _bank_funded_only_override=(
2736
+ self.bank_funded_only_override
2737
+ if hasattr(self, "bank_funded_only_override")
2738
+ else None
2739
+ )
2740
+ _allow_partial_authorization_override=(
2741
+ self.allow_partial_authorization_override
2742
+ if hasattr(self, "allow_partial_authorization_override")
2743
+ else None
2744
+ )
2745
+ _auto_decline_cvv_override=(
2746
+ self.auto_decline_cvv_override
2747
+ if hasattr(self, "auto_decline_cvv_override")
2748
+ else None
2749
+ )
2750
+ _auto_decline_street_override=(
2751
+ self.auto_decline_street_override
2752
+ if hasattr(self, "auto_decline_street_override")
2753
+ else None
2754
+ )
2755
+ _auto_decline_zip_override=(
2756
+ self.auto_decline_zip_override
2757
+ if hasattr(self, "auto_decline_zip_override")
2758
+ else None
2759
+ )
2760
+ _ebt_type=(
2761
+ self.ebt_type
2762
+ if hasattr(self, "ebt_type")
2763
+ else None
2764
+ )
2765
+ _currency_code=(
2766
+ self.currency_code
2767
+ if hasattr(self, "currency_code")
2768
+ else None
2769
+ )
2770
+ _id=(
2771
+ self.id
2772
+ if hasattr(self, "id")
2773
+ else None
2774
+ )
2775
+ _created_ts=(
2776
+ self.created_ts
2777
+ if hasattr(self, "created_ts")
2778
+ else None
2779
+ )
2780
+ _modified_ts=(
2781
+ self.modified_ts
2782
+ if hasattr(self, "modified_ts")
2783
+ else None
2784
+ )
2785
+ _terminal_id=(
2786
+ self.terminal_id
2787
+ if hasattr(self, "terminal_id")
2788
+ else None
2789
+ )
2790
+ _account_holder_name=(
2791
+ self.account_holder_name
2792
+ if hasattr(self, "account_holder_name")
2793
+ else None
2794
+ )
2795
+ _account_type=(
2796
+ self.account_type
2797
+ if hasattr(self, "account_type")
2798
+ else None
2799
+ )
2800
+ _token_api_id=(
2801
+ self.token_api_id
2802
+ if hasattr(self, "token_api_id")
2803
+ else None
2804
+ )
2805
+ _token_id=(
2806
+ self.token_id
2807
+ if hasattr(self, "token_id")
2808
+ else None
2809
+ )
2810
+ _ach_identifier=(
2811
+ self.ach_identifier
2812
+ if hasattr(self, "ach_identifier")
2813
+ else None
2814
+ )
2815
+ _ach_sec_code=(
2816
+ self.ach_sec_code
2817
+ if hasattr(self, "ach_sec_code")
2818
+ else None
2819
+ )
2820
+ _auth_amount=(
2821
+ self.auth_amount
2822
+ if hasattr(self, "auth_amount")
2823
+ else None
2824
+ )
2825
+ _auth_code=(
2826
+ self.auth_code
2827
+ if hasattr(self, "auth_code")
2828
+ else None
2829
+ )
2830
+ _avs=(
2831
+ self.avs
2832
+ if hasattr(self, "avs")
2833
+ else None
2834
+ )
2835
+ _avs_enhanced=(
2836
+ self.avs_enhanced
2837
+ if hasattr(self, "avs_enhanced")
2838
+ else None
2839
+ )
2840
+ _cardholder_present=(
2841
+ self.cardholder_present
2842
+ if hasattr(self, "cardholder_present")
2843
+ else None
2844
+ )
2845
+ _card_present=(
2846
+ self.card_present
2847
+ if hasattr(self, "card_present")
2848
+ else None
2849
+ )
2850
+ _check_number=(
2851
+ self.check_number
2852
+ if hasattr(self, "check_number")
2853
+ else None
2854
+ )
2855
+ _customer_ip=(
2856
+ self.customer_ip
2857
+ if hasattr(self, "customer_ip")
2858
+ else None
2859
+ )
2860
+ _cvv_response=(
2861
+ self.cvv_response
2862
+ if hasattr(self, "cvv_response")
2863
+ else None
2864
+ )
2865
+ _entry_mode_id=(
2866
+ self.entry_mode_id
2867
+ if hasattr(self, "entry_mode_id")
2868
+ else None
2869
+ )
2870
+ _emv_receipt_data=(
2871
+ self.emv_receipt_data
2872
+ if hasattr(self, "emv_receipt_data")
2873
+ else None
2874
+ )
2875
+ _first_six=(
2876
+ self.first_six
2877
+ if hasattr(self, "first_six")
2878
+ else None
2879
+ )
2880
+ _last_four=(
2881
+ self.last_four
2882
+ if hasattr(self, "last_four")
2883
+ else None
2884
+ )
2885
+ _payment_method=(
2886
+ self.payment_method
2887
+ if hasattr(self, "payment_method")
2888
+ else None
2889
+ )
2890
+ _terminal_serial_number=(
2891
+ self.terminal_serial_number
2892
+ if hasattr(self, "terminal_serial_number")
2893
+ else None
2894
+ )
2895
+ _transaction_settlement_status=(
2896
+ self.transaction_settlement_status
2897
+ if hasattr(self, "transaction_settlement_status")
2898
+ else None
2899
+ )
2900
+ _charge_back_date=(
2901
+ self.charge_back_date
2902
+ if hasattr(self, "charge_back_date")
2903
+ else None
2904
+ )
2905
+ _is_recurring=(
2906
+ self.is_recurring
2907
+ if hasattr(self, "is_recurring")
2908
+ else None
2909
+ )
2910
+ _notification_email_sent=(
2911
+ self.notification_email_sent
2912
+ if hasattr(self, "notification_email_sent")
2913
+ else None
2914
+ )
2915
+ _par=(
2916
+ self.par
2917
+ if hasattr(self, "par")
2918
+ else None
2919
+ )
2920
+ _reason_code_id=(
2921
+ self.reason_code_id
2922
+ if hasattr(self, "reason_code_id")
2923
+ else None
2924
+ )
2925
+ _recurring_id=(
2926
+ self.recurring_id
2927
+ if hasattr(self, "recurring_id")
2928
+ else None
2929
+ )
2930
+ _settle_date=(
2931
+ self.settle_date
2932
+ if hasattr(self, "settle_date")
2933
+ else None
2934
+ )
2935
+ _status_code=(
2936
+ self.status_code
2937
+ if hasattr(self, "status_code")
2938
+ else None
2939
+ )
2940
+ _transaction_batch_id=(
2941
+ self.transaction_batch_id
2942
+ if hasattr(self, "transaction_batch_id")
2943
+ else None
2944
+ )
2945
+ _type_id=(
2946
+ self.type_id
2947
+ if hasattr(self, "type_id")
2948
+ else None
2949
+ )
2950
+ _verbiage=(
2951
+ self.verbiage
2952
+ if hasattr(self, "verbiage")
2953
+ else None
2954
+ )
2955
+ _voucher_number=(
2956
+ self.voucher_number
2957
+ if hasattr(self, "voucher_number")
2958
+ else None
2959
+ )
2960
+ _void_date=(
2961
+ self.void_date
2962
+ if hasattr(self, "void_date")
2963
+ else None
2964
+ )
2965
+ _batch=(
2966
+ self.batch
2967
+ if hasattr(self, "batch")
2968
+ else None
2969
+ )
2970
+ _terms_agree=(
2971
+ self.terms_agree
2972
+ if hasattr(self, "terms_agree")
2973
+ else None
2974
+ )
2975
+ _response_message=(
2976
+ self.response_message
2977
+ if hasattr(self, "response_message")
2978
+ else None
2979
+ )
2980
+ _return_date=(
2981
+ self.return_date
2982
+ if hasattr(self, "return_date")
2983
+ else None
2984
+ )
2985
+ _trx_source_id=(
2986
+ self.trx_source_id
2987
+ if hasattr(self, "trx_source_id")
2988
+ else None
2989
+ )
2990
+ _routing_number=(
2991
+ self.routing_number
2992
+ if hasattr(self, "routing_number")
2993
+ else None
2994
+ )
2995
+ _trx_source_code=(
2996
+ self.trx_source_code
2997
+ if hasattr(self, "trx_source_code")
2998
+ else None
2999
+ )
3000
+ _paylink_id=(
3001
+ self.paylink_id
3002
+ if hasattr(self, "paylink_id")
3003
+ else None
3004
+ )
3005
+ _is_accountvault=(
3006
+ self.is_accountvault
3007
+ if hasattr(self, "is_accountvault")
3008
+ else None
3009
+ )
3010
+ _created_user_id=(
3011
+ self.created_user_id
3012
+ if hasattr(self, "created_user_id")
3013
+ else None
3014
+ )
3015
+ _modified_user_id=(
3016
+ self.modified_user_id
3017
+ if hasattr(self, "modified_user_id")
3018
+ else None
3019
+ )
3020
+ _transaction_code=(
3021
+ self.transaction_code
3022
+ if hasattr(self, "transaction_code")
3023
+ else None
3024
+ )
3025
+ _effective_date=(
3026
+ self.effective_date
3027
+ if hasattr(self, "effective_date")
3028
+ else None
3029
+ )
3030
+ _notification_phone=(
3031
+ self.notification_phone
3032
+ if hasattr(self, "notification_phone")
3033
+ else None
3034
+ )
3035
+ _cavv_result=(
3036
+ self.cavv_result
3037
+ if hasattr(self, "cavv_result")
3038
+ else None
3039
+ )
3040
+ _is_token=(
3041
+ self.is_token
3042
+ if hasattr(self, "is_token")
3043
+ else None
3044
+ )
3045
+ _account_vault_id=(
3046
+ self.account_vault_id
3047
+ if hasattr(self, "account_vault_id")
3048
+ else None
3049
+ )
3050
+ _hosted_payment_page_id=(
3051
+ self.hosted_payment_page_id
3052
+ if hasattr(self, "hosted_payment_page_id")
3053
+ else None
3054
+ )
3055
+ _stan=(
3056
+ self.stan
3057
+ if hasattr(self, "stan")
3058
+ else None
3059
+ )
3060
+ _currency=(
3061
+ self.currency
3062
+ if hasattr(self, "currency")
3063
+ else None
3064
+ )
3065
+ _card_bin=(
3066
+ self.card_bin
3067
+ if hasattr(self, "card_bin")
3068
+ else None
3069
+ )
3070
+ _wallet_type=(
3071
+ self.wallet_type
3072
+ if hasattr(self, "wallet_type")
3073
+ else None
3074
+ )
3075
+ _additional_properties=self.additional_properties
3076
+ return (
3077
+ f"{self.__class__.__name__}("
3078
+ f"additional_amounts={_additional_amounts!s}, "
3079
+ f"billing_address={_billing_address!s}, "
3080
+ f"checkin_date={_checkin_date!s}, "
3081
+ f"checkout_date={_checkout_date!s}, "
3082
+ f"clerk_number={_clerk_number!s}, "
3083
+ f"contact_api_id={_contact_api_id!s}, "
3084
+ f"contact_id={_contact_id!s}, "
3085
+ f"custom_data={_custom_data!s}, "
3086
+ f"customer_id={_customer_id!s}, "
3087
+ f"description={_description!s}, "
3088
+ f"identity_verification={_identity_verification!s}, "
3089
+ f"iias_ind={_iias_ind!s}, "
3090
+ f"image_front={_image_front!s}, "
3091
+ f"image_back={_image_back!s}, "
3092
+ f"installment={_installment!s}, "
3093
+ f"installment_number={_installment_number!s}, "
3094
+ f"installment_count={_installment_count!s}, "
3095
+ f"recurring_flag={_recurring_flag!s}, "
3096
+ f"installment_counter={_installment_counter!s}, "
3097
+ f"installment_total={_installment_total!s}, "
3098
+ f"subscription={_subscription!s}, "
3099
+ f"standing_order={_standing_order!s}, "
3100
+ f"location_api_id={_location_api_id!s}, "
3101
+ f"location_id={_location_id!s}, "
3102
+ f"product_transaction_id={_product_transaction_id!s}, "
3103
+ f"advance_deposit={_advance_deposit!s}, "
3104
+ f"no_show={_no_show!s}, "
3105
+ f"notification_email_address={_notification_email_address!s}, "
3106
+ f"order_number={_order_number!s}, "
3107
+ f"po_number={_po_number!s}, "
3108
+ f"quick_invoice_id={_quick_invoice_id!s}, "
3109
+ f"recurring={_recurring!s}, "
3110
+ f"recurring_number={_recurring_number!s}, "
3111
+ f"room_num={_room_num!s}, "
3112
+ f"room_rate={_room_rate!s}, "
3113
+ f"save_account={_save_account!s}, "
3114
+ f"save_account_title={_save_account_title!s}, "
3115
+ f"subtotal_amount={_subtotal_amount!s}, "
3116
+ f"surcharge_amount={_surcharge_amount!s}, "
3117
+ f"tags={_tags!s}, "
3118
+ f"tax={_tax!s}, "
3119
+ f"tip_amount={_tip_amount!s}, "
3120
+ f"transaction_amount={_transaction_amount!s}, "
3121
+ f"secondary_amount={_secondary_amount!s}, "
3122
+ f"transaction_api_id={_transaction_api_id!s}, "
3123
+ f"transaction_c_1={_transaction_c_1!s}, "
3124
+ f"transaction_c_2={_transaction_c_2!s}, "
3125
+ f"transaction_c_3={_transaction_c_3!s}, "
3126
+ f"bank_funded_only_override={_bank_funded_only_override!s}, "
3127
+ f"allow_partial_authorization_override={_allow_partial_authorization_override!s}, "
3128
+ f"auto_decline_cvv_override={_auto_decline_cvv_override!s}, "
3129
+ f"auto_decline_street_override={_auto_decline_street_override!s}, "
3130
+ f"auto_decline_zip_override={_auto_decline_zip_override!s}, "
3131
+ f"ebt_type={_ebt_type!s}, "
3132
+ f"currency_code={_currency_code!s}, "
3133
+ f"id={_id!s}, "
3134
+ f"created_ts={_created_ts!s}, "
3135
+ f"modified_ts={_modified_ts!s}, "
3136
+ f"terminal_id={_terminal_id!s}, "
3137
+ f"account_holder_name={_account_holder_name!s}, "
3138
+ f"account_type={_account_type!s}, "
3139
+ f"token_api_id={_token_api_id!s}, "
3140
+ f"token_id={_token_id!s}, "
3141
+ f"ach_identifier={_ach_identifier!s}, "
3142
+ f"ach_sec_code={_ach_sec_code!s}, "
3143
+ f"auth_amount={_auth_amount!s}, "
3144
+ f"auth_code={_auth_code!s}, "
3145
+ f"avs={_avs!s}, "
3146
+ f"avs_enhanced={_avs_enhanced!s}, "
3147
+ f"cardholder_present={_cardholder_present!s}, "
3148
+ f"card_present={_card_present!s}, "
3149
+ f"check_number={_check_number!s}, "
3150
+ f"customer_ip={_customer_ip!s}, "
3151
+ f"cvv_response={_cvv_response!s}, "
3152
+ f"entry_mode_id={_entry_mode_id!s}, "
3153
+ f"emv_receipt_data={_emv_receipt_data!s}, "
3154
+ f"first_six={_first_six!s}, "
3155
+ f"last_four={_last_four!s}, "
3156
+ f"payment_method={_payment_method!s}, "
3157
+ f"terminal_serial_number={_terminal_serial_number!s}, "
3158
+ f"transaction_settlement_status={_transaction_settlement_status!s}, "
3159
+ f"charge_back_date={_charge_back_date!s}, "
3160
+ f"is_recurring={_is_recurring!s}, "
3161
+ f"notification_email_sent={_notification_email_sent!s}, "
3162
+ f"par={_par!s}, "
3163
+ f"reason_code_id={_reason_code_id!s}, "
3164
+ f"recurring_id={_recurring_id!s}, "
3165
+ f"settle_date={_settle_date!s}, "
3166
+ f"status_code={_status_code!s}, "
3167
+ f"transaction_batch_id={_transaction_batch_id!s}, "
3168
+ f"type_id={_type_id!s}, "
3169
+ f"verbiage={_verbiage!s}, "
3170
+ f"voucher_number={_voucher_number!s}, "
3171
+ f"void_date={_void_date!s}, "
3172
+ f"batch={_batch!s}, "
3173
+ f"terms_agree={_terms_agree!s}, "
3174
+ f"response_message={_response_message!s}, "
3175
+ f"return_date={_return_date!s}, "
3176
+ f"trx_source_id={_trx_source_id!s}, "
3177
+ f"routing_number={_routing_number!s}, "
3178
+ f"trx_source_code={_trx_source_code!s}, "
3179
+ f"paylink_id={_paylink_id!s}, "
3180
+ f"is_accountvault={_is_accountvault!s}, "
3181
+ f"created_user_id={_created_user_id!s}, "
3182
+ f"modified_user_id={_modified_user_id!s}, "
3183
+ f"transaction_code={_transaction_code!s}, "
3184
+ f"effective_date={_effective_date!s}, "
3185
+ f"notification_phone={_notification_phone!s}, "
3186
+ f"cavv_result={_cavv_result!s}, "
3187
+ f"is_token={_is_token!s}, "
3188
+ f"account_vault_id={_account_vault_id!s}, "
3189
+ f"hosted_payment_page_id={_hosted_payment_page_id!s}, "
3190
+ f"stan={_stan!s}, "
3191
+ f"currency={_currency!s}, "
3192
+ f"card_bin={_card_bin!s}, "
3193
+ f"wallet_type={_wallet_type!s}, "
3194
+ f"additional_properties={_additional_properties!s}, "
3195
+ f")"
3196
+ )