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,3048 @@
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.batch_risk_config import (
9
+ BatchRiskConfig,
10
+ )
11
+ from fortisapi.models.level_3_default import (
12
+ Level3Default,
13
+ )
14
+
15
+
16
+ class CcProductTransaction(object):
17
+ """Implementation of the 'CcProductTransaction' model.
18
+
19
+ Cc Product Transaction Information on `expand`
20
+
21
+ Attributes:
22
+ processor_version (str): Processor Version
23
+ industry_type (IndustryTypeEnum): Industry Type
24
+ title (str): Title
25
+ payment_method (PaymentMethodEnum): Payment method
26
+ processor (ProcessorEnum): Processor
27
+ mcc (str): MCC
28
+ tax_surcharge_config (TaxSurchargeConfigEnum): Tax Surcharge Config
29
+ terminal_id (str): Terminal ID
30
+ partner (PartnerEnum): Partner
31
+ product_ach_pv_store_id (str): Product Ach Pv Store ID
32
+ invoice_adjustment_title (str): Invoice Adjustment Title
33
+ location_id (str): Location ID
34
+ location_api_id (str): Location Api ID
35
+ billing_location_api_id (str): Billing Location API ID
36
+ portfolio_id (str): Portfolio ID
37
+ portfolio_validation_rule (str): Product Validation Rule
38
+ sub_processor (str): Sub Processor
39
+ surcharge (Any): Surcharge
40
+ processor_data (Any): The model property of type Any.
41
+ vt_clerk_number (bool): Vt Clerk Number
42
+ vt_billing_phone (bool): Card Type JCB
43
+ vt_enable_tip (bool): VT Enable Tip
44
+ ach_allow_debit (bool): Ach Allow Debit
45
+ ach_allow_credit (bool): Ach Allow Credit
46
+ ach_allow_refund (bool): Ach Allow Refund
47
+ vt_cvv (bool): VT CVV
48
+ vt_street (bool): VT Street
49
+ vt_zip (bool): VT Zip
50
+ vt_order_num (bool): VT Order Num
51
+ vt_enable (bool): VT Enable
52
+ receipt_show_contact_name (bool): Receipt Show Contact Name
53
+ display_avs (bool): Display Avs
54
+ card_type_visa (bool): Card Type Visa
55
+ card_type_mc (bool): Card Type Mc
56
+ card_type_disc (bool): Card Type Disc
57
+ card_type_amex (bool): Card Type Amex
58
+ card_type_diners (bool): Card Type Dinners
59
+ card_type_jcb (bool): The model property of type bool.
60
+ card_type_ebt (bool): Card Type EBT
61
+ allow_ebt_cash_benefit (bool): Allow EBT Cash Benefit
62
+ allow_ebt_food_stamp (bool): Allow EBT Food Stamp
63
+ invoice_location (bool): Invoice Location
64
+ allow_partial_authorization (bool): Allow Partial Authorization
65
+ allow_recurring_partial_authorization (bool): Allow Recurring Partial
66
+ Authorization
67
+ auto_decline_cvv (bool): Auto Decline Cvv
68
+ auto_decline_street (bool): Auto Decline Street
69
+ auto_decline_zip (bool): Auto Decline ZIP
70
+ split_payments_allow (bool): Split Payments Allow
71
+ vt_show_custom_fields (bool): Vt Show Custom Fields
72
+ receipt_show_custom_fields (bool): Receipt Show Custom Fields
73
+ vt_override_sales_tax_allowed (bool): Vt Override Sales Tax Allowed
74
+ vt_enable_sales_tax (bool): Vt Enable Sales Tax
75
+ vt_require_zip (bool): Vt Require ZIP
76
+ vt_require_street (bool): Vt Require Street
77
+ auto_decline_cavv (bool): Auto Decline Cavv
78
+ merchant_id (str): Merchant ID
79
+ receipt_header (str): Receipt Header
80
+ receipt_footer (str): Receipt Footer
81
+ receipt_add_account_above_signature (str): Receipt Add Account Above Signature
82
+ receipt_add_recurring_above_signature (str): Receipt Add Recurring Above
83
+ Signature
84
+ receipt_vt_above_signature (str): Receipt VT Above Signature
85
+ default_transaction_type (DefaultTransactionTypeEnum): Default Transaction
86
+ Type
87
+ username (str): Username
88
+ password (str): Passowrd
89
+ current_batch (float): Current Batch
90
+ dup_check_per_batch (str): Dup Check Per Batch
91
+ agent_code (str): Agent Code
92
+ paylink_allow (bool): Paylink Allow
93
+ quick_invoice_allow (bool): Quick Invoice Allow
94
+ level_3_allow (bool): Level3 Allow
95
+ payfac_enable (bool): Payfac Enable
96
+ enable_3_ds (bool): Enable 3DS
97
+ sales_office_id (str): Sales Office ID
98
+ hosted_payment_page_max_allowed (float): Hosted Payment Page Max Allowed
99
+ hosted_payment_page_allow (bool): Hosted Payment Page Allow
100
+ surcharge_id (str): Surcharge ID
101
+ allow_big_commerce (bool): Allow Big Commerce
102
+ allow_shopify (bool): Allow Shopify
103
+ level_3_default (Level3Default): Level3 Default
104
+ cau_subscribe_type_id (CauSubscribeTypeIdEnum): Cau Subscribe Type ID
105
+ cau_account_number (str): Cau Account Number
106
+ location_billing_account_id (str): Location Billing Account ID
107
+ product_billing_group_id (str): Product Billing Group ID
108
+ account_number (str): Account number
109
+ run_avs_on_accountvault_create (bool): Run Avs On Accountvault Create
110
+ accountvault_expire_notification_email_enable (bool): Accountvault Expire
111
+ Notification Email Enable
112
+ debit_allow_void (bool): Debit Allow Void
113
+ quick_invoice_text_to_pay (bool): Quick Invoice Text To Pay
114
+ authentication_code (str): Authentication Code
115
+ sms_enable (bool): SMS Enable
116
+ vt_show_currency (bool): Vt Show Currency
117
+ receipt_show_currency (bool): Receipt Show Currency
118
+ allow_blind_refund (bool): Allow Blind Refund
119
+ vt_show_company_name (bool): Vt Show Company Name
120
+ receipt_show_company_name (bool): Receipt Show Company Name
121
+ bank_funded_only (bool): Bank Funded Only
122
+ require_cvv_on_keyed_cnp (bool): Require CVV on keyed CNP
123
+ require_cvv_on_tokenized_cnp (bool): Require CVV on tokenized CNP
124
+ show_secondary_amount (bool): Show Retained Amount
125
+ allow_secondary_amount (bool): Allow Retained Amount
126
+ show_google_pay (bool): Vt Require Street
127
+ show_apple_pay (bool): Vt Require Street
128
+ batch_risk_config (BatchRiskConfig): Batch Risk Config
129
+ currency_code (CurrencyCodeEnum): The currency code, in ISO 4217 format. It
130
+ can be either the 3-letter code (e.g., USD) or the numeric code (e.g.,
131
+ 840).
132
+ enable_ach_validation (bool): Enable ACH Validation
133
+ enable_ach_retry (bool): Enable ACH Retry
134
+ allow_softpos (bool): Allow Soft POS
135
+ allow_multi_currency (bool): Allow Multi Currency
136
+ allow_unapplied_payments (bool): Allow Unapplied Payments
137
+ id (str): User Reports ID
138
+ receipt_logo (str): Receipt Logo
139
+ active (bool): Active
140
+ tz (str): TZ
141
+ current_stan (float): Current Stan
142
+ created_ts (int): Created Time Stamp
143
+ modified_ts (int): Modified Time Stamp
144
+ created_user_id (str): User ID Created the register
145
+ modified_user_id (str): Last User ID that updated the register
146
+ product_transaction_api_id (str): Product Transaction API ID
147
+ transaction_amount_notification_threshold (int): Transaction Amount
148
+ Notification Treshold
149
+ is_secondary_amount_allowed (bool): Allow Retained Amount
150
+ fortis_id (str): The model property of type str.
151
+ product_billing_group_code (str): Product Billing Group Code
152
+ cau_subscribe_type_code (CauSubscribeTypeCodeEnum): Cau Subscribe Type Code
153
+ merchant_code (str): Merchant Code
154
+ currency (str): Currency
155
+ additional_properties (Dict[str, object]): The additional properties for the
156
+ model.
157
+
158
+ """
159
+
160
+ # Create a mapping from Model property names to API property names
161
+ _names = {
162
+ "processor_version": "processor_version",
163
+ "industry_type": "industry_type",
164
+ "title": "title",
165
+ "payment_method": "payment_method",
166
+ "processor": "processor",
167
+ "mcc": "mcc",
168
+ "tax_surcharge_config": "tax_surcharge_config",
169
+ "terminal_id": "terminal_id",
170
+ "partner": "partner",
171
+ "product_ach_pv_store_id": "product_ach_pv_store_id",
172
+ "invoice_adjustment_title": "invoice_adjustment_title",
173
+ "location_id": "location_id",
174
+ "location_api_id": "location_api_id",
175
+ "billing_location_api_id": "billing_location_api_id",
176
+ "portfolio_id": "portfolio_id",
177
+ "portfolio_validation_rule": "portfolioValidationRule",
178
+ "sub_processor": "sub_processor",
179
+ "surcharge": "surcharge",
180
+ "processor_data": "processor_data",
181
+ "vt_clerk_number": "vt_clerk_number",
182
+ "vt_billing_phone": "vt_billing_phone",
183
+ "vt_enable_tip": "vt_enable_tip",
184
+ "ach_allow_debit": "ach_allow_debit",
185
+ "ach_allow_credit": "ach_allow_credit",
186
+ "ach_allow_refund": "ach_allow_refund",
187
+ "vt_cvv": "vt_cvv",
188
+ "vt_street": "vt_street",
189
+ "vt_zip": "vt_zip",
190
+ "vt_order_num": "vt_order_num",
191
+ "vt_enable": "vt_enable",
192
+ "receipt_show_contact_name": "receipt_show_contact_name",
193
+ "display_avs": "display_avs",
194
+ "card_type_visa": "card_type_visa",
195
+ "card_type_mc": "card_type_mc",
196
+ "card_type_disc": "card_type_disc",
197
+ "card_type_amex": "card_type_amex",
198
+ "card_type_diners": "card_type_diners",
199
+ "card_type_jcb": "card_type_jcb",
200
+ "card_type_ebt": "card_type_ebt",
201
+ "allow_ebt_cash_benefit": "allow_ebt_cash_benefit",
202
+ "allow_ebt_food_stamp": "allow_ebt_food_stamp",
203
+ "invoice_location": "invoice_location",
204
+ "allow_partial_authorization": "allow_partial_authorization",
205
+ "allow_recurring_partial_authorization":
206
+ "allow_recurring_partial_authorization",
207
+ "auto_decline_cvv": "auto_decline_cvv",
208
+ "auto_decline_street": "auto_decline_street",
209
+ "auto_decline_zip": "auto_decline_zip",
210
+ "split_payments_allow": "split_payments_allow",
211
+ "vt_show_custom_fields": "vt_show_custom_fields",
212
+ "receipt_show_custom_fields": "receipt_show_custom_fields",
213
+ "vt_override_sales_tax_allowed": "vt_override_sales_tax_allowed",
214
+ "vt_enable_sales_tax": "vt_enable_sales_tax",
215
+ "vt_require_zip": "vt_require_zip",
216
+ "vt_require_street": "vt_require_street",
217
+ "auto_decline_cavv": "auto_decline_cavv",
218
+ "merchant_id": "merchant_id",
219
+ "receipt_header": "receipt_header",
220
+ "receipt_footer": "receipt_footer",
221
+ "receipt_add_account_above_signature": "receipt_add_account_above_signature",
222
+ "receipt_add_recurring_above_signature":
223
+ "receipt_add_recurring_above_signature",
224
+ "receipt_vt_above_signature": "receipt_vt_above_signature",
225
+ "default_transaction_type": "default_transaction_type",
226
+ "username": "username",
227
+ "password": "password",
228
+ "current_batch": "current_batch",
229
+ "dup_check_per_batch": "dup_check_per_batch",
230
+ "agent_code": "agent_code",
231
+ "paylink_allow": "paylink_allow",
232
+ "quick_invoice_allow": "quick_invoice_allow",
233
+ "level_3_allow": "level3_allow",
234
+ "payfac_enable": "payfac_enable",
235
+ "enable_3_ds": "enable_3ds",
236
+ "sales_office_id": "sales_office_id",
237
+ "hosted_payment_page_max_allowed": "hosted_payment_page_max_allowed",
238
+ "hosted_payment_page_allow": "hosted_payment_page_allow",
239
+ "surcharge_id": "surcharge_id",
240
+ "allow_big_commerce": "allow_big_commerce",
241
+ "allow_shopify": "allow_shopify",
242
+ "level_3_default": "level3_default",
243
+ "cau_subscribe_type_id": "cau_subscribe_type_id",
244
+ "cau_account_number": "cau_account_number",
245
+ "location_billing_account_id": "location_billing_account_id",
246
+ "product_billing_group_id": "product_billing_group_id",
247
+ "account_number": "account_number",
248
+ "run_avs_on_accountvault_create": "run_avs_on_accountvault_create",
249
+ "accountvault_expire_notification_email_enable":
250
+ "accountvault_expire_notification_email_enable",
251
+ "debit_allow_void": "debit_allow_void",
252
+ "quick_invoice_text_to_pay": "quick_invoice_text_to_pay",
253
+ "authentication_code": "authentication_code",
254
+ "sms_enable": "sms_enable",
255
+ "vt_show_currency": "vt_show_currency",
256
+ "receipt_show_currency": "receipt_show_currency",
257
+ "allow_blind_refund": "allow_blind_refund",
258
+ "vt_show_company_name": "vt_show_company_name",
259
+ "receipt_show_company_name": "receipt_show_company_name",
260
+ "bank_funded_only": "bank_funded_only",
261
+ "require_cvv_on_keyed_cnp": "require_cvv_on_keyed_cnp",
262
+ "require_cvv_on_tokenized_cnp": "require_cvv_on_tokenized_cnp",
263
+ "show_secondary_amount": "show_secondary_amount",
264
+ "allow_secondary_amount": "allow_secondary_amount",
265
+ "show_google_pay": "show_google_pay",
266
+ "show_apple_pay": "show_apple_pay",
267
+ "batch_risk_config": "batch_risk_config",
268
+ "currency_code": "currency_code",
269
+ "enable_ach_validation": "enable_ach_validation",
270
+ "enable_ach_retry": "enable_ach_retry",
271
+ "allow_softpos": "allow_softpos",
272
+ "allow_multi_currency": "allow_multi_currency",
273
+ "allow_unapplied_payments": "allow_unapplied_payments",
274
+ "id": "id",
275
+ "receipt_logo": "receipt_logo",
276
+ "active": "active",
277
+ "tz": "tz",
278
+ "current_stan": "current_stan",
279
+ "created_ts": "created_ts",
280
+ "modified_ts": "modified_ts",
281
+ "created_user_id": "created_user_id",
282
+ "modified_user_id": "modified_user_id",
283
+ "product_transaction_api_id": "product_transaction_api_id",
284
+ "transaction_amount_notification_threshold":
285
+ "transaction_amount_notification_threshold",
286
+ "is_secondary_amount_allowed": "is_secondary_amount_allowed",
287
+ "fortis_id": "fortis_id",
288
+ "product_billing_group_code": "product_billing_group_code",
289
+ "cau_subscribe_type_code": "cau_subscribe_type_code",
290
+ "merchant_code": "merchant_code",
291
+ "currency": "currency",
292
+ }
293
+
294
+ _optionals = [
295
+ "processor_version",
296
+ "industry_type",
297
+ "title",
298
+ "payment_method",
299
+ "processor",
300
+ "mcc",
301
+ "tax_surcharge_config",
302
+ "terminal_id",
303
+ "partner",
304
+ "product_ach_pv_store_id",
305
+ "invoice_adjustment_title",
306
+ "location_id",
307
+ "location_api_id",
308
+ "billing_location_api_id",
309
+ "portfolio_id",
310
+ "portfolio_validation_rule",
311
+ "sub_processor",
312
+ "surcharge",
313
+ "processor_data",
314
+ "vt_clerk_number",
315
+ "vt_billing_phone",
316
+ "vt_enable_tip",
317
+ "ach_allow_debit",
318
+ "ach_allow_credit",
319
+ "ach_allow_refund",
320
+ "vt_cvv",
321
+ "vt_street",
322
+ "vt_zip",
323
+ "vt_order_num",
324
+ "vt_enable",
325
+ "receipt_show_contact_name",
326
+ "display_avs",
327
+ "card_type_visa",
328
+ "card_type_mc",
329
+ "card_type_disc",
330
+ "card_type_amex",
331
+ "card_type_diners",
332
+ "card_type_jcb",
333
+ "card_type_ebt",
334
+ "allow_ebt_cash_benefit",
335
+ "allow_ebt_food_stamp",
336
+ "invoice_location",
337
+ "allow_partial_authorization",
338
+ "allow_recurring_partial_authorization",
339
+ "auto_decline_cvv",
340
+ "auto_decline_street",
341
+ "auto_decline_zip",
342
+ "split_payments_allow",
343
+ "vt_show_custom_fields",
344
+ "receipt_show_custom_fields",
345
+ "vt_override_sales_tax_allowed",
346
+ "vt_enable_sales_tax",
347
+ "vt_require_zip",
348
+ "vt_require_street",
349
+ "auto_decline_cavv",
350
+ "merchant_id",
351
+ "receipt_header",
352
+ "receipt_footer",
353
+ "receipt_add_account_above_signature",
354
+ "receipt_add_recurring_above_signature",
355
+ "receipt_vt_above_signature",
356
+ "default_transaction_type",
357
+ "username",
358
+ "password",
359
+ "current_batch",
360
+ "dup_check_per_batch",
361
+ "agent_code",
362
+ "paylink_allow",
363
+ "quick_invoice_allow",
364
+ "level_3_allow",
365
+ "payfac_enable",
366
+ "enable_3_ds",
367
+ "sales_office_id",
368
+ "hosted_payment_page_max_allowed",
369
+ "hosted_payment_page_allow",
370
+ "surcharge_id",
371
+ "allow_big_commerce",
372
+ "allow_shopify",
373
+ "level_3_default",
374
+ "cau_subscribe_type_id",
375
+ "cau_account_number",
376
+ "location_billing_account_id",
377
+ "product_billing_group_id",
378
+ "account_number",
379
+ "run_avs_on_accountvault_create",
380
+ "accountvault_expire_notification_email_enable",
381
+ "debit_allow_void",
382
+ "quick_invoice_text_to_pay",
383
+ "authentication_code",
384
+ "sms_enable",
385
+ "vt_show_currency",
386
+ "receipt_show_currency",
387
+ "allow_blind_refund",
388
+ "vt_show_company_name",
389
+ "receipt_show_company_name",
390
+ "bank_funded_only",
391
+ "require_cvv_on_keyed_cnp",
392
+ "require_cvv_on_tokenized_cnp",
393
+ "show_secondary_amount",
394
+ "allow_secondary_amount",
395
+ "show_google_pay",
396
+ "show_apple_pay",
397
+ "batch_risk_config",
398
+ "currency_code",
399
+ "enable_ach_validation",
400
+ "enable_ach_retry",
401
+ "allow_softpos",
402
+ "allow_multi_currency",
403
+ "allow_unapplied_payments",
404
+ "id",
405
+ "receipt_logo",
406
+ "active",
407
+ "tz",
408
+ "current_stan",
409
+ "created_ts",
410
+ "modified_ts",
411
+ "created_user_id",
412
+ "modified_user_id",
413
+ "product_transaction_api_id",
414
+ "transaction_amount_notification_threshold",
415
+ "is_secondary_amount_allowed",
416
+ "fortis_id",
417
+ "product_billing_group_code",
418
+ "cau_subscribe_type_code",
419
+ "merchant_code",
420
+ "currency",
421
+ ]
422
+
423
+ _nullables = [
424
+ "processor_version",
425
+ "industry_type",
426
+ "processor",
427
+ "mcc",
428
+ "tax_surcharge_config",
429
+ "terminal_id",
430
+ "partner",
431
+ "product_ach_pv_store_id",
432
+ "invoice_adjustment_title",
433
+ "location_api_id",
434
+ "billing_location_api_id",
435
+ "portfolio_id",
436
+ "portfolio_validation_rule",
437
+ "sub_processor",
438
+ "merchant_id",
439
+ "receipt_header",
440
+ "receipt_footer",
441
+ "receipt_add_account_above_signature",
442
+ "receipt_add_recurring_above_signature",
443
+ "receipt_vt_above_signature",
444
+ "default_transaction_type",
445
+ "username",
446
+ "password",
447
+ "current_batch",
448
+ "dup_check_per_batch",
449
+ "agent_code",
450
+ "sales_office_id",
451
+ "hosted_payment_page_max_allowed",
452
+ "surcharge_id",
453
+ "cau_subscribe_type_id",
454
+ "cau_account_number",
455
+ "location_billing_account_id",
456
+ "product_billing_group_id",
457
+ "account_number",
458
+ "authentication_code",
459
+ "tz",
460
+ "current_stan",
461
+ "created_ts",
462
+ "modified_ts",
463
+ "created_user_id",
464
+ "modified_user_id",
465
+ "product_transaction_api_id",
466
+ "fortis_id",
467
+ "product_billing_group_code",
468
+ "cau_subscribe_type_code",
469
+ "merchant_code",
470
+ ]
471
+
472
+ def __init__(
473
+ self,
474
+ processor_version=APIHelper.SKIP,
475
+ industry_type=APIHelper.SKIP,
476
+ title=APIHelper.SKIP,
477
+ payment_method=APIHelper.SKIP,
478
+ processor=APIHelper.SKIP,
479
+ mcc=APIHelper.SKIP,
480
+ tax_surcharge_config=2,
481
+ terminal_id=APIHelper.SKIP,
482
+ partner=APIHelper.SKIP,
483
+ product_ach_pv_store_id=APIHelper.SKIP,
484
+ invoice_adjustment_title=APIHelper.SKIP,
485
+ location_id=APIHelper.SKIP,
486
+ location_api_id=APIHelper.SKIP,
487
+ billing_location_api_id=APIHelper.SKIP,
488
+ portfolio_id=APIHelper.SKIP,
489
+ portfolio_validation_rule=APIHelper.SKIP,
490
+ sub_processor=APIHelper.SKIP,
491
+ surcharge=APIHelper.SKIP,
492
+ processor_data=APIHelper.SKIP,
493
+ vt_clerk_number=APIHelper.SKIP,
494
+ vt_billing_phone=APIHelper.SKIP,
495
+ vt_enable_tip=APIHelper.SKIP,
496
+ ach_allow_debit=APIHelper.SKIP,
497
+ ach_allow_credit=APIHelper.SKIP,
498
+ ach_allow_refund=APIHelper.SKIP,
499
+ vt_cvv=APIHelper.SKIP,
500
+ vt_street=APIHelper.SKIP,
501
+ vt_zip=APIHelper.SKIP,
502
+ vt_order_num=APIHelper.SKIP,
503
+ vt_enable=APIHelper.SKIP,
504
+ receipt_show_contact_name=APIHelper.SKIP,
505
+ display_avs=APIHelper.SKIP,
506
+ card_type_visa=APIHelper.SKIP,
507
+ card_type_mc=APIHelper.SKIP,
508
+ card_type_disc=APIHelper.SKIP,
509
+ card_type_amex=APIHelper.SKIP,
510
+ card_type_diners=APIHelper.SKIP,
511
+ card_type_jcb=APIHelper.SKIP,
512
+ card_type_ebt=APIHelper.SKIP,
513
+ allow_ebt_cash_benefit=APIHelper.SKIP,
514
+ allow_ebt_food_stamp=APIHelper.SKIP,
515
+ invoice_location=APIHelper.SKIP,
516
+ allow_partial_authorization=APIHelper.SKIP,
517
+ allow_recurring_partial_authorization=APIHelper.SKIP,
518
+ auto_decline_cvv=APIHelper.SKIP,
519
+ auto_decline_street=APIHelper.SKIP,
520
+ auto_decline_zip=APIHelper.SKIP,
521
+ split_payments_allow=APIHelper.SKIP,
522
+ vt_show_custom_fields=APIHelper.SKIP,
523
+ receipt_show_custom_fields=APIHelper.SKIP,
524
+ vt_override_sales_tax_allowed=APIHelper.SKIP,
525
+ vt_enable_sales_tax=APIHelper.SKIP,
526
+ vt_require_zip=APIHelper.SKIP,
527
+ vt_require_street=APIHelper.SKIP,
528
+ auto_decline_cavv=APIHelper.SKIP,
529
+ merchant_id=APIHelper.SKIP,
530
+ receipt_header=APIHelper.SKIP,
531
+ receipt_footer=APIHelper.SKIP,
532
+ receipt_add_account_above_signature=APIHelper.SKIP,
533
+ receipt_add_recurring_above_signature=APIHelper.SKIP,
534
+ receipt_vt_above_signature=APIHelper.SKIP,
535
+ default_transaction_type=APIHelper.SKIP,
536
+ username=APIHelper.SKIP,
537
+ password=APIHelper.SKIP,
538
+ current_batch=1,
539
+ dup_check_per_batch=APIHelper.SKIP,
540
+ agent_code=APIHelper.SKIP,
541
+ paylink_allow=APIHelper.SKIP,
542
+ quick_invoice_allow=APIHelper.SKIP,
543
+ level_3_allow=APIHelper.SKIP,
544
+ payfac_enable=APIHelper.SKIP,
545
+ enable_3_ds=APIHelper.SKIP,
546
+ sales_office_id=APIHelper.SKIP,
547
+ hosted_payment_page_max_allowed=5,
548
+ hosted_payment_page_allow=APIHelper.SKIP,
549
+ surcharge_id=APIHelper.SKIP,
550
+ allow_big_commerce=APIHelper.SKIP,
551
+ allow_shopify=APIHelper.SKIP,
552
+ level_3_default=APIHelper.SKIP,
553
+ cau_subscribe_type_id=APIHelper.SKIP,
554
+ cau_account_number=APIHelper.SKIP,
555
+ location_billing_account_id=APIHelper.SKIP,
556
+ product_billing_group_id=APIHelper.SKIP,
557
+ account_number=APIHelper.SKIP,
558
+ run_avs_on_accountvault_create=APIHelper.SKIP,
559
+ accountvault_expire_notification_email_enable=APIHelper.SKIP,
560
+ debit_allow_void=APIHelper.SKIP,
561
+ quick_invoice_text_to_pay=APIHelper.SKIP,
562
+ authentication_code=APIHelper.SKIP,
563
+ sms_enable=APIHelper.SKIP,
564
+ vt_show_currency=APIHelper.SKIP,
565
+ receipt_show_currency=APIHelper.SKIP,
566
+ allow_blind_refund=APIHelper.SKIP,
567
+ vt_show_company_name=APIHelper.SKIP,
568
+ receipt_show_company_name=APIHelper.SKIP,
569
+ bank_funded_only=APIHelper.SKIP,
570
+ require_cvv_on_keyed_cnp=APIHelper.SKIP,
571
+ require_cvv_on_tokenized_cnp=APIHelper.SKIP,
572
+ show_secondary_amount=APIHelper.SKIP,
573
+ allow_secondary_amount=APIHelper.SKIP,
574
+ show_google_pay=APIHelper.SKIP,
575
+ show_apple_pay=APIHelper.SKIP,
576
+ batch_risk_config=APIHelper.SKIP,
577
+ currency_code=APIHelper.SKIP,
578
+ enable_ach_validation=APIHelper.SKIP,
579
+ enable_ach_retry=APIHelper.SKIP,
580
+ allow_softpos=APIHelper.SKIP,
581
+ allow_multi_currency=APIHelper.SKIP,
582
+ allow_unapplied_payments=APIHelper.SKIP,
583
+ id=APIHelper.SKIP,
584
+ receipt_logo=APIHelper.SKIP,
585
+ active=APIHelper.SKIP,
586
+ tz=APIHelper.SKIP,
587
+ current_stan=1,
588
+ created_ts=APIHelper.SKIP,
589
+ modified_ts=APIHelper.SKIP,
590
+ created_user_id=APIHelper.SKIP,
591
+ modified_user_id=APIHelper.SKIP,
592
+ product_transaction_api_id=APIHelper.SKIP,
593
+ transaction_amount_notification_threshold=APIHelper.SKIP,
594
+ is_secondary_amount_allowed=APIHelper.SKIP,
595
+ fortis_id=APIHelper.SKIP,
596
+ product_billing_group_code=APIHelper.SKIP,
597
+ cau_subscribe_type_code=APIHelper.SKIP,
598
+ merchant_code=APIHelper.SKIP,
599
+ currency=APIHelper.SKIP,
600
+ additional_properties=None):
601
+ """Initialize a CcProductTransaction instance."""
602
+ # Initialize members of the class
603
+ if processor_version is not APIHelper.SKIP:
604
+ self.processor_version = processor_version
605
+ if industry_type is not APIHelper.SKIP:
606
+ self.industry_type = industry_type
607
+ if title is not APIHelper.SKIP:
608
+ self.title = title
609
+ if payment_method is not APIHelper.SKIP:
610
+ self.payment_method = payment_method
611
+ if processor is not APIHelper.SKIP:
612
+ self.processor = processor
613
+ if mcc is not APIHelper.SKIP:
614
+ self.mcc = mcc
615
+ self.tax_surcharge_config = tax_surcharge_config
616
+ if terminal_id is not APIHelper.SKIP:
617
+ self.terminal_id = terminal_id
618
+ if partner is not APIHelper.SKIP:
619
+ self.partner = partner
620
+ if product_ach_pv_store_id is not APIHelper.SKIP:
621
+ self.product_ach_pv_store_id = product_ach_pv_store_id
622
+ if invoice_adjustment_title is not APIHelper.SKIP:
623
+ self.invoice_adjustment_title = invoice_adjustment_title
624
+ if location_id is not APIHelper.SKIP:
625
+ self.location_id = location_id
626
+ if location_api_id is not APIHelper.SKIP:
627
+ self.location_api_id = location_api_id
628
+ if billing_location_api_id is not APIHelper.SKIP:
629
+ self.billing_location_api_id = billing_location_api_id
630
+ if portfolio_id is not APIHelper.SKIP:
631
+ self.portfolio_id = portfolio_id
632
+ if portfolio_validation_rule is not APIHelper.SKIP:
633
+ self.portfolio_validation_rule = portfolio_validation_rule
634
+ if sub_processor is not APIHelper.SKIP:
635
+ self.sub_processor = sub_processor
636
+ if surcharge is not APIHelper.SKIP:
637
+ self.surcharge = surcharge
638
+ if processor_data is not APIHelper.SKIP:
639
+ self.processor_data = processor_data
640
+ if vt_clerk_number is not APIHelper.SKIP:
641
+ self.vt_clerk_number = vt_clerk_number
642
+ if vt_billing_phone is not APIHelper.SKIP:
643
+ self.vt_billing_phone = vt_billing_phone
644
+ if vt_enable_tip is not APIHelper.SKIP:
645
+ self.vt_enable_tip = vt_enable_tip
646
+ if ach_allow_debit is not APIHelper.SKIP:
647
+ self.ach_allow_debit = ach_allow_debit
648
+ if ach_allow_credit is not APIHelper.SKIP:
649
+ self.ach_allow_credit = ach_allow_credit
650
+ if ach_allow_refund is not APIHelper.SKIP:
651
+ self.ach_allow_refund = ach_allow_refund
652
+ if vt_cvv is not APIHelper.SKIP:
653
+ self.vt_cvv = vt_cvv
654
+ if vt_street is not APIHelper.SKIP:
655
+ self.vt_street = vt_street
656
+ if vt_zip is not APIHelper.SKIP:
657
+ self.vt_zip = vt_zip
658
+ if vt_order_num is not APIHelper.SKIP:
659
+ self.vt_order_num = vt_order_num
660
+ if vt_enable is not APIHelper.SKIP:
661
+ self.vt_enable = vt_enable
662
+ if receipt_show_contact_name is not APIHelper.SKIP:
663
+ self.receipt_show_contact_name = receipt_show_contact_name
664
+ if display_avs is not APIHelper.SKIP:
665
+ self.display_avs = display_avs
666
+ if card_type_visa is not APIHelper.SKIP:
667
+ self.card_type_visa = card_type_visa
668
+ if card_type_mc is not APIHelper.SKIP:
669
+ self.card_type_mc = card_type_mc
670
+ if card_type_disc is not APIHelper.SKIP:
671
+ self.card_type_disc = card_type_disc
672
+ if card_type_amex is not APIHelper.SKIP:
673
+ self.card_type_amex = card_type_amex
674
+ if card_type_diners is not APIHelper.SKIP:
675
+ self.card_type_diners = card_type_diners
676
+ if card_type_jcb is not APIHelper.SKIP:
677
+ self.card_type_jcb = card_type_jcb
678
+ if card_type_ebt is not APIHelper.SKIP:
679
+ self.card_type_ebt = card_type_ebt
680
+ if allow_ebt_cash_benefit is not APIHelper.SKIP:
681
+ self.allow_ebt_cash_benefit = allow_ebt_cash_benefit
682
+ if allow_ebt_food_stamp is not APIHelper.SKIP:
683
+ self.allow_ebt_food_stamp = allow_ebt_food_stamp
684
+ if invoice_location is not APIHelper.SKIP:
685
+ self.invoice_location = invoice_location
686
+ if allow_partial_authorization is not APIHelper.SKIP:
687
+ self.allow_partial_authorization = allow_partial_authorization
688
+ if allow_recurring_partial_authorization is not APIHelper.SKIP:
689
+ self.allow_recurring_partial_authorization =\
690
+ allow_recurring_partial_authorization
691
+ if auto_decline_cvv is not APIHelper.SKIP:
692
+ self.auto_decline_cvv = auto_decline_cvv
693
+ if auto_decline_street is not APIHelper.SKIP:
694
+ self.auto_decline_street = auto_decline_street
695
+ if auto_decline_zip is not APIHelper.SKIP:
696
+ self.auto_decline_zip = auto_decline_zip
697
+ if split_payments_allow is not APIHelper.SKIP:
698
+ self.split_payments_allow = split_payments_allow
699
+ if vt_show_custom_fields is not APIHelper.SKIP:
700
+ self.vt_show_custom_fields = vt_show_custom_fields
701
+ if receipt_show_custom_fields is not APIHelper.SKIP:
702
+ self.receipt_show_custom_fields = receipt_show_custom_fields
703
+ if vt_override_sales_tax_allowed is not APIHelper.SKIP:
704
+ self.vt_override_sales_tax_allowed = vt_override_sales_tax_allowed
705
+ if vt_enable_sales_tax is not APIHelper.SKIP:
706
+ self.vt_enable_sales_tax = vt_enable_sales_tax
707
+ if vt_require_zip is not APIHelper.SKIP:
708
+ self.vt_require_zip = vt_require_zip
709
+ if vt_require_street is not APIHelper.SKIP:
710
+ self.vt_require_street = vt_require_street
711
+ if auto_decline_cavv is not APIHelper.SKIP:
712
+ self.auto_decline_cavv = auto_decline_cavv
713
+ if merchant_id is not APIHelper.SKIP:
714
+ self.merchant_id = merchant_id
715
+ if receipt_header is not APIHelper.SKIP:
716
+ self.receipt_header = receipt_header
717
+ if receipt_footer is not APIHelper.SKIP:
718
+ self.receipt_footer = receipt_footer
719
+ if receipt_add_account_above_signature is not APIHelper.SKIP:
720
+ self.receipt_add_account_above_signature =\
721
+ receipt_add_account_above_signature
722
+ if receipt_add_recurring_above_signature is not APIHelper.SKIP:
723
+ self.receipt_add_recurring_above_signature =\
724
+ receipt_add_recurring_above_signature
725
+ if receipt_vt_above_signature is not APIHelper.SKIP:
726
+ self.receipt_vt_above_signature = receipt_vt_above_signature
727
+ if default_transaction_type is not APIHelper.SKIP:
728
+ self.default_transaction_type = default_transaction_type
729
+ if username is not APIHelper.SKIP:
730
+ self.username = username
731
+ if password is not APIHelper.SKIP:
732
+ self.password = password
733
+ self.current_batch = current_batch
734
+ if dup_check_per_batch is not APIHelper.SKIP:
735
+ self.dup_check_per_batch = dup_check_per_batch
736
+ if agent_code is not APIHelper.SKIP:
737
+ self.agent_code = agent_code
738
+ if paylink_allow is not APIHelper.SKIP:
739
+ self.paylink_allow = paylink_allow
740
+ if quick_invoice_allow is not APIHelper.SKIP:
741
+ self.quick_invoice_allow = quick_invoice_allow
742
+ if level_3_allow is not APIHelper.SKIP:
743
+ self.level_3_allow = level_3_allow
744
+ if payfac_enable is not APIHelper.SKIP:
745
+ self.payfac_enable = payfac_enable
746
+ if enable_3_ds is not APIHelper.SKIP:
747
+ self.enable_3_ds = enable_3_ds
748
+ if sales_office_id is not APIHelper.SKIP:
749
+ self.sales_office_id = sales_office_id
750
+ self.hosted_payment_page_max_allowed = hosted_payment_page_max_allowed
751
+ if hosted_payment_page_allow is not APIHelper.SKIP:
752
+ self.hosted_payment_page_allow = hosted_payment_page_allow
753
+ if surcharge_id is not APIHelper.SKIP:
754
+ self.surcharge_id = surcharge_id
755
+ if allow_big_commerce is not APIHelper.SKIP:
756
+ self.allow_big_commerce = allow_big_commerce
757
+ if allow_shopify is not APIHelper.SKIP:
758
+ self.allow_shopify = allow_shopify
759
+ if level_3_default is not APIHelper.SKIP:
760
+ self.level_3_default = level_3_default
761
+ if cau_subscribe_type_id is not APIHelper.SKIP:
762
+ self.cau_subscribe_type_id = cau_subscribe_type_id
763
+ if cau_account_number is not APIHelper.SKIP:
764
+ self.cau_account_number = cau_account_number
765
+ if location_billing_account_id is not APIHelper.SKIP:
766
+ self.location_billing_account_id = location_billing_account_id
767
+ if product_billing_group_id is not APIHelper.SKIP:
768
+ self.product_billing_group_id = product_billing_group_id
769
+ if account_number is not APIHelper.SKIP:
770
+ self.account_number = account_number
771
+ if run_avs_on_accountvault_create is not APIHelper.SKIP:
772
+ self.run_avs_on_accountvault_create = run_avs_on_accountvault_create
773
+ if accountvault_expire_notification_email_enable is not APIHelper.SKIP:
774
+ self.accountvault_expire_notification_email_enable =\
775
+ accountvault_expire_notification_email_enable
776
+ if debit_allow_void is not APIHelper.SKIP:
777
+ self.debit_allow_void = debit_allow_void
778
+ if quick_invoice_text_to_pay is not APIHelper.SKIP:
779
+ self.quick_invoice_text_to_pay = quick_invoice_text_to_pay
780
+ if authentication_code is not APIHelper.SKIP:
781
+ self.authentication_code = authentication_code
782
+ if sms_enable is not APIHelper.SKIP:
783
+ self.sms_enable = sms_enable
784
+ if vt_show_currency is not APIHelper.SKIP:
785
+ self.vt_show_currency = vt_show_currency
786
+ if receipt_show_currency is not APIHelper.SKIP:
787
+ self.receipt_show_currency = receipt_show_currency
788
+ if allow_blind_refund is not APIHelper.SKIP:
789
+ self.allow_blind_refund = allow_blind_refund
790
+ if vt_show_company_name is not APIHelper.SKIP:
791
+ self.vt_show_company_name = vt_show_company_name
792
+ if receipt_show_company_name is not APIHelper.SKIP:
793
+ self.receipt_show_company_name = receipt_show_company_name
794
+ if bank_funded_only is not APIHelper.SKIP:
795
+ self.bank_funded_only = bank_funded_only
796
+ if require_cvv_on_keyed_cnp is not APIHelper.SKIP:
797
+ self.require_cvv_on_keyed_cnp = require_cvv_on_keyed_cnp
798
+ if require_cvv_on_tokenized_cnp is not APIHelper.SKIP:
799
+ self.require_cvv_on_tokenized_cnp = require_cvv_on_tokenized_cnp
800
+ if show_secondary_amount is not APIHelper.SKIP:
801
+ self.show_secondary_amount = show_secondary_amount
802
+ if allow_secondary_amount is not APIHelper.SKIP:
803
+ self.allow_secondary_amount = allow_secondary_amount
804
+ if show_google_pay is not APIHelper.SKIP:
805
+ self.show_google_pay = show_google_pay
806
+ if show_apple_pay is not APIHelper.SKIP:
807
+ self.show_apple_pay = show_apple_pay
808
+ if batch_risk_config is not APIHelper.SKIP:
809
+ self.batch_risk_config = batch_risk_config
810
+ if currency_code is not APIHelper.SKIP:
811
+ self.currency_code = currency_code
812
+ if enable_ach_validation is not APIHelper.SKIP:
813
+ self.enable_ach_validation = enable_ach_validation
814
+ if enable_ach_retry is not APIHelper.SKIP:
815
+ self.enable_ach_retry = enable_ach_retry
816
+ if allow_softpos is not APIHelper.SKIP:
817
+ self.allow_softpos = allow_softpos
818
+ if allow_multi_currency is not APIHelper.SKIP:
819
+ self.allow_multi_currency = allow_multi_currency
820
+ if allow_unapplied_payments is not APIHelper.SKIP:
821
+ self.allow_unapplied_payments = allow_unapplied_payments
822
+ if id is not APIHelper.SKIP:
823
+ self.id = id
824
+ if receipt_logo is not APIHelper.SKIP:
825
+ self.receipt_logo = receipt_logo
826
+ if active is not APIHelper.SKIP:
827
+ self.active = active
828
+ if tz is not APIHelper.SKIP:
829
+ self.tz = tz
830
+ self.current_stan = current_stan
831
+ if created_ts is not APIHelper.SKIP:
832
+ self.created_ts = created_ts
833
+ if modified_ts is not APIHelper.SKIP:
834
+ self.modified_ts = modified_ts
835
+ if created_user_id is not APIHelper.SKIP:
836
+ self.created_user_id = created_user_id
837
+ if modified_user_id is not APIHelper.SKIP:
838
+ self.modified_user_id = modified_user_id
839
+ if product_transaction_api_id is not APIHelper.SKIP:
840
+ self.product_transaction_api_id = product_transaction_api_id
841
+ if transaction_amount_notification_threshold is not APIHelper.SKIP:
842
+ self.transaction_amount_notification_threshold =\
843
+ transaction_amount_notification_threshold
844
+ if is_secondary_amount_allowed is not APIHelper.SKIP:
845
+ self.is_secondary_amount_allowed = is_secondary_amount_allowed
846
+ if fortis_id is not APIHelper.SKIP:
847
+ self.fortis_id = fortis_id
848
+ if product_billing_group_code is not APIHelper.SKIP:
849
+ self.product_billing_group_code = product_billing_group_code
850
+ if cau_subscribe_type_code is not APIHelper.SKIP:
851
+ self.cau_subscribe_type_code = cau_subscribe_type_code
852
+ if merchant_code is not APIHelper.SKIP:
853
+ self.merchant_code = merchant_code
854
+ if currency is not APIHelper.SKIP:
855
+ self.currency = currency
856
+
857
+ # Add additional model properties to the instance
858
+ if additional_properties is None:
859
+ additional_properties = {}
860
+ self.additional_properties = additional_properties
861
+
862
+ @classmethod
863
+ def from_dictionary(cls,
864
+ dictionary):
865
+ """Create an instance of this model from a dictionary
866
+
867
+ Args:
868
+ dictionary (dictionary): A dictionary representation of the object
869
+ as obtained from the deserialization of the server's response. The
870
+ keys MUST match property names in the API description.
871
+
872
+ Returns:
873
+ object: An instance of this structure class.
874
+
875
+ """
876
+ if not isinstance(dictionary, dict) or dictionary is None:
877
+ return None
878
+
879
+ # Extract variables from the dictionary
880
+ processor_version =\
881
+ dictionary.get("processor_version")\
882
+ if "processor_version" in dictionary.keys()\
883
+ else APIHelper.SKIP
884
+ industry_type =\
885
+ dictionary.get("industry_type")\
886
+ if "industry_type" in dictionary.keys()\
887
+ else APIHelper.SKIP
888
+ title =\
889
+ dictionary.get("title")\
890
+ if dictionary.get("title")\
891
+ else APIHelper.SKIP
892
+ payment_method =\
893
+ dictionary.get("payment_method")\
894
+ if dictionary.get("payment_method")\
895
+ else APIHelper.SKIP
896
+ processor =\
897
+ dictionary.get("processor")\
898
+ if "processor" in dictionary.keys()\
899
+ else APIHelper.SKIP
900
+ mcc =\
901
+ dictionary.get("mcc")\
902
+ if "mcc" in dictionary.keys()\
903
+ else APIHelper.SKIP
904
+ tax_surcharge_config =\
905
+ dictionary.get("tax_surcharge_config")\
906
+ if dictionary.get("tax_surcharge_config")\
907
+ else 2
908
+ terminal_id =\
909
+ dictionary.get("terminal_id")\
910
+ if "terminal_id" in dictionary.keys()\
911
+ else APIHelper.SKIP
912
+ partner =\
913
+ dictionary.get("partner")\
914
+ if "partner" in dictionary.keys()\
915
+ else APIHelper.SKIP
916
+ product_ach_pv_store_id =\
917
+ dictionary.get("product_ach_pv_store_id")\
918
+ if "product_ach_pv_store_id" in dictionary.keys()\
919
+ else APIHelper.SKIP
920
+ invoice_adjustment_title =\
921
+ dictionary.get("invoice_adjustment_title")\
922
+ if "invoice_adjustment_title" in dictionary.keys()\
923
+ else APIHelper.SKIP
924
+ location_id =\
925
+ dictionary.get("location_id")\
926
+ if dictionary.get("location_id")\
927
+ else APIHelper.SKIP
928
+ location_api_id =\
929
+ dictionary.get("location_api_id")\
930
+ if "location_api_id" in dictionary.keys()\
931
+ else APIHelper.SKIP
932
+ billing_location_api_id =\
933
+ dictionary.get("billing_location_api_id")\
934
+ if "billing_location_api_id" in dictionary.keys()\
935
+ else APIHelper.SKIP
936
+ portfolio_id =\
937
+ dictionary.get("portfolio_id")\
938
+ if "portfolio_id" in dictionary.keys()\
939
+ else APIHelper.SKIP
940
+ portfolio_validation_rule =\
941
+ dictionary.get("portfolioValidationRule")\
942
+ if "portfolioValidationRule" in dictionary.keys()\
943
+ else APIHelper.SKIP
944
+ sub_processor =\
945
+ dictionary.get("sub_processor")\
946
+ if "sub_processor" in dictionary.keys()\
947
+ else APIHelper.SKIP
948
+ surcharge =\
949
+ dictionary.get("surcharge")\
950
+ if dictionary.get("surcharge")\
951
+ else APIHelper.SKIP
952
+ processor_data =\
953
+ dictionary.get("processor_data")\
954
+ if dictionary.get("processor_data")\
955
+ else APIHelper.SKIP
956
+ vt_clerk_number =\
957
+ dictionary.get("vt_clerk_number")\
958
+ if "vt_clerk_number" in dictionary.keys()\
959
+ else APIHelper.SKIP
960
+ vt_billing_phone =\
961
+ dictionary.get("vt_billing_phone")\
962
+ if "vt_billing_phone" in dictionary.keys()\
963
+ else APIHelper.SKIP
964
+ vt_enable_tip =\
965
+ dictionary.get("vt_enable_tip")\
966
+ if "vt_enable_tip" in dictionary.keys()\
967
+ else APIHelper.SKIP
968
+ ach_allow_debit =\
969
+ dictionary.get("ach_allow_debit")\
970
+ if "ach_allow_debit" in dictionary.keys()\
971
+ else APIHelper.SKIP
972
+ ach_allow_credit =\
973
+ dictionary.get("ach_allow_credit")\
974
+ if "ach_allow_credit" in dictionary.keys()\
975
+ else APIHelper.SKIP
976
+ ach_allow_refund =\
977
+ dictionary.get("ach_allow_refund")\
978
+ if "ach_allow_refund" in dictionary.keys()\
979
+ else APIHelper.SKIP
980
+ vt_cvv =\
981
+ dictionary.get("vt_cvv")\
982
+ if "vt_cvv" in dictionary.keys()\
983
+ else APIHelper.SKIP
984
+ vt_street =\
985
+ dictionary.get("vt_street")\
986
+ if "vt_street" in dictionary.keys()\
987
+ else APIHelper.SKIP
988
+ vt_zip =\
989
+ dictionary.get("vt_zip")\
990
+ if "vt_zip" in dictionary.keys()\
991
+ else APIHelper.SKIP
992
+ vt_order_num =\
993
+ dictionary.get("vt_order_num")\
994
+ if "vt_order_num" in dictionary.keys()\
995
+ else APIHelper.SKIP
996
+ vt_enable =\
997
+ dictionary.get("vt_enable")\
998
+ if "vt_enable" in dictionary.keys()\
999
+ else APIHelper.SKIP
1000
+ receipt_show_contact_name =\
1001
+ dictionary.get("receipt_show_contact_name")\
1002
+ if "receipt_show_contact_name" in dictionary.keys()\
1003
+ else APIHelper.SKIP
1004
+ display_avs =\
1005
+ dictionary.get("display_avs")\
1006
+ if "display_avs" in dictionary.keys()\
1007
+ else APIHelper.SKIP
1008
+ card_type_visa =\
1009
+ dictionary.get("card_type_visa")\
1010
+ if "card_type_visa" in dictionary.keys()\
1011
+ else APIHelper.SKIP
1012
+ card_type_mc =\
1013
+ dictionary.get("card_type_mc")\
1014
+ if "card_type_mc" in dictionary.keys()\
1015
+ else APIHelper.SKIP
1016
+ card_type_disc =\
1017
+ dictionary.get("card_type_disc")\
1018
+ if "card_type_disc" in dictionary.keys()\
1019
+ else APIHelper.SKIP
1020
+ card_type_amex =\
1021
+ dictionary.get("card_type_amex")\
1022
+ if "card_type_amex" in dictionary.keys()\
1023
+ else APIHelper.SKIP
1024
+ card_type_diners =\
1025
+ dictionary.get("card_type_diners")\
1026
+ if "card_type_diners" in dictionary.keys()\
1027
+ else APIHelper.SKIP
1028
+ card_type_jcb =\
1029
+ dictionary.get("card_type_jcb")\
1030
+ if "card_type_jcb" in dictionary.keys()\
1031
+ else APIHelper.SKIP
1032
+ card_type_ebt =\
1033
+ dictionary.get("card_type_ebt")\
1034
+ if "card_type_ebt" in dictionary.keys()\
1035
+ else APIHelper.SKIP
1036
+ allow_ebt_cash_benefit =\
1037
+ dictionary.get("allow_ebt_cash_benefit")\
1038
+ if "allow_ebt_cash_benefit" in dictionary.keys()\
1039
+ else APIHelper.SKIP
1040
+ allow_ebt_food_stamp =\
1041
+ dictionary.get("allow_ebt_food_stamp")\
1042
+ if "allow_ebt_food_stamp" in dictionary.keys()\
1043
+ else APIHelper.SKIP
1044
+ invoice_location =\
1045
+ dictionary.get("invoice_location")\
1046
+ if "invoice_location" in dictionary.keys()\
1047
+ else APIHelper.SKIP
1048
+ allow_partial_authorization =\
1049
+ dictionary.get("allow_partial_authorization")\
1050
+ if "allow_partial_authorization" in dictionary.keys()\
1051
+ else APIHelper.SKIP
1052
+ allow_recurring_partial_authorization =\
1053
+ dictionary.get("allow_recurring_partial_authorization")\
1054
+ if "allow_recurring_partial_authorization" in dictionary.keys()\
1055
+ else APIHelper.SKIP
1056
+ auto_decline_cvv =\
1057
+ dictionary.get("auto_decline_cvv")\
1058
+ if "auto_decline_cvv" in dictionary.keys()\
1059
+ else APIHelper.SKIP
1060
+ auto_decline_street =\
1061
+ dictionary.get("auto_decline_street")\
1062
+ if "auto_decline_street" in dictionary.keys()\
1063
+ else APIHelper.SKIP
1064
+ auto_decline_zip =\
1065
+ dictionary.get("auto_decline_zip")\
1066
+ if "auto_decline_zip" in dictionary.keys()\
1067
+ else APIHelper.SKIP
1068
+ split_payments_allow =\
1069
+ dictionary.get("split_payments_allow")\
1070
+ if "split_payments_allow" in dictionary.keys()\
1071
+ else APIHelper.SKIP
1072
+ vt_show_custom_fields =\
1073
+ dictionary.get("vt_show_custom_fields")\
1074
+ if "vt_show_custom_fields" in dictionary.keys()\
1075
+ else APIHelper.SKIP
1076
+ receipt_show_custom_fields =\
1077
+ dictionary.get("receipt_show_custom_fields")\
1078
+ if "receipt_show_custom_fields" in dictionary.keys()\
1079
+ else APIHelper.SKIP
1080
+ vt_override_sales_tax_allowed =\
1081
+ dictionary.get("vt_override_sales_tax_allowed")\
1082
+ if "vt_override_sales_tax_allowed" in dictionary.keys()\
1083
+ else APIHelper.SKIP
1084
+ vt_enable_sales_tax =\
1085
+ dictionary.get("vt_enable_sales_tax")\
1086
+ if "vt_enable_sales_tax" in dictionary.keys()\
1087
+ else APIHelper.SKIP
1088
+ vt_require_zip =\
1089
+ dictionary.get("vt_require_zip")\
1090
+ if "vt_require_zip" in dictionary.keys()\
1091
+ else APIHelper.SKIP
1092
+ vt_require_street =\
1093
+ dictionary.get("vt_require_street")\
1094
+ if "vt_require_street" in dictionary.keys()\
1095
+ else APIHelper.SKIP
1096
+ auto_decline_cavv =\
1097
+ dictionary.get("auto_decline_cavv")\
1098
+ if "auto_decline_cavv" in dictionary.keys()\
1099
+ else APIHelper.SKIP
1100
+ merchant_id =\
1101
+ dictionary.get("merchant_id")\
1102
+ if "merchant_id" in dictionary.keys()\
1103
+ else APIHelper.SKIP
1104
+ receipt_header =\
1105
+ dictionary.get("receipt_header")\
1106
+ if "receipt_header" in dictionary.keys()\
1107
+ else APIHelper.SKIP
1108
+ receipt_footer =\
1109
+ dictionary.get("receipt_footer")\
1110
+ if "receipt_footer" in dictionary.keys()\
1111
+ else APIHelper.SKIP
1112
+ receipt_add_account_above_signature =\
1113
+ dictionary.get("receipt_add_account_above_signature")\
1114
+ if "receipt_add_account_above_signature" in dictionary.keys()\
1115
+ else APIHelper.SKIP
1116
+ receipt_add_recurring_above_signature =\
1117
+ dictionary.get("receipt_add_recurring_above_signature")\
1118
+ if "receipt_add_recurring_above_signature" in dictionary.keys()\
1119
+ else APIHelper.SKIP
1120
+ receipt_vt_above_signature =\
1121
+ dictionary.get("receipt_vt_above_signature")\
1122
+ if "receipt_vt_above_signature" in dictionary.keys()\
1123
+ else APIHelper.SKIP
1124
+ default_transaction_type =\
1125
+ dictionary.get("default_transaction_type")\
1126
+ if "default_transaction_type" in dictionary.keys()\
1127
+ else APIHelper.SKIP
1128
+ username =\
1129
+ dictionary.get("username")\
1130
+ if "username" in dictionary.keys()\
1131
+ else APIHelper.SKIP
1132
+ password =\
1133
+ dictionary.get("password")\
1134
+ if "password" in dictionary.keys()\
1135
+ else APIHelper.SKIP
1136
+ current_batch =\
1137
+ dictionary.get("current_batch")\
1138
+ if dictionary.get("current_batch")\
1139
+ else 1
1140
+ dup_check_per_batch =\
1141
+ dictionary.get("dup_check_per_batch")\
1142
+ if "dup_check_per_batch" in dictionary.keys()\
1143
+ else APIHelper.SKIP
1144
+ agent_code =\
1145
+ dictionary.get("agent_code")\
1146
+ if "agent_code" in dictionary.keys()\
1147
+ else APIHelper.SKIP
1148
+ paylink_allow =\
1149
+ dictionary.get("paylink_allow")\
1150
+ if "paylink_allow" in dictionary.keys()\
1151
+ else APIHelper.SKIP
1152
+ quick_invoice_allow =\
1153
+ dictionary.get("quick_invoice_allow")\
1154
+ if "quick_invoice_allow" in dictionary.keys()\
1155
+ else APIHelper.SKIP
1156
+ level_3_allow =\
1157
+ dictionary.get("level3_allow")\
1158
+ if "level3_allow" in dictionary.keys()\
1159
+ else APIHelper.SKIP
1160
+ payfac_enable =\
1161
+ dictionary.get("payfac_enable")\
1162
+ if "payfac_enable" in dictionary.keys()\
1163
+ else APIHelper.SKIP
1164
+ enable_3_ds =\
1165
+ dictionary.get("enable_3ds")\
1166
+ if "enable_3ds" in dictionary.keys()\
1167
+ else APIHelper.SKIP
1168
+ sales_office_id =\
1169
+ dictionary.get("sales_office_id")\
1170
+ if "sales_office_id" in dictionary.keys()\
1171
+ else APIHelper.SKIP
1172
+ hosted_payment_page_max_allowed =\
1173
+ dictionary.get("hosted_payment_page_max_allowed")\
1174
+ if dictionary.get("hosted_payment_page_max_allowed")\
1175
+ else 5
1176
+ hosted_payment_page_allow =\
1177
+ dictionary.get("hosted_payment_page_allow")\
1178
+ if "hosted_payment_page_allow" in dictionary.keys()\
1179
+ else APIHelper.SKIP
1180
+ surcharge_id =\
1181
+ dictionary.get("surcharge_id")\
1182
+ if "surcharge_id" in dictionary.keys()\
1183
+ else APIHelper.SKIP
1184
+ allow_big_commerce =\
1185
+ dictionary.get("allow_big_commerce")\
1186
+ if "allow_big_commerce" in dictionary.keys()\
1187
+ else APIHelper.SKIP
1188
+ allow_shopify =\
1189
+ dictionary.get("allow_shopify")\
1190
+ if "allow_shopify" in dictionary.keys()\
1191
+ else APIHelper.SKIP
1192
+ level_3_default =\
1193
+ Level3Default.from_dictionary(
1194
+ dictionary.get("level3_default"))\
1195
+ if "level3_default" in dictionary.keys()\
1196
+ else APIHelper.SKIP
1197
+ cau_subscribe_type_id =\
1198
+ dictionary.get("cau_subscribe_type_id")\
1199
+ if "cau_subscribe_type_id" in dictionary.keys()\
1200
+ else APIHelper.SKIP
1201
+ cau_account_number =\
1202
+ dictionary.get("cau_account_number")\
1203
+ if "cau_account_number" in dictionary.keys()\
1204
+ else APIHelper.SKIP
1205
+ location_billing_account_id =\
1206
+ dictionary.get("location_billing_account_id")\
1207
+ if "location_billing_account_id" in dictionary.keys()\
1208
+ else APIHelper.SKIP
1209
+ product_billing_group_id =\
1210
+ dictionary.get("product_billing_group_id")\
1211
+ if "product_billing_group_id" in dictionary.keys()\
1212
+ else APIHelper.SKIP
1213
+ account_number =\
1214
+ dictionary.get("account_number")\
1215
+ if "account_number" in dictionary.keys()\
1216
+ else APIHelper.SKIP
1217
+ run_avs_on_accountvault_create =\
1218
+ dictionary.get("run_avs_on_accountvault_create")\
1219
+ if "run_avs_on_accountvault_create" in dictionary.keys()\
1220
+ else APIHelper.SKIP
1221
+ accountvault_expire_notification_email_enable =\
1222
+ dictionary.get("accountvault_expire_notification_email_enable")\
1223
+ if "accountvault_expire_notification_email_enable" in dictionary.keys()\
1224
+ else APIHelper.SKIP
1225
+ debit_allow_void =\
1226
+ dictionary.get("debit_allow_void")\
1227
+ if "debit_allow_void" in dictionary.keys()\
1228
+ else APIHelper.SKIP
1229
+ quick_invoice_text_to_pay =\
1230
+ dictionary.get("quick_invoice_text_to_pay")\
1231
+ if "quick_invoice_text_to_pay" in dictionary.keys()\
1232
+ else APIHelper.SKIP
1233
+ authentication_code =\
1234
+ dictionary.get("authentication_code")\
1235
+ if "authentication_code" in dictionary.keys()\
1236
+ else APIHelper.SKIP
1237
+ sms_enable =\
1238
+ dictionary.get("sms_enable")\
1239
+ if "sms_enable" in dictionary.keys()\
1240
+ else APIHelper.SKIP
1241
+ vt_show_currency =\
1242
+ dictionary.get("vt_show_currency")\
1243
+ if "vt_show_currency" in dictionary.keys()\
1244
+ else APIHelper.SKIP
1245
+ receipt_show_currency =\
1246
+ dictionary.get("receipt_show_currency")\
1247
+ if "receipt_show_currency" in dictionary.keys()\
1248
+ else APIHelper.SKIP
1249
+ allow_blind_refund =\
1250
+ dictionary.get("allow_blind_refund")\
1251
+ if "allow_blind_refund" in dictionary.keys()\
1252
+ else APIHelper.SKIP
1253
+ vt_show_company_name =\
1254
+ dictionary.get("vt_show_company_name")\
1255
+ if "vt_show_company_name" in dictionary.keys()\
1256
+ else APIHelper.SKIP
1257
+ receipt_show_company_name =\
1258
+ dictionary.get("receipt_show_company_name")\
1259
+ if "receipt_show_company_name" in dictionary.keys()\
1260
+ else APIHelper.SKIP
1261
+ bank_funded_only =\
1262
+ dictionary.get("bank_funded_only")\
1263
+ if "bank_funded_only" in dictionary.keys()\
1264
+ else APIHelper.SKIP
1265
+ require_cvv_on_keyed_cnp =\
1266
+ dictionary.get("require_cvv_on_keyed_cnp")\
1267
+ if "require_cvv_on_keyed_cnp" in dictionary.keys()\
1268
+ else APIHelper.SKIP
1269
+ require_cvv_on_tokenized_cnp =\
1270
+ dictionary.get("require_cvv_on_tokenized_cnp")\
1271
+ if "require_cvv_on_tokenized_cnp" in dictionary.keys()\
1272
+ else APIHelper.SKIP
1273
+ show_secondary_amount =\
1274
+ dictionary.get("show_secondary_amount")\
1275
+ if "show_secondary_amount" in dictionary.keys()\
1276
+ else APIHelper.SKIP
1277
+ allow_secondary_amount =\
1278
+ dictionary.get("allow_secondary_amount")\
1279
+ if "allow_secondary_amount" in dictionary.keys()\
1280
+ else APIHelper.SKIP
1281
+ show_google_pay =\
1282
+ dictionary.get("show_google_pay")\
1283
+ if "show_google_pay" in dictionary.keys()\
1284
+ else APIHelper.SKIP
1285
+ show_apple_pay =\
1286
+ dictionary.get("show_apple_pay")\
1287
+ if "show_apple_pay" in dictionary.keys()\
1288
+ else APIHelper.SKIP
1289
+ batch_risk_config =\
1290
+ BatchRiskConfig.from_dictionary(
1291
+ dictionary.get("batch_risk_config"))\
1292
+ if "batch_risk_config" in dictionary.keys()\
1293
+ else APIHelper.SKIP
1294
+ currency_code =\
1295
+ dictionary.get("currency_code")\
1296
+ if dictionary.get("currency_code")\
1297
+ else APIHelper.SKIP
1298
+ enable_ach_validation =\
1299
+ dictionary.get("enable_ach_validation")\
1300
+ if "enable_ach_validation" in dictionary.keys()\
1301
+ else APIHelper.SKIP
1302
+ enable_ach_retry =\
1303
+ dictionary.get("enable_ach_retry")\
1304
+ if "enable_ach_retry" in dictionary.keys()\
1305
+ else APIHelper.SKIP
1306
+ allow_softpos =\
1307
+ dictionary.get("allow_softpos")\
1308
+ if "allow_softpos" in dictionary.keys()\
1309
+ else APIHelper.SKIP
1310
+ allow_multi_currency =\
1311
+ dictionary.get("allow_multi_currency")\
1312
+ if "allow_multi_currency" in dictionary.keys()\
1313
+ else APIHelper.SKIP
1314
+ allow_unapplied_payments =\
1315
+ dictionary.get("allow_unapplied_payments")\
1316
+ if "allow_unapplied_payments" in dictionary.keys()\
1317
+ else APIHelper.SKIP
1318
+ id =\
1319
+ dictionary.get("id")\
1320
+ if dictionary.get("id")\
1321
+ else APIHelper.SKIP
1322
+ receipt_logo =\
1323
+ dictionary.get("receipt_logo")\
1324
+ if dictionary.get("receipt_logo")\
1325
+ else APIHelper.SKIP
1326
+ active =\
1327
+ dictionary.get("active")\
1328
+ if "active" in dictionary.keys()\
1329
+ else APIHelper.SKIP
1330
+ tz =\
1331
+ dictionary.get("tz")\
1332
+ if "tz" in dictionary.keys()\
1333
+ else APIHelper.SKIP
1334
+ current_stan =\
1335
+ dictionary.get("current_stan")\
1336
+ if dictionary.get("current_stan")\
1337
+ else 1
1338
+ created_ts =\
1339
+ dictionary.get("created_ts")\
1340
+ if "created_ts" in dictionary.keys()\
1341
+ else APIHelper.SKIP
1342
+ modified_ts =\
1343
+ dictionary.get("modified_ts")\
1344
+ if "modified_ts" in dictionary.keys()\
1345
+ else APIHelper.SKIP
1346
+ created_user_id =\
1347
+ dictionary.get("created_user_id")\
1348
+ if "created_user_id" in dictionary.keys()\
1349
+ else APIHelper.SKIP
1350
+ modified_user_id =\
1351
+ dictionary.get("modified_user_id")\
1352
+ if "modified_user_id" in dictionary.keys()\
1353
+ else APIHelper.SKIP
1354
+ product_transaction_api_id =\
1355
+ dictionary.get("product_transaction_api_id")\
1356
+ if "product_transaction_api_id" in dictionary.keys()\
1357
+ else APIHelper.SKIP
1358
+ transaction_amount_notification_threshold =\
1359
+ dictionary.get("transaction_amount_notification_threshold")\
1360
+ if dictionary.get("transaction_amount_notification_threshold")\
1361
+ else APIHelper.SKIP
1362
+ is_secondary_amount_allowed =\
1363
+ dictionary.get("is_secondary_amount_allowed")\
1364
+ if "is_secondary_amount_allowed" in dictionary.keys()\
1365
+ else APIHelper.SKIP
1366
+ fortis_id =\
1367
+ dictionary.get("fortis_id")\
1368
+ if "fortis_id" in dictionary.keys()\
1369
+ else APIHelper.SKIP
1370
+ product_billing_group_code =\
1371
+ dictionary.get("product_billing_group_code")\
1372
+ if "product_billing_group_code" in dictionary.keys()\
1373
+ else APIHelper.SKIP
1374
+ cau_subscribe_type_code =\
1375
+ dictionary.get("cau_subscribe_type_code")\
1376
+ if "cau_subscribe_type_code" in dictionary.keys()\
1377
+ else APIHelper.SKIP
1378
+ merchant_code =\
1379
+ dictionary.get("merchant_code")\
1380
+ if "merchant_code" in dictionary.keys()\
1381
+ else APIHelper.SKIP
1382
+ currency =\
1383
+ dictionary.get("currency")\
1384
+ if dictionary.get("currency")\
1385
+ else APIHelper.SKIP
1386
+
1387
+ # Clean out expected properties from dictionary
1388
+ additional_properties =\
1389
+ {k: v for k, v in dictionary.items() if k not in cls._names.values()}
1390
+
1391
+ # Return an object of this model
1392
+ return cls(processor_version,
1393
+ industry_type,
1394
+ title,
1395
+ payment_method,
1396
+ processor,
1397
+ mcc,
1398
+ tax_surcharge_config,
1399
+ terminal_id,
1400
+ partner,
1401
+ product_ach_pv_store_id,
1402
+ invoice_adjustment_title,
1403
+ location_id,
1404
+ location_api_id,
1405
+ billing_location_api_id,
1406
+ portfolio_id,
1407
+ portfolio_validation_rule,
1408
+ sub_processor,
1409
+ surcharge,
1410
+ processor_data,
1411
+ vt_clerk_number,
1412
+ vt_billing_phone,
1413
+ vt_enable_tip,
1414
+ ach_allow_debit,
1415
+ ach_allow_credit,
1416
+ ach_allow_refund,
1417
+ vt_cvv,
1418
+ vt_street,
1419
+ vt_zip,
1420
+ vt_order_num,
1421
+ vt_enable,
1422
+ receipt_show_contact_name,
1423
+ display_avs,
1424
+ card_type_visa,
1425
+ card_type_mc,
1426
+ card_type_disc,
1427
+ card_type_amex,
1428
+ card_type_diners,
1429
+ card_type_jcb,
1430
+ card_type_ebt,
1431
+ allow_ebt_cash_benefit,
1432
+ allow_ebt_food_stamp,
1433
+ invoice_location,
1434
+ allow_partial_authorization,
1435
+ allow_recurring_partial_authorization,
1436
+ auto_decline_cvv,
1437
+ auto_decline_street,
1438
+ auto_decline_zip,
1439
+ split_payments_allow,
1440
+ vt_show_custom_fields,
1441
+ receipt_show_custom_fields,
1442
+ vt_override_sales_tax_allowed,
1443
+ vt_enable_sales_tax,
1444
+ vt_require_zip,
1445
+ vt_require_street,
1446
+ auto_decline_cavv,
1447
+ merchant_id,
1448
+ receipt_header,
1449
+ receipt_footer,
1450
+ receipt_add_account_above_signature,
1451
+ receipt_add_recurring_above_signature,
1452
+ receipt_vt_above_signature,
1453
+ default_transaction_type,
1454
+ username,
1455
+ password,
1456
+ current_batch,
1457
+ dup_check_per_batch,
1458
+ agent_code,
1459
+ paylink_allow,
1460
+ quick_invoice_allow,
1461
+ level_3_allow,
1462
+ payfac_enable,
1463
+ enable_3_ds,
1464
+ sales_office_id,
1465
+ hosted_payment_page_max_allowed,
1466
+ hosted_payment_page_allow,
1467
+ surcharge_id,
1468
+ allow_big_commerce,
1469
+ allow_shopify,
1470
+ level_3_default,
1471
+ cau_subscribe_type_id,
1472
+ cau_account_number,
1473
+ location_billing_account_id,
1474
+ product_billing_group_id,
1475
+ account_number,
1476
+ run_avs_on_accountvault_create,
1477
+ accountvault_expire_notification_email_enable,
1478
+ debit_allow_void,
1479
+ quick_invoice_text_to_pay,
1480
+ authentication_code,
1481
+ sms_enable,
1482
+ vt_show_currency,
1483
+ receipt_show_currency,
1484
+ allow_blind_refund,
1485
+ vt_show_company_name,
1486
+ receipt_show_company_name,
1487
+ bank_funded_only,
1488
+ require_cvv_on_keyed_cnp,
1489
+ require_cvv_on_tokenized_cnp,
1490
+ show_secondary_amount,
1491
+ allow_secondary_amount,
1492
+ show_google_pay,
1493
+ show_apple_pay,
1494
+ batch_risk_config,
1495
+ currency_code,
1496
+ enable_ach_validation,
1497
+ enable_ach_retry,
1498
+ allow_softpos,
1499
+ allow_multi_currency,
1500
+ allow_unapplied_payments,
1501
+ id,
1502
+ receipt_logo,
1503
+ active,
1504
+ tz,
1505
+ current_stan,
1506
+ created_ts,
1507
+ modified_ts,
1508
+ created_user_id,
1509
+ modified_user_id,
1510
+ product_transaction_api_id,
1511
+ transaction_amount_notification_threshold,
1512
+ is_secondary_amount_allowed,
1513
+ fortis_id,
1514
+ product_billing_group_code,
1515
+ cau_subscribe_type_code,
1516
+ merchant_code,
1517
+ currency,
1518
+ additional_properties)
1519
+
1520
+ def __repr__(self):
1521
+ """Return a unambiguous string representation."""
1522
+ _processor_version=(
1523
+ self.processor_version
1524
+ if hasattr(self, "processor_version")
1525
+ else None
1526
+ )
1527
+ _industry_type=(
1528
+ self.industry_type
1529
+ if hasattr(self, "industry_type")
1530
+ else None
1531
+ )
1532
+ _title=(
1533
+ self.title
1534
+ if hasattr(self, "title")
1535
+ else None
1536
+ )
1537
+ _payment_method=(
1538
+ self.payment_method
1539
+ if hasattr(self, "payment_method")
1540
+ else None
1541
+ )
1542
+ _processor=(
1543
+ self.processor
1544
+ if hasattr(self, "processor")
1545
+ else None
1546
+ )
1547
+ _mcc=(
1548
+ self.mcc
1549
+ if hasattr(self, "mcc")
1550
+ else None
1551
+ )
1552
+ _tax_surcharge_config=(
1553
+ self.tax_surcharge_config
1554
+ if hasattr(self, "tax_surcharge_config")
1555
+ else None
1556
+ )
1557
+ _terminal_id=(
1558
+ self.terminal_id
1559
+ if hasattr(self, "terminal_id")
1560
+ else None
1561
+ )
1562
+ _partner=(
1563
+ self.partner
1564
+ if hasattr(self, "partner")
1565
+ else None
1566
+ )
1567
+ _product_ach_pv_store_id=(
1568
+ self.product_ach_pv_store_id
1569
+ if hasattr(self, "product_ach_pv_store_id")
1570
+ else None
1571
+ )
1572
+ _invoice_adjustment_title=(
1573
+ self.invoice_adjustment_title
1574
+ if hasattr(self, "invoice_adjustment_title")
1575
+ else None
1576
+ )
1577
+ _location_id=(
1578
+ self.location_id
1579
+ if hasattr(self, "location_id")
1580
+ else None
1581
+ )
1582
+ _location_api_id=(
1583
+ self.location_api_id
1584
+ if hasattr(self, "location_api_id")
1585
+ else None
1586
+ )
1587
+ _billing_location_api_id=(
1588
+ self.billing_location_api_id
1589
+ if hasattr(self, "billing_location_api_id")
1590
+ else None
1591
+ )
1592
+ _portfolio_id=(
1593
+ self.portfolio_id
1594
+ if hasattr(self, "portfolio_id")
1595
+ else None
1596
+ )
1597
+ _portfolio_validation_rule=(
1598
+ self.portfolio_validation_rule
1599
+ if hasattr(self, "portfolio_validation_rule")
1600
+ else None
1601
+ )
1602
+ _sub_processor=(
1603
+ self.sub_processor
1604
+ if hasattr(self, "sub_processor")
1605
+ else None
1606
+ )
1607
+ _surcharge=(
1608
+ self.surcharge
1609
+ if hasattr(self, "surcharge")
1610
+ else None
1611
+ )
1612
+ _processor_data=(
1613
+ self.processor_data
1614
+ if hasattr(self, "processor_data")
1615
+ else None
1616
+ )
1617
+ _vt_clerk_number=(
1618
+ self.vt_clerk_number
1619
+ if hasattr(self, "vt_clerk_number")
1620
+ else None
1621
+ )
1622
+ _vt_billing_phone=(
1623
+ self.vt_billing_phone
1624
+ if hasattr(self, "vt_billing_phone")
1625
+ else None
1626
+ )
1627
+ _vt_enable_tip=(
1628
+ self.vt_enable_tip
1629
+ if hasattr(self, "vt_enable_tip")
1630
+ else None
1631
+ )
1632
+ _ach_allow_debit=(
1633
+ self.ach_allow_debit
1634
+ if hasattr(self, "ach_allow_debit")
1635
+ else None
1636
+ )
1637
+ _ach_allow_credit=(
1638
+ self.ach_allow_credit
1639
+ if hasattr(self, "ach_allow_credit")
1640
+ else None
1641
+ )
1642
+ _ach_allow_refund=(
1643
+ self.ach_allow_refund
1644
+ if hasattr(self, "ach_allow_refund")
1645
+ else None
1646
+ )
1647
+ _vt_cvv=(
1648
+ self.vt_cvv
1649
+ if hasattr(self, "vt_cvv")
1650
+ else None
1651
+ )
1652
+ _vt_street=(
1653
+ self.vt_street
1654
+ if hasattr(self, "vt_street")
1655
+ else None
1656
+ )
1657
+ _vt_zip=(
1658
+ self.vt_zip
1659
+ if hasattr(self, "vt_zip")
1660
+ else None
1661
+ )
1662
+ _vt_order_num=(
1663
+ self.vt_order_num
1664
+ if hasattr(self, "vt_order_num")
1665
+ else None
1666
+ )
1667
+ _vt_enable=(
1668
+ self.vt_enable
1669
+ if hasattr(self, "vt_enable")
1670
+ else None
1671
+ )
1672
+ _receipt_show_contact_name=(
1673
+ self.receipt_show_contact_name
1674
+ if hasattr(self, "receipt_show_contact_name")
1675
+ else None
1676
+ )
1677
+ _display_avs=(
1678
+ self.display_avs
1679
+ if hasattr(self, "display_avs")
1680
+ else None
1681
+ )
1682
+ _card_type_visa=(
1683
+ self.card_type_visa
1684
+ if hasattr(self, "card_type_visa")
1685
+ else None
1686
+ )
1687
+ _card_type_mc=(
1688
+ self.card_type_mc
1689
+ if hasattr(self, "card_type_mc")
1690
+ else None
1691
+ )
1692
+ _card_type_disc=(
1693
+ self.card_type_disc
1694
+ if hasattr(self, "card_type_disc")
1695
+ else None
1696
+ )
1697
+ _card_type_amex=(
1698
+ self.card_type_amex
1699
+ if hasattr(self, "card_type_amex")
1700
+ else None
1701
+ )
1702
+ _card_type_diners=(
1703
+ self.card_type_diners
1704
+ if hasattr(self, "card_type_diners")
1705
+ else None
1706
+ )
1707
+ _card_type_jcb=(
1708
+ self.card_type_jcb
1709
+ if hasattr(self, "card_type_jcb")
1710
+ else None
1711
+ )
1712
+ _card_type_ebt=(
1713
+ self.card_type_ebt
1714
+ if hasattr(self, "card_type_ebt")
1715
+ else None
1716
+ )
1717
+ _allow_ebt_cash_benefit=(
1718
+ self.allow_ebt_cash_benefit
1719
+ if hasattr(self, "allow_ebt_cash_benefit")
1720
+ else None
1721
+ )
1722
+ _allow_ebt_food_stamp=(
1723
+ self.allow_ebt_food_stamp
1724
+ if hasattr(self, "allow_ebt_food_stamp")
1725
+ else None
1726
+ )
1727
+ _invoice_location=(
1728
+ self.invoice_location
1729
+ if hasattr(self, "invoice_location")
1730
+ else None
1731
+ )
1732
+ _allow_partial_authorization=(
1733
+ self.allow_partial_authorization
1734
+ if hasattr(self, "allow_partial_authorization")
1735
+ else None
1736
+ )
1737
+ _allow_recurring_partial_authorization=(
1738
+ self.allow_recurring_partial_authorization
1739
+ if hasattr(self, "allow_recurring_partial_authorization")
1740
+ else None
1741
+ )
1742
+ _auto_decline_cvv=(
1743
+ self.auto_decline_cvv
1744
+ if hasattr(self, "auto_decline_cvv")
1745
+ else None
1746
+ )
1747
+ _auto_decline_street=(
1748
+ self.auto_decline_street
1749
+ if hasattr(self, "auto_decline_street")
1750
+ else None
1751
+ )
1752
+ _auto_decline_zip=(
1753
+ self.auto_decline_zip
1754
+ if hasattr(self, "auto_decline_zip")
1755
+ else None
1756
+ )
1757
+ _split_payments_allow=(
1758
+ self.split_payments_allow
1759
+ if hasattr(self, "split_payments_allow")
1760
+ else None
1761
+ )
1762
+ _vt_show_custom_fields=(
1763
+ self.vt_show_custom_fields
1764
+ if hasattr(self, "vt_show_custom_fields")
1765
+ else None
1766
+ )
1767
+ _receipt_show_custom_fields=(
1768
+ self.receipt_show_custom_fields
1769
+ if hasattr(self, "receipt_show_custom_fields")
1770
+ else None
1771
+ )
1772
+ _vt_override_sales_tax_allowed=(
1773
+ self.vt_override_sales_tax_allowed
1774
+ if hasattr(self, "vt_override_sales_tax_allowed")
1775
+ else None
1776
+ )
1777
+ _vt_enable_sales_tax=(
1778
+ self.vt_enable_sales_tax
1779
+ if hasattr(self, "vt_enable_sales_tax")
1780
+ else None
1781
+ )
1782
+ _vt_require_zip=(
1783
+ self.vt_require_zip
1784
+ if hasattr(self, "vt_require_zip")
1785
+ else None
1786
+ )
1787
+ _vt_require_street=(
1788
+ self.vt_require_street
1789
+ if hasattr(self, "vt_require_street")
1790
+ else None
1791
+ )
1792
+ _auto_decline_cavv=(
1793
+ self.auto_decline_cavv
1794
+ if hasattr(self, "auto_decline_cavv")
1795
+ else None
1796
+ )
1797
+ _merchant_id=(
1798
+ self.merchant_id
1799
+ if hasattr(self, "merchant_id")
1800
+ else None
1801
+ )
1802
+ _receipt_header=(
1803
+ self.receipt_header
1804
+ if hasattr(self, "receipt_header")
1805
+ else None
1806
+ )
1807
+ _receipt_footer=(
1808
+ self.receipt_footer
1809
+ if hasattr(self, "receipt_footer")
1810
+ else None
1811
+ )
1812
+ _receipt_add_account_above_signature=(
1813
+ self.receipt_add_account_above_signature
1814
+ if hasattr(self, "receipt_add_account_above_signature")
1815
+ else None
1816
+ )
1817
+ _receipt_add_recurring_above_signature=(
1818
+ self.receipt_add_recurring_above_signature
1819
+ if hasattr(self, "receipt_add_recurring_above_signature")
1820
+ else None
1821
+ )
1822
+ _receipt_vt_above_signature=(
1823
+ self.receipt_vt_above_signature
1824
+ if hasattr(self, "receipt_vt_above_signature")
1825
+ else None
1826
+ )
1827
+ _default_transaction_type=(
1828
+ self.default_transaction_type
1829
+ if hasattr(self, "default_transaction_type")
1830
+ else None
1831
+ )
1832
+ _username=(
1833
+ self.username
1834
+ if hasattr(self, "username")
1835
+ else None
1836
+ )
1837
+ _password=(
1838
+ self.password
1839
+ if hasattr(self, "password")
1840
+ else None
1841
+ )
1842
+ _current_batch=(
1843
+ self.current_batch
1844
+ if hasattr(self, "current_batch")
1845
+ else None
1846
+ )
1847
+ _dup_check_per_batch=(
1848
+ self.dup_check_per_batch
1849
+ if hasattr(self, "dup_check_per_batch")
1850
+ else None
1851
+ )
1852
+ _agent_code=(
1853
+ self.agent_code
1854
+ if hasattr(self, "agent_code")
1855
+ else None
1856
+ )
1857
+ _paylink_allow=(
1858
+ self.paylink_allow
1859
+ if hasattr(self, "paylink_allow")
1860
+ else None
1861
+ )
1862
+ _quick_invoice_allow=(
1863
+ self.quick_invoice_allow
1864
+ if hasattr(self, "quick_invoice_allow")
1865
+ else None
1866
+ )
1867
+ _level_3_allow=(
1868
+ self.level_3_allow
1869
+ if hasattr(self, "level_3_allow")
1870
+ else None
1871
+ )
1872
+ _payfac_enable=(
1873
+ self.payfac_enable
1874
+ if hasattr(self, "payfac_enable")
1875
+ else None
1876
+ )
1877
+ _enable_3_ds=(
1878
+ self.enable_3_ds
1879
+ if hasattr(self, "enable_3_ds")
1880
+ else None
1881
+ )
1882
+ _sales_office_id=(
1883
+ self.sales_office_id
1884
+ if hasattr(self, "sales_office_id")
1885
+ else None
1886
+ )
1887
+ _hosted_payment_page_max_allowed=(
1888
+ self.hosted_payment_page_max_allowed
1889
+ if hasattr(self, "hosted_payment_page_max_allowed")
1890
+ else None
1891
+ )
1892
+ _hosted_payment_page_allow=(
1893
+ self.hosted_payment_page_allow
1894
+ if hasattr(self, "hosted_payment_page_allow")
1895
+ else None
1896
+ )
1897
+ _surcharge_id=(
1898
+ self.surcharge_id
1899
+ if hasattr(self, "surcharge_id")
1900
+ else None
1901
+ )
1902
+ _allow_big_commerce=(
1903
+ self.allow_big_commerce
1904
+ if hasattr(self, "allow_big_commerce")
1905
+ else None
1906
+ )
1907
+ _allow_shopify=(
1908
+ self.allow_shopify
1909
+ if hasattr(self, "allow_shopify")
1910
+ else None
1911
+ )
1912
+ _level_3_default=(
1913
+ self.level_3_default
1914
+ if hasattr(self, "level_3_default")
1915
+ else None
1916
+ )
1917
+ _cau_subscribe_type_id=(
1918
+ self.cau_subscribe_type_id
1919
+ if hasattr(self, "cau_subscribe_type_id")
1920
+ else None
1921
+ )
1922
+ _cau_account_number=(
1923
+ self.cau_account_number
1924
+ if hasattr(self, "cau_account_number")
1925
+ else None
1926
+ )
1927
+ _location_billing_account_id=(
1928
+ self.location_billing_account_id
1929
+ if hasattr(self, "location_billing_account_id")
1930
+ else None
1931
+ )
1932
+ _product_billing_group_id=(
1933
+ self.product_billing_group_id
1934
+ if hasattr(self, "product_billing_group_id")
1935
+ else None
1936
+ )
1937
+ _account_number=(
1938
+ self.account_number
1939
+ if hasattr(self, "account_number")
1940
+ else None
1941
+ )
1942
+ _run_avs_on_accountvault_create=(
1943
+ self.run_avs_on_accountvault_create
1944
+ if hasattr(self, "run_avs_on_accountvault_create")
1945
+ else None
1946
+ )
1947
+ _accountvault_expire_notification_email_enable=(
1948
+ self.accountvault_expire_notification_email_enable
1949
+ if hasattr(self, "accountvault_expire_notification_email_enable")
1950
+ else None
1951
+ )
1952
+ _debit_allow_void=(
1953
+ self.debit_allow_void
1954
+ if hasattr(self, "debit_allow_void")
1955
+ else None
1956
+ )
1957
+ _quick_invoice_text_to_pay=(
1958
+ self.quick_invoice_text_to_pay
1959
+ if hasattr(self, "quick_invoice_text_to_pay")
1960
+ else None
1961
+ )
1962
+ _authentication_code=(
1963
+ self.authentication_code
1964
+ if hasattr(self, "authentication_code")
1965
+ else None
1966
+ )
1967
+ _sms_enable=(
1968
+ self.sms_enable
1969
+ if hasattr(self, "sms_enable")
1970
+ else None
1971
+ )
1972
+ _vt_show_currency=(
1973
+ self.vt_show_currency
1974
+ if hasattr(self, "vt_show_currency")
1975
+ else None
1976
+ )
1977
+ _receipt_show_currency=(
1978
+ self.receipt_show_currency
1979
+ if hasattr(self, "receipt_show_currency")
1980
+ else None
1981
+ )
1982
+ _allow_blind_refund=(
1983
+ self.allow_blind_refund
1984
+ if hasattr(self, "allow_blind_refund")
1985
+ else None
1986
+ )
1987
+ _vt_show_company_name=(
1988
+ self.vt_show_company_name
1989
+ if hasattr(self, "vt_show_company_name")
1990
+ else None
1991
+ )
1992
+ _receipt_show_company_name=(
1993
+ self.receipt_show_company_name
1994
+ if hasattr(self, "receipt_show_company_name")
1995
+ else None
1996
+ )
1997
+ _bank_funded_only=(
1998
+ self.bank_funded_only
1999
+ if hasattr(self, "bank_funded_only")
2000
+ else None
2001
+ )
2002
+ _require_cvv_on_keyed_cnp=(
2003
+ self.require_cvv_on_keyed_cnp
2004
+ if hasattr(self, "require_cvv_on_keyed_cnp")
2005
+ else None
2006
+ )
2007
+ _require_cvv_on_tokenized_cnp=(
2008
+ self.require_cvv_on_tokenized_cnp
2009
+ if hasattr(self, "require_cvv_on_tokenized_cnp")
2010
+ else None
2011
+ )
2012
+ _show_secondary_amount=(
2013
+ self.show_secondary_amount
2014
+ if hasattr(self, "show_secondary_amount")
2015
+ else None
2016
+ )
2017
+ _allow_secondary_amount=(
2018
+ self.allow_secondary_amount
2019
+ if hasattr(self, "allow_secondary_amount")
2020
+ else None
2021
+ )
2022
+ _show_google_pay=(
2023
+ self.show_google_pay
2024
+ if hasattr(self, "show_google_pay")
2025
+ else None
2026
+ )
2027
+ _show_apple_pay=(
2028
+ self.show_apple_pay
2029
+ if hasattr(self, "show_apple_pay")
2030
+ else None
2031
+ )
2032
+ _batch_risk_config=(
2033
+ self.batch_risk_config
2034
+ if hasattr(self, "batch_risk_config")
2035
+ else None
2036
+ )
2037
+ _currency_code=(
2038
+ self.currency_code
2039
+ if hasattr(self, "currency_code")
2040
+ else None
2041
+ )
2042
+ _enable_ach_validation=(
2043
+ self.enable_ach_validation
2044
+ if hasattr(self, "enable_ach_validation")
2045
+ else None
2046
+ )
2047
+ _enable_ach_retry=(
2048
+ self.enable_ach_retry
2049
+ if hasattr(self, "enable_ach_retry")
2050
+ else None
2051
+ )
2052
+ _allow_softpos=(
2053
+ self.allow_softpos
2054
+ if hasattr(self, "allow_softpos")
2055
+ else None
2056
+ )
2057
+ _allow_multi_currency=(
2058
+ self.allow_multi_currency
2059
+ if hasattr(self, "allow_multi_currency")
2060
+ else None
2061
+ )
2062
+ _allow_unapplied_payments=(
2063
+ self.allow_unapplied_payments
2064
+ if hasattr(self, "allow_unapplied_payments")
2065
+ else None
2066
+ )
2067
+ _id=(
2068
+ self.id
2069
+ if hasattr(self, "id")
2070
+ else None
2071
+ )
2072
+ _receipt_logo=(
2073
+ self.receipt_logo
2074
+ if hasattr(self, "receipt_logo")
2075
+ else None
2076
+ )
2077
+ _active=(
2078
+ self.active
2079
+ if hasattr(self, "active")
2080
+ else None
2081
+ )
2082
+ _tz=(
2083
+ self.tz
2084
+ if hasattr(self, "tz")
2085
+ else None
2086
+ )
2087
+ _current_stan=(
2088
+ self.current_stan
2089
+ if hasattr(self, "current_stan")
2090
+ else None
2091
+ )
2092
+ _created_ts=(
2093
+ self.created_ts
2094
+ if hasattr(self, "created_ts")
2095
+ else None
2096
+ )
2097
+ _modified_ts=(
2098
+ self.modified_ts
2099
+ if hasattr(self, "modified_ts")
2100
+ else None
2101
+ )
2102
+ _created_user_id=(
2103
+ self.created_user_id
2104
+ if hasattr(self, "created_user_id")
2105
+ else None
2106
+ )
2107
+ _modified_user_id=(
2108
+ self.modified_user_id
2109
+ if hasattr(self, "modified_user_id")
2110
+ else None
2111
+ )
2112
+ _product_transaction_api_id=(
2113
+ self.product_transaction_api_id
2114
+ if hasattr(self, "product_transaction_api_id")
2115
+ else None
2116
+ )
2117
+ _transaction_amount_notification_threshold=(
2118
+ self.transaction_amount_notification_threshold
2119
+ if hasattr(self, "transaction_amount_notification_threshold")
2120
+ else None
2121
+ )
2122
+ _is_secondary_amount_allowed=(
2123
+ self.is_secondary_amount_allowed
2124
+ if hasattr(self, "is_secondary_amount_allowed")
2125
+ else None
2126
+ )
2127
+ _fortis_id=(
2128
+ self.fortis_id
2129
+ if hasattr(self, "fortis_id")
2130
+ else None
2131
+ )
2132
+ _product_billing_group_code=(
2133
+ self.product_billing_group_code
2134
+ if hasattr(self, "product_billing_group_code")
2135
+ else None
2136
+ )
2137
+ _cau_subscribe_type_code=(
2138
+ self.cau_subscribe_type_code
2139
+ if hasattr(self, "cau_subscribe_type_code")
2140
+ else None
2141
+ )
2142
+ _merchant_code=(
2143
+ self.merchant_code
2144
+ if hasattr(self, "merchant_code")
2145
+ else None
2146
+ )
2147
+ _currency=(
2148
+ self.currency
2149
+ if hasattr(self, "currency")
2150
+ else None
2151
+ )
2152
+ _additional_properties=self.additional_properties
2153
+ return (
2154
+ f"{self.__class__.__name__}("
2155
+ f"processor_version={_processor_version!r}, "
2156
+ f"industry_type={_industry_type!r}, "
2157
+ f"title={_title!r}, "
2158
+ f"payment_method={_payment_method!r}, "
2159
+ f"processor={_processor!r}, "
2160
+ f"mcc={_mcc!r}, "
2161
+ f"tax_surcharge_config={_tax_surcharge_config!r}, "
2162
+ f"terminal_id={_terminal_id!r}, "
2163
+ f"partner={_partner!r}, "
2164
+ f"product_ach_pv_store_id={_product_ach_pv_store_id!r}, "
2165
+ f"invoice_adjustment_title={_invoice_adjustment_title!r}, "
2166
+ f"location_id={_location_id!r}, "
2167
+ f"location_api_id={_location_api_id!r}, "
2168
+ f"billing_location_api_id={_billing_location_api_id!r}, "
2169
+ f"portfolio_id={_portfolio_id!r}, "
2170
+ f"portfolio_validation_rule={_portfolio_validation_rule!r}, "
2171
+ f"sub_processor={_sub_processor!r}, "
2172
+ f"surcharge={_surcharge!r}, "
2173
+ f"processor_data={_processor_data!r}, "
2174
+ f"vt_clerk_number={_vt_clerk_number!r}, "
2175
+ f"vt_billing_phone={_vt_billing_phone!r}, "
2176
+ f"vt_enable_tip={_vt_enable_tip!r}, "
2177
+ f"ach_allow_debit={_ach_allow_debit!r}, "
2178
+ f"ach_allow_credit={_ach_allow_credit!r}, "
2179
+ f"ach_allow_refund={_ach_allow_refund!r}, "
2180
+ f"vt_cvv={_vt_cvv!r}, "
2181
+ f"vt_street={_vt_street!r}, "
2182
+ f"vt_zip={_vt_zip!r}, "
2183
+ f"vt_order_num={_vt_order_num!r}, "
2184
+ f"vt_enable={_vt_enable!r}, "
2185
+ f"receipt_show_contact_name={_receipt_show_contact_name!r}, "
2186
+ f"display_avs={_display_avs!r}, "
2187
+ f"card_type_visa={_card_type_visa!r}, "
2188
+ f"card_type_mc={_card_type_mc!r}, "
2189
+ f"card_type_disc={_card_type_disc!r}, "
2190
+ f"card_type_amex={_card_type_amex!r}, "
2191
+ f"card_type_diners={_card_type_diners!r}, "
2192
+ f"card_type_jcb={_card_type_jcb!r}, "
2193
+ f"card_type_ebt={_card_type_ebt!r}, "
2194
+ f"allow_ebt_cash_benefit={_allow_ebt_cash_benefit!r}, "
2195
+ f"allow_ebt_food_stamp={_allow_ebt_food_stamp!r}, "
2196
+ f"invoice_location={_invoice_location!r}, "
2197
+ f"allow_partial_authorization={_allow_partial_authorization!r}, "
2198
+ f"allow_recurring_partial_authorization={_allow_recurring_partial_authorization!r}, "
2199
+ f"auto_decline_cvv={_auto_decline_cvv!r}, "
2200
+ f"auto_decline_street={_auto_decline_street!r}, "
2201
+ f"auto_decline_zip={_auto_decline_zip!r}, "
2202
+ f"split_payments_allow={_split_payments_allow!r}, "
2203
+ f"vt_show_custom_fields={_vt_show_custom_fields!r}, "
2204
+ f"receipt_show_custom_fields={_receipt_show_custom_fields!r}, "
2205
+ f"vt_override_sales_tax_allowed={_vt_override_sales_tax_allowed!r}, "
2206
+ f"vt_enable_sales_tax={_vt_enable_sales_tax!r}, "
2207
+ f"vt_require_zip={_vt_require_zip!r}, "
2208
+ f"vt_require_street={_vt_require_street!r}, "
2209
+ f"auto_decline_cavv={_auto_decline_cavv!r}, "
2210
+ f"merchant_id={_merchant_id!r}, "
2211
+ f"receipt_header={_receipt_header!r}, "
2212
+ f"receipt_footer={_receipt_footer!r}, "
2213
+ f"receipt_add_account_above_signature={_receipt_add_account_above_signature!r}, "
2214
+ f"receipt_add_recurring_above_signature={_receipt_add_recurring_above_signature!r}, "
2215
+ f"receipt_vt_above_signature={_receipt_vt_above_signature!r}, "
2216
+ f"default_transaction_type={_default_transaction_type!r}, "
2217
+ f"username={_username!r}, "
2218
+ f"password={_password!r}, "
2219
+ f"current_batch={_current_batch!r}, "
2220
+ f"dup_check_per_batch={_dup_check_per_batch!r}, "
2221
+ f"agent_code={_agent_code!r}, "
2222
+ f"paylink_allow={_paylink_allow!r}, "
2223
+ f"quick_invoice_allow={_quick_invoice_allow!r}, "
2224
+ f"level_3_allow={_level_3_allow!r}, "
2225
+ f"payfac_enable={_payfac_enable!r}, "
2226
+ f"enable_3_ds={_enable_3_ds!r}, "
2227
+ f"sales_office_id={_sales_office_id!r}, "
2228
+ f"hosted_payment_page_max_allowed={_hosted_payment_page_max_allowed!r}, "
2229
+ f"hosted_payment_page_allow={_hosted_payment_page_allow!r}, "
2230
+ f"surcharge_id={_surcharge_id!r}, "
2231
+ f"allow_big_commerce={_allow_big_commerce!r}, "
2232
+ f"allow_shopify={_allow_shopify!r}, "
2233
+ f"level_3_default={_level_3_default!r}, "
2234
+ f"cau_subscribe_type_id={_cau_subscribe_type_id!r}, "
2235
+ f"cau_account_number={_cau_account_number!r}, "
2236
+ f"location_billing_account_id={_location_billing_account_id!r}, "
2237
+ f"product_billing_group_id={_product_billing_group_id!r}, "
2238
+ f"account_number={_account_number!r}, "
2239
+ f"run_avs_on_accountvault_create={_run_avs_on_accountvault_create!r}, "
2240
+ f"accountvault_expire_notification_email_enable={_accountvault_expire_notification_email_enable!r}, "
2241
+ f"debit_allow_void={_debit_allow_void!r}, "
2242
+ f"quick_invoice_text_to_pay={_quick_invoice_text_to_pay!r}, "
2243
+ f"authentication_code={_authentication_code!r}, "
2244
+ f"sms_enable={_sms_enable!r}, "
2245
+ f"vt_show_currency={_vt_show_currency!r}, "
2246
+ f"receipt_show_currency={_receipt_show_currency!r}, "
2247
+ f"allow_blind_refund={_allow_blind_refund!r}, "
2248
+ f"vt_show_company_name={_vt_show_company_name!r}, "
2249
+ f"receipt_show_company_name={_receipt_show_company_name!r}, "
2250
+ f"bank_funded_only={_bank_funded_only!r}, "
2251
+ f"require_cvv_on_keyed_cnp={_require_cvv_on_keyed_cnp!r}, "
2252
+ f"require_cvv_on_tokenized_cnp={_require_cvv_on_tokenized_cnp!r}, "
2253
+ f"show_secondary_amount={_show_secondary_amount!r}, "
2254
+ f"allow_secondary_amount={_allow_secondary_amount!r}, "
2255
+ f"show_google_pay={_show_google_pay!r}, "
2256
+ f"show_apple_pay={_show_apple_pay!r}, "
2257
+ f"batch_risk_config={_batch_risk_config!r}, "
2258
+ f"currency_code={_currency_code!r}, "
2259
+ f"enable_ach_validation={_enable_ach_validation!r}, "
2260
+ f"enable_ach_retry={_enable_ach_retry!r}, "
2261
+ f"allow_softpos={_allow_softpos!r}, "
2262
+ f"allow_multi_currency={_allow_multi_currency!r}, "
2263
+ f"allow_unapplied_payments={_allow_unapplied_payments!r}, "
2264
+ f"id={_id!r}, "
2265
+ f"receipt_logo={_receipt_logo!r}, "
2266
+ f"active={_active!r}, "
2267
+ f"tz={_tz!r}, "
2268
+ f"current_stan={_current_stan!r}, "
2269
+ f"created_ts={_created_ts!r}, "
2270
+ f"modified_ts={_modified_ts!r}, "
2271
+ f"created_user_id={_created_user_id!r}, "
2272
+ f"modified_user_id={_modified_user_id!r}, "
2273
+ f"product_transaction_api_id={_product_transaction_api_id!r}, "
2274
+ f"transaction_amount_notification_threshold={_transaction_amount_notification_threshold!r}, "
2275
+ f"is_secondary_amount_allowed={_is_secondary_amount_allowed!r}, "
2276
+ f"fortis_id={_fortis_id!r}, "
2277
+ f"product_billing_group_code={_product_billing_group_code!r}, "
2278
+ f"cau_subscribe_type_code={_cau_subscribe_type_code!r}, "
2279
+ f"merchant_code={_merchant_code!r}, "
2280
+ f"currency={_currency!r}, "
2281
+ f"additional_properties={_additional_properties!r}, "
2282
+ f")"
2283
+ )
2284
+
2285
+ def __str__(self):
2286
+ """Return a human-readable string representation."""
2287
+ _processor_version=(
2288
+ self.processor_version
2289
+ if hasattr(self, "processor_version")
2290
+ else None
2291
+ )
2292
+ _industry_type=(
2293
+ self.industry_type
2294
+ if hasattr(self, "industry_type")
2295
+ else None
2296
+ )
2297
+ _title=(
2298
+ self.title
2299
+ if hasattr(self, "title")
2300
+ else None
2301
+ )
2302
+ _payment_method=(
2303
+ self.payment_method
2304
+ if hasattr(self, "payment_method")
2305
+ else None
2306
+ )
2307
+ _processor=(
2308
+ self.processor
2309
+ if hasattr(self, "processor")
2310
+ else None
2311
+ )
2312
+ _mcc=(
2313
+ self.mcc
2314
+ if hasattr(self, "mcc")
2315
+ else None
2316
+ )
2317
+ _tax_surcharge_config=(
2318
+ self.tax_surcharge_config
2319
+ if hasattr(self, "tax_surcharge_config")
2320
+ else None
2321
+ )
2322
+ _terminal_id=(
2323
+ self.terminal_id
2324
+ if hasattr(self, "terminal_id")
2325
+ else None
2326
+ )
2327
+ _partner=(
2328
+ self.partner
2329
+ if hasattr(self, "partner")
2330
+ else None
2331
+ )
2332
+ _product_ach_pv_store_id=(
2333
+ self.product_ach_pv_store_id
2334
+ if hasattr(self, "product_ach_pv_store_id")
2335
+ else None
2336
+ )
2337
+ _invoice_adjustment_title=(
2338
+ self.invoice_adjustment_title
2339
+ if hasattr(self, "invoice_adjustment_title")
2340
+ else None
2341
+ )
2342
+ _location_id=(
2343
+ self.location_id
2344
+ if hasattr(self, "location_id")
2345
+ else None
2346
+ )
2347
+ _location_api_id=(
2348
+ self.location_api_id
2349
+ if hasattr(self, "location_api_id")
2350
+ else None
2351
+ )
2352
+ _billing_location_api_id=(
2353
+ self.billing_location_api_id
2354
+ if hasattr(self, "billing_location_api_id")
2355
+ else None
2356
+ )
2357
+ _portfolio_id=(
2358
+ self.portfolio_id
2359
+ if hasattr(self, "portfolio_id")
2360
+ else None
2361
+ )
2362
+ _portfolio_validation_rule=(
2363
+ self.portfolio_validation_rule
2364
+ if hasattr(self, "portfolio_validation_rule")
2365
+ else None
2366
+ )
2367
+ _sub_processor=(
2368
+ self.sub_processor
2369
+ if hasattr(self, "sub_processor")
2370
+ else None
2371
+ )
2372
+ _surcharge=(
2373
+ self.surcharge
2374
+ if hasattr(self, "surcharge")
2375
+ else None
2376
+ )
2377
+ _processor_data=(
2378
+ self.processor_data
2379
+ if hasattr(self, "processor_data")
2380
+ else None
2381
+ )
2382
+ _vt_clerk_number=(
2383
+ self.vt_clerk_number
2384
+ if hasattr(self, "vt_clerk_number")
2385
+ else None
2386
+ )
2387
+ _vt_billing_phone=(
2388
+ self.vt_billing_phone
2389
+ if hasattr(self, "vt_billing_phone")
2390
+ else None
2391
+ )
2392
+ _vt_enable_tip=(
2393
+ self.vt_enable_tip
2394
+ if hasattr(self, "vt_enable_tip")
2395
+ else None
2396
+ )
2397
+ _ach_allow_debit=(
2398
+ self.ach_allow_debit
2399
+ if hasattr(self, "ach_allow_debit")
2400
+ else None
2401
+ )
2402
+ _ach_allow_credit=(
2403
+ self.ach_allow_credit
2404
+ if hasattr(self, "ach_allow_credit")
2405
+ else None
2406
+ )
2407
+ _ach_allow_refund=(
2408
+ self.ach_allow_refund
2409
+ if hasattr(self, "ach_allow_refund")
2410
+ else None
2411
+ )
2412
+ _vt_cvv=(
2413
+ self.vt_cvv
2414
+ if hasattr(self, "vt_cvv")
2415
+ else None
2416
+ )
2417
+ _vt_street=(
2418
+ self.vt_street
2419
+ if hasattr(self, "vt_street")
2420
+ else None
2421
+ )
2422
+ _vt_zip=(
2423
+ self.vt_zip
2424
+ if hasattr(self, "vt_zip")
2425
+ else None
2426
+ )
2427
+ _vt_order_num=(
2428
+ self.vt_order_num
2429
+ if hasattr(self, "vt_order_num")
2430
+ else None
2431
+ )
2432
+ _vt_enable=(
2433
+ self.vt_enable
2434
+ if hasattr(self, "vt_enable")
2435
+ else None
2436
+ )
2437
+ _receipt_show_contact_name=(
2438
+ self.receipt_show_contact_name
2439
+ if hasattr(self, "receipt_show_contact_name")
2440
+ else None
2441
+ )
2442
+ _display_avs=(
2443
+ self.display_avs
2444
+ if hasattr(self, "display_avs")
2445
+ else None
2446
+ )
2447
+ _card_type_visa=(
2448
+ self.card_type_visa
2449
+ if hasattr(self, "card_type_visa")
2450
+ else None
2451
+ )
2452
+ _card_type_mc=(
2453
+ self.card_type_mc
2454
+ if hasattr(self, "card_type_mc")
2455
+ else None
2456
+ )
2457
+ _card_type_disc=(
2458
+ self.card_type_disc
2459
+ if hasattr(self, "card_type_disc")
2460
+ else None
2461
+ )
2462
+ _card_type_amex=(
2463
+ self.card_type_amex
2464
+ if hasattr(self, "card_type_amex")
2465
+ else None
2466
+ )
2467
+ _card_type_diners=(
2468
+ self.card_type_diners
2469
+ if hasattr(self, "card_type_diners")
2470
+ else None
2471
+ )
2472
+ _card_type_jcb=(
2473
+ self.card_type_jcb
2474
+ if hasattr(self, "card_type_jcb")
2475
+ else None
2476
+ )
2477
+ _card_type_ebt=(
2478
+ self.card_type_ebt
2479
+ if hasattr(self, "card_type_ebt")
2480
+ else None
2481
+ )
2482
+ _allow_ebt_cash_benefit=(
2483
+ self.allow_ebt_cash_benefit
2484
+ if hasattr(self, "allow_ebt_cash_benefit")
2485
+ else None
2486
+ )
2487
+ _allow_ebt_food_stamp=(
2488
+ self.allow_ebt_food_stamp
2489
+ if hasattr(self, "allow_ebt_food_stamp")
2490
+ else None
2491
+ )
2492
+ _invoice_location=(
2493
+ self.invoice_location
2494
+ if hasattr(self, "invoice_location")
2495
+ else None
2496
+ )
2497
+ _allow_partial_authorization=(
2498
+ self.allow_partial_authorization
2499
+ if hasattr(self, "allow_partial_authorization")
2500
+ else None
2501
+ )
2502
+ _allow_recurring_partial_authorization=(
2503
+ self.allow_recurring_partial_authorization
2504
+ if hasattr(self, "allow_recurring_partial_authorization")
2505
+ else None
2506
+ )
2507
+ _auto_decline_cvv=(
2508
+ self.auto_decline_cvv
2509
+ if hasattr(self, "auto_decline_cvv")
2510
+ else None
2511
+ )
2512
+ _auto_decline_street=(
2513
+ self.auto_decline_street
2514
+ if hasattr(self, "auto_decline_street")
2515
+ else None
2516
+ )
2517
+ _auto_decline_zip=(
2518
+ self.auto_decline_zip
2519
+ if hasattr(self, "auto_decline_zip")
2520
+ else None
2521
+ )
2522
+ _split_payments_allow=(
2523
+ self.split_payments_allow
2524
+ if hasattr(self, "split_payments_allow")
2525
+ else None
2526
+ )
2527
+ _vt_show_custom_fields=(
2528
+ self.vt_show_custom_fields
2529
+ if hasattr(self, "vt_show_custom_fields")
2530
+ else None
2531
+ )
2532
+ _receipt_show_custom_fields=(
2533
+ self.receipt_show_custom_fields
2534
+ if hasattr(self, "receipt_show_custom_fields")
2535
+ else None
2536
+ )
2537
+ _vt_override_sales_tax_allowed=(
2538
+ self.vt_override_sales_tax_allowed
2539
+ if hasattr(self, "vt_override_sales_tax_allowed")
2540
+ else None
2541
+ )
2542
+ _vt_enable_sales_tax=(
2543
+ self.vt_enable_sales_tax
2544
+ if hasattr(self, "vt_enable_sales_tax")
2545
+ else None
2546
+ )
2547
+ _vt_require_zip=(
2548
+ self.vt_require_zip
2549
+ if hasattr(self, "vt_require_zip")
2550
+ else None
2551
+ )
2552
+ _vt_require_street=(
2553
+ self.vt_require_street
2554
+ if hasattr(self, "vt_require_street")
2555
+ else None
2556
+ )
2557
+ _auto_decline_cavv=(
2558
+ self.auto_decline_cavv
2559
+ if hasattr(self, "auto_decline_cavv")
2560
+ else None
2561
+ )
2562
+ _merchant_id=(
2563
+ self.merchant_id
2564
+ if hasattr(self, "merchant_id")
2565
+ else None
2566
+ )
2567
+ _receipt_header=(
2568
+ self.receipt_header
2569
+ if hasattr(self, "receipt_header")
2570
+ else None
2571
+ )
2572
+ _receipt_footer=(
2573
+ self.receipt_footer
2574
+ if hasattr(self, "receipt_footer")
2575
+ else None
2576
+ )
2577
+ _receipt_add_account_above_signature=(
2578
+ self.receipt_add_account_above_signature
2579
+ if hasattr(self, "receipt_add_account_above_signature")
2580
+ else None
2581
+ )
2582
+ _receipt_add_recurring_above_signature=(
2583
+ self.receipt_add_recurring_above_signature
2584
+ if hasattr(self, "receipt_add_recurring_above_signature")
2585
+ else None
2586
+ )
2587
+ _receipt_vt_above_signature=(
2588
+ self.receipt_vt_above_signature
2589
+ if hasattr(self, "receipt_vt_above_signature")
2590
+ else None
2591
+ )
2592
+ _default_transaction_type=(
2593
+ self.default_transaction_type
2594
+ if hasattr(self, "default_transaction_type")
2595
+ else None
2596
+ )
2597
+ _username=(
2598
+ self.username
2599
+ if hasattr(self, "username")
2600
+ else None
2601
+ )
2602
+ _password=(
2603
+ self.password
2604
+ if hasattr(self, "password")
2605
+ else None
2606
+ )
2607
+ _current_batch=(
2608
+ self.current_batch
2609
+ if hasattr(self, "current_batch")
2610
+ else None
2611
+ )
2612
+ _dup_check_per_batch=(
2613
+ self.dup_check_per_batch
2614
+ if hasattr(self, "dup_check_per_batch")
2615
+ else None
2616
+ )
2617
+ _agent_code=(
2618
+ self.agent_code
2619
+ if hasattr(self, "agent_code")
2620
+ else None
2621
+ )
2622
+ _paylink_allow=(
2623
+ self.paylink_allow
2624
+ if hasattr(self, "paylink_allow")
2625
+ else None
2626
+ )
2627
+ _quick_invoice_allow=(
2628
+ self.quick_invoice_allow
2629
+ if hasattr(self, "quick_invoice_allow")
2630
+ else None
2631
+ )
2632
+ _level_3_allow=(
2633
+ self.level_3_allow
2634
+ if hasattr(self, "level_3_allow")
2635
+ else None
2636
+ )
2637
+ _payfac_enable=(
2638
+ self.payfac_enable
2639
+ if hasattr(self, "payfac_enable")
2640
+ else None
2641
+ )
2642
+ _enable_3_ds=(
2643
+ self.enable_3_ds
2644
+ if hasattr(self, "enable_3_ds")
2645
+ else None
2646
+ )
2647
+ _sales_office_id=(
2648
+ self.sales_office_id
2649
+ if hasattr(self, "sales_office_id")
2650
+ else None
2651
+ )
2652
+ _hosted_payment_page_max_allowed=(
2653
+ self.hosted_payment_page_max_allowed
2654
+ if hasattr(self, "hosted_payment_page_max_allowed")
2655
+ else None
2656
+ )
2657
+ _hosted_payment_page_allow=(
2658
+ self.hosted_payment_page_allow
2659
+ if hasattr(self, "hosted_payment_page_allow")
2660
+ else None
2661
+ )
2662
+ _surcharge_id=(
2663
+ self.surcharge_id
2664
+ if hasattr(self, "surcharge_id")
2665
+ else None
2666
+ )
2667
+ _allow_big_commerce=(
2668
+ self.allow_big_commerce
2669
+ if hasattr(self, "allow_big_commerce")
2670
+ else None
2671
+ )
2672
+ _allow_shopify=(
2673
+ self.allow_shopify
2674
+ if hasattr(self, "allow_shopify")
2675
+ else None
2676
+ )
2677
+ _level_3_default=(
2678
+ self.level_3_default
2679
+ if hasattr(self, "level_3_default")
2680
+ else None
2681
+ )
2682
+ _cau_subscribe_type_id=(
2683
+ self.cau_subscribe_type_id
2684
+ if hasattr(self, "cau_subscribe_type_id")
2685
+ else None
2686
+ )
2687
+ _cau_account_number=(
2688
+ self.cau_account_number
2689
+ if hasattr(self, "cau_account_number")
2690
+ else None
2691
+ )
2692
+ _location_billing_account_id=(
2693
+ self.location_billing_account_id
2694
+ if hasattr(self, "location_billing_account_id")
2695
+ else None
2696
+ )
2697
+ _product_billing_group_id=(
2698
+ self.product_billing_group_id
2699
+ if hasattr(self, "product_billing_group_id")
2700
+ else None
2701
+ )
2702
+ _account_number=(
2703
+ self.account_number
2704
+ if hasattr(self, "account_number")
2705
+ else None
2706
+ )
2707
+ _run_avs_on_accountvault_create=(
2708
+ self.run_avs_on_accountvault_create
2709
+ if hasattr(self, "run_avs_on_accountvault_create")
2710
+ else None
2711
+ )
2712
+ _accountvault_expire_notification_email_enable=(
2713
+ self.accountvault_expire_notification_email_enable
2714
+ if hasattr(self, "accountvault_expire_notification_email_enable")
2715
+ else None
2716
+ )
2717
+ _debit_allow_void=(
2718
+ self.debit_allow_void
2719
+ if hasattr(self, "debit_allow_void")
2720
+ else None
2721
+ )
2722
+ _quick_invoice_text_to_pay=(
2723
+ self.quick_invoice_text_to_pay
2724
+ if hasattr(self, "quick_invoice_text_to_pay")
2725
+ else None
2726
+ )
2727
+ _authentication_code=(
2728
+ self.authentication_code
2729
+ if hasattr(self, "authentication_code")
2730
+ else None
2731
+ )
2732
+ _sms_enable=(
2733
+ self.sms_enable
2734
+ if hasattr(self, "sms_enable")
2735
+ else None
2736
+ )
2737
+ _vt_show_currency=(
2738
+ self.vt_show_currency
2739
+ if hasattr(self, "vt_show_currency")
2740
+ else None
2741
+ )
2742
+ _receipt_show_currency=(
2743
+ self.receipt_show_currency
2744
+ if hasattr(self, "receipt_show_currency")
2745
+ else None
2746
+ )
2747
+ _allow_blind_refund=(
2748
+ self.allow_blind_refund
2749
+ if hasattr(self, "allow_blind_refund")
2750
+ else None
2751
+ )
2752
+ _vt_show_company_name=(
2753
+ self.vt_show_company_name
2754
+ if hasattr(self, "vt_show_company_name")
2755
+ else None
2756
+ )
2757
+ _receipt_show_company_name=(
2758
+ self.receipt_show_company_name
2759
+ if hasattr(self, "receipt_show_company_name")
2760
+ else None
2761
+ )
2762
+ _bank_funded_only=(
2763
+ self.bank_funded_only
2764
+ if hasattr(self, "bank_funded_only")
2765
+ else None
2766
+ )
2767
+ _require_cvv_on_keyed_cnp=(
2768
+ self.require_cvv_on_keyed_cnp
2769
+ if hasattr(self, "require_cvv_on_keyed_cnp")
2770
+ else None
2771
+ )
2772
+ _require_cvv_on_tokenized_cnp=(
2773
+ self.require_cvv_on_tokenized_cnp
2774
+ if hasattr(self, "require_cvv_on_tokenized_cnp")
2775
+ else None
2776
+ )
2777
+ _show_secondary_amount=(
2778
+ self.show_secondary_amount
2779
+ if hasattr(self, "show_secondary_amount")
2780
+ else None
2781
+ )
2782
+ _allow_secondary_amount=(
2783
+ self.allow_secondary_amount
2784
+ if hasattr(self, "allow_secondary_amount")
2785
+ else None
2786
+ )
2787
+ _show_google_pay=(
2788
+ self.show_google_pay
2789
+ if hasattr(self, "show_google_pay")
2790
+ else None
2791
+ )
2792
+ _show_apple_pay=(
2793
+ self.show_apple_pay
2794
+ if hasattr(self, "show_apple_pay")
2795
+ else None
2796
+ )
2797
+ _batch_risk_config=(
2798
+ self.batch_risk_config
2799
+ if hasattr(self, "batch_risk_config")
2800
+ else None
2801
+ )
2802
+ _currency_code=(
2803
+ self.currency_code
2804
+ if hasattr(self, "currency_code")
2805
+ else None
2806
+ )
2807
+ _enable_ach_validation=(
2808
+ self.enable_ach_validation
2809
+ if hasattr(self, "enable_ach_validation")
2810
+ else None
2811
+ )
2812
+ _enable_ach_retry=(
2813
+ self.enable_ach_retry
2814
+ if hasattr(self, "enable_ach_retry")
2815
+ else None
2816
+ )
2817
+ _allow_softpos=(
2818
+ self.allow_softpos
2819
+ if hasattr(self, "allow_softpos")
2820
+ else None
2821
+ )
2822
+ _allow_multi_currency=(
2823
+ self.allow_multi_currency
2824
+ if hasattr(self, "allow_multi_currency")
2825
+ else None
2826
+ )
2827
+ _allow_unapplied_payments=(
2828
+ self.allow_unapplied_payments
2829
+ if hasattr(self, "allow_unapplied_payments")
2830
+ else None
2831
+ )
2832
+ _id=(
2833
+ self.id
2834
+ if hasattr(self, "id")
2835
+ else None
2836
+ )
2837
+ _receipt_logo=(
2838
+ self.receipt_logo
2839
+ if hasattr(self, "receipt_logo")
2840
+ else None
2841
+ )
2842
+ _active=(
2843
+ self.active
2844
+ if hasattr(self, "active")
2845
+ else None
2846
+ )
2847
+ _tz=(
2848
+ self.tz
2849
+ if hasattr(self, "tz")
2850
+ else None
2851
+ )
2852
+ _current_stan=(
2853
+ self.current_stan
2854
+ if hasattr(self, "current_stan")
2855
+ else None
2856
+ )
2857
+ _created_ts=(
2858
+ self.created_ts
2859
+ if hasattr(self, "created_ts")
2860
+ else None
2861
+ )
2862
+ _modified_ts=(
2863
+ self.modified_ts
2864
+ if hasattr(self, "modified_ts")
2865
+ else None
2866
+ )
2867
+ _created_user_id=(
2868
+ self.created_user_id
2869
+ if hasattr(self, "created_user_id")
2870
+ else None
2871
+ )
2872
+ _modified_user_id=(
2873
+ self.modified_user_id
2874
+ if hasattr(self, "modified_user_id")
2875
+ else None
2876
+ )
2877
+ _product_transaction_api_id=(
2878
+ self.product_transaction_api_id
2879
+ if hasattr(self, "product_transaction_api_id")
2880
+ else None
2881
+ )
2882
+ _transaction_amount_notification_threshold=(
2883
+ self.transaction_amount_notification_threshold
2884
+ if hasattr(self, "transaction_amount_notification_threshold")
2885
+ else None
2886
+ )
2887
+ _is_secondary_amount_allowed=(
2888
+ self.is_secondary_amount_allowed
2889
+ if hasattr(self, "is_secondary_amount_allowed")
2890
+ else None
2891
+ )
2892
+ _fortis_id=(
2893
+ self.fortis_id
2894
+ if hasattr(self, "fortis_id")
2895
+ else None
2896
+ )
2897
+ _product_billing_group_code=(
2898
+ self.product_billing_group_code
2899
+ if hasattr(self, "product_billing_group_code")
2900
+ else None
2901
+ )
2902
+ _cau_subscribe_type_code=(
2903
+ self.cau_subscribe_type_code
2904
+ if hasattr(self, "cau_subscribe_type_code")
2905
+ else None
2906
+ )
2907
+ _merchant_code=(
2908
+ self.merchant_code
2909
+ if hasattr(self, "merchant_code")
2910
+ else None
2911
+ )
2912
+ _currency=(
2913
+ self.currency
2914
+ if hasattr(self, "currency")
2915
+ else None
2916
+ )
2917
+ _additional_properties=self.additional_properties
2918
+ return (
2919
+ f"{self.__class__.__name__}("
2920
+ f"processor_version={_processor_version!s}, "
2921
+ f"industry_type={_industry_type!s}, "
2922
+ f"title={_title!s}, "
2923
+ f"payment_method={_payment_method!s}, "
2924
+ f"processor={_processor!s}, "
2925
+ f"mcc={_mcc!s}, "
2926
+ f"tax_surcharge_config={_tax_surcharge_config!s}, "
2927
+ f"terminal_id={_terminal_id!s}, "
2928
+ f"partner={_partner!s}, "
2929
+ f"product_ach_pv_store_id={_product_ach_pv_store_id!s}, "
2930
+ f"invoice_adjustment_title={_invoice_adjustment_title!s}, "
2931
+ f"location_id={_location_id!s}, "
2932
+ f"location_api_id={_location_api_id!s}, "
2933
+ f"billing_location_api_id={_billing_location_api_id!s}, "
2934
+ f"portfolio_id={_portfolio_id!s}, "
2935
+ f"portfolio_validation_rule={_portfolio_validation_rule!s}, "
2936
+ f"sub_processor={_sub_processor!s}, "
2937
+ f"surcharge={_surcharge!s}, "
2938
+ f"processor_data={_processor_data!s}, "
2939
+ f"vt_clerk_number={_vt_clerk_number!s}, "
2940
+ f"vt_billing_phone={_vt_billing_phone!s}, "
2941
+ f"vt_enable_tip={_vt_enable_tip!s}, "
2942
+ f"ach_allow_debit={_ach_allow_debit!s}, "
2943
+ f"ach_allow_credit={_ach_allow_credit!s}, "
2944
+ f"ach_allow_refund={_ach_allow_refund!s}, "
2945
+ f"vt_cvv={_vt_cvv!s}, "
2946
+ f"vt_street={_vt_street!s}, "
2947
+ f"vt_zip={_vt_zip!s}, "
2948
+ f"vt_order_num={_vt_order_num!s}, "
2949
+ f"vt_enable={_vt_enable!s}, "
2950
+ f"receipt_show_contact_name={_receipt_show_contact_name!s}, "
2951
+ f"display_avs={_display_avs!s}, "
2952
+ f"card_type_visa={_card_type_visa!s}, "
2953
+ f"card_type_mc={_card_type_mc!s}, "
2954
+ f"card_type_disc={_card_type_disc!s}, "
2955
+ f"card_type_amex={_card_type_amex!s}, "
2956
+ f"card_type_diners={_card_type_diners!s}, "
2957
+ f"card_type_jcb={_card_type_jcb!s}, "
2958
+ f"card_type_ebt={_card_type_ebt!s}, "
2959
+ f"allow_ebt_cash_benefit={_allow_ebt_cash_benefit!s}, "
2960
+ f"allow_ebt_food_stamp={_allow_ebt_food_stamp!s}, "
2961
+ f"invoice_location={_invoice_location!s}, "
2962
+ f"allow_partial_authorization={_allow_partial_authorization!s}, "
2963
+ f"allow_recurring_partial_authorization={_allow_recurring_partial_authorization!s}, "
2964
+ f"auto_decline_cvv={_auto_decline_cvv!s}, "
2965
+ f"auto_decline_street={_auto_decline_street!s}, "
2966
+ f"auto_decline_zip={_auto_decline_zip!s}, "
2967
+ f"split_payments_allow={_split_payments_allow!s}, "
2968
+ f"vt_show_custom_fields={_vt_show_custom_fields!s}, "
2969
+ f"receipt_show_custom_fields={_receipt_show_custom_fields!s}, "
2970
+ f"vt_override_sales_tax_allowed={_vt_override_sales_tax_allowed!s}, "
2971
+ f"vt_enable_sales_tax={_vt_enable_sales_tax!s}, "
2972
+ f"vt_require_zip={_vt_require_zip!s}, "
2973
+ f"vt_require_street={_vt_require_street!s}, "
2974
+ f"auto_decline_cavv={_auto_decline_cavv!s}, "
2975
+ f"merchant_id={_merchant_id!s}, "
2976
+ f"receipt_header={_receipt_header!s}, "
2977
+ f"receipt_footer={_receipt_footer!s}, "
2978
+ f"receipt_add_account_above_signature={_receipt_add_account_above_signature!s}, "
2979
+ f"receipt_add_recurring_above_signature={_receipt_add_recurring_above_signature!s}, "
2980
+ f"receipt_vt_above_signature={_receipt_vt_above_signature!s}, "
2981
+ f"default_transaction_type={_default_transaction_type!s}, "
2982
+ f"username={_username!s}, "
2983
+ f"password={_password!s}, "
2984
+ f"current_batch={_current_batch!s}, "
2985
+ f"dup_check_per_batch={_dup_check_per_batch!s}, "
2986
+ f"agent_code={_agent_code!s}, "
2987
+ f"paylink_allow={_paylink_allow!s}, "
2988
+ f"quick_invoice_allow={_quick_invoice_allow!s}, "
2989
+ f"level_3_allow={_level_3_allow!s}, "
2990
+ f"payfac_enable={_payfac_enable!s}, "
2991
+ f"enable_3_ds={_enable_3_ds!s}, "
2992
+ f"sales_office_id={_sales_office_id!s}, "
2993
+ f"hosted_payment_page_max_allowed={_hosted_payment_page_max_allowed!s}, "
2994
+ f"hosted_payment_page_allow={_hosted_payment_page_allow!s}, "
2995
+ f"surcharge_id={_surcharge_id!s}, "
2996
+ f"allow_big_commerce={_allow_big_commerce!s}, "
2997
+ f"allow_shopify={_allow_shopify!s}, "
2998
+ f"level_3_default={_level_3_default!s}, "
2999
+ f"cau_subscribe_type_id={_cau_subscribe_type_id!s}, "
3000
+ f"cau_account_number={_cau_account_number!s}, "
3001
+ f"location_billing_account_id={_location_billing_account_id!s}, "
3002
+ f"product_billing_group_id={_product_billing_group_id!s}, "
3003
+ f"account_number={_account_number!s}, "
3004
+ f"run_avs_on_accountvault_create={_run_avs_on_accountvault_create!s}, "
3005
+ f"accountvault_expire_notification_email_enable={_accountvault_expire_notification_email_enable!s}, "
3006
+ f"debit_allow_void={_debit_allow_void!s}, "
3007
+ f"quick_invoice_text_to_pay={_quick_invoice_text_to_pay!s}, "
3008
+ f"authentication_code={_authentication_code!s}, "
3009
+ f"sms_enable={_sms_enable!s}, "
3010
+ f"vt_show_currency={_vt_show_currency!s}, "
3011
+ f"receipt_show_currency={_receipt_show_currency!s}, "
3012
+ f"allow_blind_refund={_allow_blind_refund!s}, "
3013
+ f"vt_show_company_name={_vt_show_company_name!s}, "
3014
+ f"receipt_show_company_name={_receipt_show_company_name!s}, "
3015
+ f"bank_funded_only={_bank_funded_only!s}, "
3016
+ f"require_cvv_on_keyed_cnp={_require_cvv_on_keyed_cnp!s}, "
3017
+ f"require_cvv_on_tokenized_cnp={_require_cvv_on_tokenized_cnp!s}, "
3018
+ f"show_secondary_amount={_show_secondary_amount!s}, "
3019
+ f"allow_secondary_amount={_allow_secondary_amount!s}, "
3020
+ f"show_google_pay={_show_google_pay!s}, "
3021
+ f"show_apple_pay={_show_apple_pay!s}, "
3022
+ f"batch_risk_config={_batch_risk_config!s}, "
3023
+ f"currency_code={_currency_code!s}, "
3024
+ f"enable_ach_validation={_enable_ach_validation!s}, "
3025
+ f"enable_ach_retry={_enable_ach_retry!s}, "
3026
+ f"allow_softpos={_allow_softpos!s}, "
3027
+ f"allow_multi_currency={_allow_multi_currency!s}, "
3028
+ f"allow_unapplied_payments={_allow_unapplied_payments!s}, "
3029
+ f"id={_id!s}, "
3030
+ f"receipt_logo={_receipt_logo!s}, "
3031
+ f"active={_active!s}, "
3032
+ f"tz={_tz!s}, "
3033
+ f"current_stan={_current_stan!s}, "
3034
+ f"created_ts={_created_ts!s}, "
3035
+ f"modified_ts={_modified_ts!s}, "
3036
+ f"created_user_id={_created_user_id!s}, "
3037
+ f"modified_user_id={_modified_user_id!s}, "
3038
+ f"product_transaction_api_id={_product_transaction_api_id!s}, "
3039
+ f"transaction_amount_notification_threshold={_transaction_amount_notification_threshold!s}, "
3040
+ f"is_secondary_amount_allowed={_is_secondary_amount_allowed!s}, "
3041
+ f"fortis_id={_fortis_id!s}, "
3042
+ f"product_billing_group_code={_product_billing_group_code!s}, "
3043
+ f"cau_subscribe_type_code={_cau_subscribe_type_code!s}, "
3044
+ f"merchant_code={_merchant_code!s}, "
3045
+ f"currency={_currency!s}, "
3046
+ f"additional_properties={_additional_properties!s}, "
3047
+ f")"
3048
+ )