cybersource_rest_client 0.0.79 → 0.0.80

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 (214) hide show
  1. checksums.yaml +4 -4
  2. data/lib/AuthenticationSDK/core/MerchantConfig.rb +1 -0
  3. data/lib/AuthenticationSDK/util/Cache.rb +14 -0
  4. data/lib/AuthenticationSDK/util/Constants.rb +2 -0
  5. data/lib/AuthenticationSDK/util/JWT/JWTExceptions.rb +81 -0
  6. data/lib/AuthenticationSDK/util/JWT/JWTUtility.rb +154 -0
  7. data/lib/cybersource_rest_client/api/bank_account_validation_api.rb +8 -4
  8. data/lib/cybersource_rest_client/api/batches_api.rb +29 -13
  9. data/lib/cybersource_rest_client/api/billing_agreements_api.rb +15 -3
  10. data/lib/cybersource_rest_client/api/bin_lookup_api.rb +5 -1
  11. data/lib/cybersource_rest_client/api/capture_api.rb +5 -1
  12. data/lib/cybersource_rest_client/api/chargeback_details_api.rb +5 -1
  13. data/lib/cybersource_rest_client/api/chargeback_summaries_api.rb +5 -1
  14. data/lib/cybersource_rest_client/api/conversion_details_api.rb +5 -1
  15. data/lib/cybersource_rest_client/api/create_new_webhooks_api.rb +18 -6
  16. data/lib/cybersource_rest_client/api/credit_api.rb +5 -1
  17. data/lib/cybersource_rest_client/api/customer_api.rb +22 -6
  18. data/lib/cybersource_rest_client/api/customer_payment_instrument_api.rb +27 -7
  19. data/lib/cybersource_rest_client/api/customer_shipping_address_api.rb +27 -7
  20. data/lib/cybersource_rest_client/api/decision_manager_api.rb +28 -8
  21. data/lib/cybersource_rest_client/api/device_de_association_api.rb +13 -5
  22. data/lib/cybersource_rest_client/api/device_search_api.rb +16 -8
  23. data/lib/cybersource_rest_client/api/download_dtd_api.rb +5 -1
  24. data/lib/cybersource_rest_client/api/download_xsd_api.rb +5 -1
  25. data/lib/cybersource_rest_client/api/emv_tag_details_api.rb +10 -2
  26. data/lib/cybersource_rest_client/api/flex_api_api.rb +5 -1
  27. data/lib/cybersource_rest_client/api/instrument_identifier_api.rb +33 -9
  28. data/lib/cybersource_rest_client/api/interchange_clearing_level_details_api.rb +5 -1
  29. data/lib/cybersource_rest_client/api/invoice_settings_api.rb +10 -2
  30. data/lib/cybersource_rest_client/api/invoices_api.rb +35 -7
  31. data/lib/cybersource_rest_client/api/manage_webhooks_api.rb +41 -13
  32. data/lib/cybersource_rest_client/api/merchant_boarding_api.rb +13 -5
  33. data/lib/cybersource_rest_client/api/merchant_defined_fields_api.rb +29 -13
  34. data/lib/cybersource_rest_client/api/microform_integration_api.rb +5 -1
  35. data/lib/cybersource_rest_client/api/net_fundings_api.rb +5 -1
  36. data/lib/cybersource_rest_client/api/notification_of_changes_api.rb +5 -1
  37. data/lib/cybersource_rest_client/api/offers_api.rb +13 -5
  38. data/lib/cybersource_rest_client/api/orders_api.rb +10 -2
  39. data/lib/cybersource_rest_client/api/payer_authentication_api.rb +15 -3
  40. data/lib/cybersource_rest_client/api/payment_batch_summaries_api.rb +5 -1
  41. data/lib/cybersource_rest_client/api/payment_instrument_api.rb +22 -6
  42. data/lib/cybersource_rest_client/api/payment_links_api.rb +20 -4
  43. data/lib/cybersource_rest_client/api/payment_tokens_api.rb +5 -1
  44. data/lib/cybersource_rest_client/api/payments_api.rb +30 -6
  45. data/lib/cybersource_rest_client/api/payouts_api.rb +5 -1
  46. data/lib/cybersource_rest_client/api/plans_api.rb +40 -8
  47. data/lib/cybersource_rest_client/api/purchase_and_refund_details_api.rb +5 -1
  48. data/lib/cybersource_rest_client/api/push_funds_api.rb +5 -1
  49. data/lib/cybersource_rest_client/api/refund_api.rb +10 -2
  50. data/lib/cybersource_rest_client/api/report_definitions_api.rb +10 -2
  51. data/lib/cybersource_rest_client/api/report_downloads_api.rb +5 -1
  52. data/lib/cybersource_rest_client/api/report_subscriptions_api.rb +25 -5
  53. data/lib/cybersource_rest_client/api/reports_api.rb +15 -3
  54. data/lib/cybersource_rest_client/api/retrieval_details_api.rb +5 -1
  55. data/lib/cybersource_rest_client/api/retrieval_summaries_api.rb +5 -1
  56. data/lib/cybersource_rest_client/api/reversal_api.rb +10 -2
  57. data/lib/cybersource_rest_client/api/search_transactions_api.rb +10 -2
  58. data/lib/cybersource_rest_client/api/secure_file_share_api.rb +10 -2
  59. data/lib/cybersource_rest_client/api/subscriptions_api.rb +49 -17
  60. data/lib/cybersource_rest_client/api/subscriptions_follow_ons_api.rb +10 -2
  61. data/lib/cybersource_rest_client/api/taxes_api.rb +10 -2
  62. data/lib/cybersource_rest_client/api/token_api.rb +14 -6
  63. data/lib/cybersource_rest_client/api/tokenize_api.rb +103 -0
  64. data/lib/cybersource_rest_client/api/tokenized_card_api.rb +105 -4
  65. data/lib/cybersource_rest_client/api/transaction_batches_api.rb +20 -4
  66. data/lib/cybersource_rest_client/api/transaction_details_api.rb +5 -1
  67. data/lib/cybersource_rest_client/api/transient_token_data_api.rb +10 -2
  68. data/lib/cybersource_rest_client/api/unified_checkout_capture_context_api.rb +5 -1
  69. data/lib/cybersource_rest_client/api/user_management_api.rb +5 -1
  70. data/lib/cybersource_rest_client/api/user_management_search_api.rb +5 -1
  71. data/lib/cybersource_rest_client/api/verification_api.rb +10 -2
  72. data/lib/cybersource_rest_client/api/void_api.rb +25 -5
  73. data/lib/cybersource_rest_client/models/create_plan_request.rb +1 -11
  74. data/lib/cybersource_rest_client/models/create_subscription_request.rb +1 -1
  75. data/lib/cybersource_rest_client/models/create_subscription_request_1.rb +1 -1
  76. data/lib/cybersource_rest_client/models/create_subscription_response.rb +15 -5
  77. data/lib/cybersource_rest_client/models/generate_unified_checkout_capture_context_request.rb +13 -2
  78. data/lib/cybersource_rest_client/models/get_all_subscriptions_response_client_reference_information.rb +196 -0
  79. data/lib/cybersource_rest_client/models/get_all_subscriptions_response_subscriptions.rb +11 -1
  80. data/lib/cybersource_rest_client/models/get_subscription_response.rb +11 -1
  81. data/lib/cybersource_rest_client/models/get_subscription_response_1_payment_instrument.rb +1 -1
  82. data/lib/cybersource_rest_client/models/get_subscription_response_1_payment_instrument_buyer_information.rb +1 -1
  83. data/lib/cybersource_rest_client/models/get_subscription_response_1_shipping_address.rb +1 -1
  84. data/lib/cybersource_rest_client/models/get_subscription_response_reactivation_information.rb +22 -22
  85. data/lib/cybersource_rest_client/models/inline_response_200.rb +9 -44
  86. data/lib/cybersource_rest_client/models/inline_response_200_1.rb +29 -31
  87. data/lib/cybersource_rest_client/models/inline_response_200_10.rb +33 -37
  88. data/lib/cybersource_rest_client/models/{inline_response_200_9_devices.rb → inline_response_200_10_devices.rb} +2 -2
  89. data/lib/cybersource_rest_client/models/{inline_response_200_9_payment_processor_to_terminal_map.rb → inline_response_200_10_payment_processor_to_terminal_map.rb} +1 -1
  90. data/lib/cybersource_rest_client/models/inline_response_200_11.rb +47 -86
  91. data/lib/cybersource_rest_client/models/{inline_response_200_10__embedded.rb → inline_response_200_11__embedded.rb} +2 -2
  92. data/lib/cybersource_rest_client/models/{inline_response_200_10__embedded__links.rb → inline_response_200_11__embedded__links.rb} +2 -2
  93. data/lib/cybersource_rest_client/models/{inline_response_200_10__embedded__links_reports.rb → inline_response_200_11__embedded__links_reports.rb} +1 -1
  94. data/lib/cybersource_rest_client/models/{inline_response_200_10__embedded_batches.rb → inline_response_200_11__embedded_batches.rb} +3 -3
  95. data/lib/cybersource_rest_client/models/{inline_response_200_10__embedded_totals.rb → inline_response_200_11__embedded_totals.rb} +1 -1
  96. data/lib/cybersource_rest_client/models/inline_response_200_11__links.rb +16 -17
  97. data/lib/cybersource_rest_client/models/inline_response_200_12.rb +47 -49
  98. data/lib/cybersource_rest_client/models/inline_response_200_12__links.rb +201 -0
  99. data/lib/cybersource_rest_client/models/{inline_response_200_11__links_report.rb → inline_response_200_12__links_report.rb} +1 -1
  100. data/lib/cybersource_rest_client/models/{inline_response_200_11_billing.rb → inline_response_200_12_billing.rb} +1 -1
  101. data/lib/cybersource_rest_client/models/inline_response_200_13.rb +102 -31
  102. data/lib/cybersource_rest_client/models/{inline_response_200_12_records.rb → inline_response_200_13_records.rb} +3 -3
  103. data/lib/cybersource_rest_client/models/{inline_response_200_12_response_record.rb → inline_response_200_13_response_record.rb} +2 -2
  104. data/lib/cybersource_rest_client/models/{inline_response_200_12_response_record_additional_updates.rb → inline_response_200_13_response_record_additional_updates.rb} +1 -1
  105. data/lib/cybersource_rest_client/models/{inline_response_200_12_source_record.rb → inline_response_200_13_source_record.rb} +1 -1
  106. data/lib/cybersource_rest_client/models/inline_response_200_14.rb +18 -84
  107. data/lib/cybersource_rest_client/models/inline_response_200_15.rb +287 -0
  108. data/lib/cybersource_rest_client/models/{inline_response_200_14_client_reference_information.rb → inline_response_200_15_client_reference_information.rb} +1 -1
  109. data/lib/cybersource_rest_client/models/{inline_response_200_content.rb → inline_response_200_1_content.rb} +1 -1
  110. data/lib/cybersource_rest_client/models/inline_response_200_2.rb +32 -103
  111. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded.rb → inline_response_200_2__embedded.rb} +3 -3
  112. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded_capture.rb → inline_response_200_2__embedded_capture.rb} +2 -2
  113. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded_capture__links.rb → inline_response_200_2__embedded_capture__links.rb} +2 -2
  114. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded_capture__links_self.rb → inline_response_200_2__embedded_capture__links_self.rb} +1 -1
  115. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded_reversal.rb → inline_response_200_2__embedded_reversal.rb} +2 -2
  116. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded_reversal__links.rb → inline_response_200_2__embedded_reversal__links.rb} +2 -2
  117. data/lib/cybersource_rest_client/models/{inline_response_200_1__embedded_reversal__links_self.rb → inline_response_200_2__embedded_reversal__links_self.rb} +1 -1
  118. data/lib/cybersource_rest_client/models/inline_response_200_3.rb +100 -54
  119. data/lib/cybersource_rest_client/models/inline_response_200_4.rb +65 -25
  120. data/lib/cybersource_rest_client/models/{inline_response_200_3_integration_information.rb → inline_response_200_4_integration_information.rb} +2 -2
  121. data/lib/cybersource_rest_client/models/{inline_response_200_3_integration_information_tenant_configurations.rb → inline_response_200_4_integration_information_tenant_configurations.rb} +1 -1
  122. data/lib/cybersource_rest_client/models/inline_response_200_5.rb +25 -126
  123. data/lib/cybersource_rest_client/models/inline_response_200_6.rb +1 -12
  124. data/lib/cybersource_rest_client/models/inline_response_200_7.rb +129 -51
  125. data/lib/cybersource_rest_client/models/inline_response_200_8.rb +55 -10
  126. data/lib/cybersource_rest_client/models/{inline_response_200_7_devices.rb → inline_response_200_8_devices.rb} +1 -1
  127. data/lib/cybersource_rest_client/models/inline_response_200_9.rb +10 -55
  128. data/lib/cybersource_rest_client/models/{inline_response_200_10__links.rb → inline_response_200_details.rb} +18 -17
  129. data/lib/cybersource_rest_client/models/inline_response_200_errors.rb +213 -0
  130. data/lib/cybersource_rest_client/models/inline_response_200_responses.rb +224 -0
  131. data/lib/cybersource_rest_client/models/inline_response_201_3_setups_payments.rb +15 -5
  132. data/lib/cybersource_rest_client/models/patch_customer_payment_instrument_request.rb +9 -9
  133. data/lib/cybersource_rest_client/models/patch_customer_request.rb +9 -9
  134. data/lib/cybersource_rest_client/models/patch_customer_shipping_address_request.rb +3 -3
  135. data/lib/cybersource_rest_client/models/patch_payment_instrument_request.rb +9 -9
  136. data/lib/cybersource_rest_client/models/payment_instrument_list_1__embedded_payment_instruments.rb +8 -8
  137. data/lib/cybersource_rest_client/models/payment_instrument_list__embedded.rb +1 -1
  138. data/lib/cybersource_rest_client/models/payments_products.rb +15 -5
  139. data/lib/cybersource_rest_client/models/post_customer_payment_instrument_request.rb +9 -9
  140. data/lib/cybersource_rest_client/models/post_customer_request.rb +9 -9
  141. data/lib/cybersource_rest_client/models/post_customer_shipping_address_request.rb +3 -3
  142. data/lib/cybersource_rest_client/models/post_issuer_life_cycle_simulation_request.rb +211 -0
  143. data/lib/cybersource_rest_client/models/post_payment_instrument_request.rb +9 -9
  144. data/lib/cybersource_rest_client/models/post_tokenize_request.rb +199 -0
  145. data/lib/cybersource_rest_client/models/ptsv2payments_aggregator_information.rb +22 -5
  146. data/lib/cybersource_rest_client/models/shipping_address_list_for_customer__embedded.rb +1 -1
  147. data/lib/cybersource_rest_client/models/tms_issuerlifecycleeventsimulations_metadata_card_art_combined_asset.rb +190 -0
  148. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_merchant_information.rb → tms_merchant_information.rb} +2 -2
  149. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_merchant_information_merchant_descriptor.rb → tms_merchant_information_merchant_descriptor.rb} +1 -1
  150. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_buyer_information_issued_by.rb → tmsv2tokenize_default_payment_instrument_buyer_info_issued_by.rb} +1 -1
  151. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_buyer_information_personal_identification.rb → tmsv2tokenize_default_payment_instrument_buyer_info_personal_identification.rb} +2 -2
  152. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_card_tokenized_information.rb → tmsv2tokenize_default_payment_instrument_card_tokenized_info.rb} +1 -1
  153. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_instrument_identifier.rb → tmsv2tokenize_default_payment_instrument_instrument_identifier.rb} +1 -1
  154. data/lib/cybersource_rest_client/models/tmsv2tokenize_processing_information.rb +205 -0
  155. data/lib/cybersource_rest_client/models/tmsv2tokenize_token_information.rb +247 -0
  156. data/lib/cybersource_rest_client/models/tmsv2tokenize_token_information_customer.rb +289 -0
  157. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded.rb → tmsv2tokenize_token_information_customer__embedded.rb} +3 -3
  158. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument.rb} +10 -10
  159. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument__embedded.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument__embedded.rb} +1 -1
  160. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument__links.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument__links.rb} +3 -3
  161. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument__links_self.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument__links_self.rb} +1 -1
  162. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_bank_account.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument_bank_account.rb} +1 -1
  163. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_bill_to.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument_bill_to.rb} +1 -1
  164. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_buyer_information.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument_buyer_information.rb} +2 -2
  165. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_card.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument_card.rb} +2 -2
  166. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_payment_instrument_metadata.rb → tmsv2tokenize_token_information_customer__embedded_default_payment_instrument_metadata.rb} +1 -1
  167. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_shipping_address.rb → tmsv2tokenize_token_information_customer__embedded_default_shipping_address.rb} +4 -4
  168. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_shipping_address__links.rb → tmsv2tokenize_token_information_customer__embedded_default_shipping_address__links.rb} +3 -3
  169. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_shipping_address__links_customer.rb → tmsv2tokenize_token_information_customer__embedded_default_shipping_address__links_customer.rb} +1 -1
  170. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_shipping_address__links_self.rb → tmsv2tokenize_token_information_customer__embedded_default_shipping_address__links_self.rb} +1 -1
  171. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_shipping_address_metadata.rb → tmsv2tokenize_token_information_customer__embedded_default_shipping_address_metadata.rb} +1 -1
  172. data/lib/cybersource_rest_client/models/{tmsv2customers__embedded_default_shipping_address_ship_to.rb → tmsv2tokenize_token_information_customer__embedded_default_shipping_address_ship_to.rb} +1 -1
  173. data/lib/cybersource_rest_client/models/{tmsv2customers__links.rb → tmsv2tokenize_token_information_customer__links.rb} +4 -4
  174. data/lib/cybersource_rest_client/models/{tmsv2customers__links_payment_instruments.rb → tmsv2tokenize_token_information_customer__links_payment_instruments.rb} +1 -1
  175. data/lib/cybersource_rest_client/models/{tmsv2customers__links_self.rb → tmsv2tokenize_token_information_customer__links_self.rb} +1 -1
  176. data/lib/cybersource_rest_client/models/{tmsv2customers__links_shipping_address.rb → tmsv2tokenize_token_information_customer__links_shipping_address.rb} +1 -1
  177. data/lib/cybersource_rest_client/models/{tmsv2customers_buyer_information.rb → tmsv2tokenize_token_information_customer_buyer_information.rb} +1 -1
  178. data/lib/cybersource_rest_client/models/{tmsv2customers_client_reference_information.rb → tmsv2tokenize_token_information_customer_client_reference_information.rb} +1 -1
  179. data/lib/cybersource_rest_client/models/{tmsv2customers_default_payment_instrument.rb → tmsv2tokenize_token_information_customer_default_payment_instrument.rb} +1 -1
  180. data/lib/cybersource_rest_client/models/{tmsv2customers_default_shipping_address.rb → tmsv2tokenize_token_information_customer_default_shipping_address.rb} +1 -1
  181. data/lib/cybersource_rest_client/models/{tmsv2customers_merchant_defined_information.rb → tmsv2tokenize_token_information_customer_merchant_defined_information.rb} +1 -1
  182. data/lib/cybersource_rest_client/models/{tmsv2customers_metadata.rb → tmsv2tokenize_token_information_customer_metadata.rb} +1 -1
  183. data/lib/cybersource_rest_client/models/{tmsv2customers_object_information.rb → tmsv2tokenize_token_information_customer_object_information.rb} +1 -1
  184. data/lib/cybersource_rest_client/models/{rbsv1subscriptions_client_reference_information_partner.rb → tmsv2tokenizedcardstokenized_card_idissuerlifecycleeventsimulations_card.rb} +41 -24
  185. data/lib/cybersource_rest_client/models/tmsv2tokenizedcardstokenized_card_idissuerlifecycleeventsimulations_metadata.rb +189 -0
  186. data/lib/cybersource_rest_client/models/tmsv2tokenizedcardstokenized_card_idissuerlifecycleeventsimulations_metadata_card_art.rb +189 -0
  187. data/lib/cybersource_rest_client/models/update_subscription.rb +1 -1
  188. data/lib/cybersource_rest_client/models/upv1capturecontexts_data.rb +25 -5
  189. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_buyer_information.rb +41 -5
  190. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_buyer_information_personal_identification.rb +1 -0
  191. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_client_reference_information_partner.rb +3 -3
  192. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_consumer_authentication_information.rb +24 -5
  193. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_device_information.rb +196 -0
  194. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_merchant_information_merchant_descriptor.rb +124 -5
  195. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information.rb +15 -5
  196. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information_amount_details.rb +15 -5
  197. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information_amount_details_tax_details.rb +213 -0
  198. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information_invoice_details.rb +213 -0
  199. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information_line_items.rb +30 -0
  200. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information_line_items_passenger.rb +8 -0
  201. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_order_information_line_items_tax_details.rb +7 -0
  202. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_payment_information.rb +189 -0
  203. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_payment_information_card.rb +196 -0
  204. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_processing_information.rb +1 -0
  205. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_processing_information_authorization_options.rb +74 -5
  206. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_processing_information_authorization_options_initiator.rb +1 -0
  207. data/lib/cybersource_rest_client/models/upv1capturecontexts_data_recipient_information.rb +39 -5
  208. data/lib/cybersource_rest_client/models/upv1capturecontexts_order_information.rb +1 -0
  209. data/lib/cybersource_rest_client/utilities/capture_context/capture_context_parsing_utility.rb +113 -0
  210. data/lib/cybersource_rest_client/utilities/capture_context/public_key_fetcher.rb +131 -0
  211. data/lib/cybersource_rest_client.rb +80 -62
  212. metadata +85 -64
  213. data/lib/cybersource_rest_client/models/rbsv1plans_client_reference_information.rb +0 -239
  214. data/lib/cybersource_rest_client/models/rbsv1subscriptions_client_reference_information.rb +0 -256
@@ -72,7 +72,11 @@ module CyberSource
72
72
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreatePaymentLinkRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
73
73
  inbound_mle_status = "false"
74
74
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_payment_link","create_payment_link_with_http_info"])
75
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
75
+ begin
76
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
77
+ rescue
78
+ raise
79
+ end
76
80
  end
77
81
  auth_names = []
78
82
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -158,7 +162,11 @@ module CyberSource
158
162
  end
159
163
  inbound_mle_status = "false"
160
164
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_all_payment_links","get_all_payment_links_with_http_info"])
161
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
165
+ begin
166
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
167
+ rescue
168
+ raise
169
+ end
162
170
  end
163
171
  auth_names = []
164
172
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -233,7 +241,11 @@ module CyberSource
233
241
  end
234
242
  inbound_mle_status = "false"
235
243
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_payment_link","get_payment_link_with_http_info"])
236
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
244
+ begin
245
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
246
+ rescue
247
+ raise
248
+ end
237
249
  end
238
250
  auth_names = []
239
251
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -312,7 +324,11 @@ module CyberSource
312
324
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'UpdatePaymentLinkRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
313
325
  inbound_mle_status = "false"
314
326
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["update_payment_link","update_payment_link_with_http_info"])
315
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
327
+ begin
328
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
329
+ rescue
330
+ raise
331
+ end
316
332
  end
317
333
  auth_names = []
318
334
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -72,7 +72,11 @@ module CyberSource
72
72
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'Request', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
73
73
  inbound_mle_status = "false"
74
74
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["retrieve_or_delete_payment_token","retrieve_or_delete_payment_token_with_http_info"])
75
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
75
+ begin
76
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
77
+ rescue
78
+ raise
79
+ end
76
80
  end
77
81
  auth_names = []
78
82
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -78,7 +78,11 @@ module CyberSource
78
78
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'OrderPaymentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
79
79
  inbound_mle_status = "optional"
80
80
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_order_request","create_order_request_with_http_info"])
81
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
81
+ begin
82
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
83
+ rescue
84
+ raise
85
+ end
82
86
  end
83
87
  auth_names = []
84
88
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -151,7 +155,11 @@ module CyberSource
151
155
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreatePaymentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
152
156
  inbound_mle_status = "optional"
153
157
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_payment","create_payment_with_http_info"])
154
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
158
+ begin
159
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
160
+ rescue
161
+ raise
162
+ end
155
163
  end
156
164
  auth_names = []
157
165
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -224,7 +232,11 @@ module CyberSource
224
232
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreateSessionReq', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
225
233
  inbound_mle_status = "optional"
226
234
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_session_request","create_session_request_with_http_info"])
227
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
235
+ begin
236
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
237
+ rescue
238
+ raise
239
+ end
228
240
  end
229
241
  auth_names = []
230
242
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -303,7 +315,11 @@ module CyberSource
303
315
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'IncrementAuthRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
304
316
  inbound_mle_status = "optional"
305
317
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["increment_auth","increment_auth_with_http_info"])
306
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
318
+ begin
319
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
320
+ rescue
321
+ raise
322
+ end
307
323
  end
308
324
  auth_names = []
309
325
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -382,7 +398,11 @@ module CyberSource
382
398
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'RefreshPaymentStatusRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
383
399
  inbound_mle_status = "optional"
384
400
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["refresh_payment_status","refresh_payment_status_with_http_info"])
385
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
401
+ begin
402
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
403
+ rescue
404
+ raise
405
+ end
386
406
  end
387
407
  auth_names = []
388
408
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -461,7 +481,11 @@ module CyberSource
461
481
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreateSessionRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
462
482
  inbound_mle_status = "optional"
463
483
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["update_session_req","update_session_req_with_http_info"])
464
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
484
+ begin
485
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
486
+ rescue
487
+ raise
488
+ end
465
489
  end
466
490
  auth_names = []
467
491
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -72,7 +72,11 @@ module CyberSource
72
72
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'OctCreatePaymentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
73
73
  inbound_mle_status = "optional"
74
74
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["oct_create_payment","oct_create_payment_with_http_info"])
75
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
75
+ begin
76
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
77
+ rescue
78
+ raise
79
+ end
76
80
  end
77
81
  auth_names = []
78
82
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -74,7 +74,11 @@ module CyberSource
74
74
  end
75
75
  inbound_mle_status = "false"
76
76
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["activate_plan","activate_plan_with_http_info"])
77
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
77
+ begin
78
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
79
+ rescue
80
+ raise
81
+ end
78
82
  end
79
83
  auth_names = []
80
84
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -147,7 +151,11 @@ module CyberSource
147
151
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreatePlanRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
148
152
  inbound_mle_status = "false"
149
153
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_plan","create_plan_with_http_info"])
150
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
154
+ begin
155
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
156
+ rescue
157
+ raise
158
+ end
151
159
  end
152
160
  auth_names = []
153
161
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -222,7 +230,11 @@ module CyberSource
222
230
  end
223
231
  inbound_mle_status = "false"
224
232
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["deactivate_plan","deactivate_plan_with_http_info"])
225
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
233
+ begin
234
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
235
+ rescue
236
+ raise
237
+ end
226
238
  end
227
239
  auth_names = []
228
240
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -297,7 +309,11 @@ module CyberSource
297
309
  end
298
310
  inbound_mle_status = "false"
299
311
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["delete_plan","delete_plan_with_http_info"])
300
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
312
+ begin
313
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
314
+ rescue
315
+ raise
316
+ end
301
317
  end
302
318
  auth_names = []
303
319
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
@@ -372,7 +388,11 @@ module CyberSource
372
388
  end
373
389
  inbound_mle_status = "false"
374
390
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_plan","get_plan_with_http_info"])
375
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
391
+ begin
392
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
393
+ rescue
394
+ raise
395
+ end
376
396
  end
377
397
  auth_names = []
378
398
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -441,7 +461,11 @@ module CyberSource
441
461
  end
442
462
  inbound_mle_status = "false"
443
463
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_plan_code","get_plan_code_with_http_info"])
444
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
464
+ begin
465
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
466
+ rescue
467
+ raise
468
+ end
445
469
  end
446
470
  auth_names = []
447
471
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -525,7 +549,11 @@ module CyberSource
525
549
  end
526
550
  inbound_mle_status = "false"
527
551
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_plans","get_plans_with_http_info"])
528
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
552
+ begin
553
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
554
+ rescue
555
+ raise
556
+ end
529
557
  end
530
558
  auth_names = []
531
559
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -604,7 +632,11 @@ module CyberSource
604
632
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'UpdatePlanRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
605
633
  inbound_mle_status = "false"
606
634
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["update_plan","update_plan_with_http_info"])
607
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
635
+ begin
636
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
637
+ rescue
638
+ raise
639
+ end
608
640
  end
609
641
  auth_names = []
610
642
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -104,7 +104,11 @@ module CyberSource
104
104
  end
105
105
  inbound_mle_status = "false"
106
106
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_purchase_and_refund_details","get_purchase_and_refund_details_with_http_info"])
107
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
107
+ begin
108
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
109
+ rescue
110
+ raise
111
+ end
108
112
  end
109
113
  auth_names = []
110
114
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -114,7 +114,11 @@ module CyberSource
114
114
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PushFundsRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
115
115
  inbound_mle_status = "optional"
116
116
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_push_funds_transfer","create_push_funds_transfer_with_http_info"])
117
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
117
+ begin
118
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
119
+ rescue
120
+ raise
121
+ end
118
122
  end
119
123
  auth_names = []
120
124
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -78,7 +78,11 @@ module CyberSource
78
78
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'RefundCaptureRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
79
79
  inbound_mle_status = "optional"
80
80
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["refund_capture","refund_capture_with_http_info"])
81
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
81
+ begin
82
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
83
+ rescue
84
+ raise
85
+ end
82
86
  end
83
87
  auth_names = []
84
88
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -157,7 +161,11 @@ module CyberSource
157
161
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'RefundPaymentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
158
162
  inbound_mle_status = "optional"
159
163
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["refund_payment","refund_payment_with_http_info"])
160
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
164
+ begin
165
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
166
+ rescue
167
+ raise
168
+ end
161
169
  end
162
170
  auth_names = []
163
171
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -87,7 +87,11 @@ module CyberSource
87
87
  end
88
88
  inbound_mle_status = "false"
89
89
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_resource_info_by_report_definition","get_resource_info_by_report_definition_with_http_info"])
90
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
90
+ begin
91
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
92
+ rescue
93
+ raise
94
+ end
91
95
  end
92
96
  auth_names = []
93
97
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -166,7 +170,11 @@ module CyberSource
166
170
  end
167
171
  inbound_mle_status = "false"
168
172
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_resource_v2_info","get_resource_v2_info_with_http_info"])
169
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
173
+ begin
174
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
175
+ rescue
176
+ raise
177
+ end
170
178
  end
171
179
  auth_names = []
172
180
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -89,7 +89,11 @@ module CyberSource
89
89
  end
90
90
  inbound_mle_status = "false"
91
91
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["download_report","download_report_with_http_info"])
92
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
92
+ begin
93
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
94
+ rescue
95
+ raise
96
+ end
93
97
  end
94
98
  auth_names = []
95
99
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -79,7 +79,11 @@ module CyberSource
79
79
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PredefinedSubscriptionRequestBean', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
80
80
  inbound_mle_status = "false"
81
81
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_standard_or_classic_subscription","create_standard_or_classic_subscription_with_http_info"])
82
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
82
+ begin
83
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
84
+ rescue
85
+ raise
86
+ end
83
87
  end
84
88
  auth_names = []
85
89
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
@@ -158,7 +162,11 @@ module CyberSource
158
162
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreateReportSubscriptionRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
159
163
  inbound_mle_status = "false"
160
164
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_subscription","create_subscription_with_http_info"])
161
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
165
+ begin
166
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
167
+ rescue
168
+ raise
169
+ end
162
170
  end
163
171
  auth_names = []
164
172
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
@@ -243,7 +251,11 @@ module CyberSource
243
251
  end
244
252
  inbound_mle_status = "false"
245
253
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["delete_subscription","delete_subscription_with_http_info"])
246
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
254
+ begin
255
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
256
+ rescue
257
+ raise
258
+ end
247
259
  end
248
260
  auth_names = []
249
261
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
@@ -318,7 +330,11 @@ module CyberSource
318
330
  end
319
331
  inbound_mle_status = "false"
320
332
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_all_subscriptions","get_all_subscriptions_with_http_info"])
321
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
333
+ begin
334
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
335
+ rescue
336
+ raise
337
+ end
322
338
  end
323
339
  auth_names = []
324
340
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -404,7 +420,11 @@ module CyberSource
404
420
  end
405
421
  inbound_mle_status = "false"
406
422
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_subscription","get_subscription_with_http_info"])
407
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
423
+ begin
424
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
425
+ rescue
426
+ raise
427
+ end
408
428
  end
409
429
  auth_names = []
410
430
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -79,7 +79,11 @@ module CyberSource
79
79
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreateAdhocReportRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
80
80
  inbound_mle_status = "false"
81
81
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_report","create_report_with_http_info"])
82
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
82
+ begin
83
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
84
+ rescue
85
+ raise
86
+ end
83
87
  end
84
88
  auth_names = []
85
89
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -160,7 +164,11 @@ module CyberSource
160
164
  end
161
165
  inbound_mle_status = "false"
162
166
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_report_by_report_id","get_report_by_report_id_with_http_info"])
163
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
167
+ begin
168
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
169
+ rescue
170
+ raise
171
+ end
164
172
  end
165
173
  auth_names = []
166
174
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -272,7 +280,11 @@ module CyberSource
272
280
  end
273
281
  inbound_mle_status = "false"
274
282
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["search_reports","search_reports_with_http_info"])
275
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
283
+ begin
284
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
285
+ rescue
286
+ raise
287
+ end
276
288
  end
277
289
  auth_names = []
278
290
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -89,7 +89,11 @@ module CyberSource
89
89
  end
90
90
  inbound_mle_status = "false"
91
91
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_retrieval_details","get_retrieval_details_with_http_info"])
92
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
92
+ begin
93
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
94
+ rescue
95
+ raise
96
+ end
93
97
  end
94
98
  auth_names = []
95
99
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -89,7 +89,11 @@ module CyberSource
89
89
  end
90
90
  inbound_mle_status = "false"
91
91
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_retrieval_summary","get_retrieval_summary_with_http_info"])
92
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
92
+ begin
93
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
94
+ rescue
95
+ raise
96
+ end
93
97
  end
94
98
  auth_names = []
95
99
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -78,7 +78,11 @@ module CyberSource
78
78
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'AuthReversalRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
79
79
  inbound_mle_status = "optional"
80
80
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["auth_reversal","auth_reversal_with_http_info"])
81
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
81
+ begin
82
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
83
+ rescue
84
+ raise
85
+ end
82
86
  end
83
87
  auth_names = []
84
88
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -151,7 +155,11 @@ module CyberSource
151
155
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'MitReversalRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
152
156
  inbound_mle_status = "optional"
153
157
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["mit_reversal","mit_reversal_with_http_info"])
154
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
158
+ begin
159
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
160
+ rescue
161
+ raise
162
+ end
155
163
  end
156
164
  auth_names = []
157
165
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -72,7 +72,11 @@ module CyberSource
72
72
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreateSearchRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
73
73
  inbound_mle_status = "false"
74
74
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_search","create_search_with_http_info"])
75
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
75
+ begin
76
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
77
+ rescue
78
+ raise
79
+ end
76
80
  end
77
81
  auth_names = []
78
82
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -147,7 +151,11 @@ module CyberSource
147
151
  end
148
152
  inbound_mle_status = "false"
149
153
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_search","get_search_with_http_info"])
150
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
154
+ begin
155
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
156
+ rescue
157
+ raise
158
+ end
151
159
  end
152
160
  auth_names = []
153
161
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -81,7 +81,11 @@ module CyberSource
81
81
  end
82
82
  inbound_mle_status = "false"
83
83
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_file","get_file_with_http_info"])
84
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
84
+ begin
85
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
86
+ rescue
87
+ raise
88
+ end
85
89
  end
86
90
  auth_names = []
87
91
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -177,7 +181,11 @@ module CyberSource
177
181
  end
178
182
  inbound_mle_status = "false"
179
183
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_file_detail","get_file_detail_with_http_info"])
180
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
184
+ begin
185
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
186
+ rescue
187
+ raise
188
+ end
181
189
  end
182
190
  auth_names = []
183
191
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,