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
@@ -77,7 +77,11 @@ module CyberSource
77
77
  end
78
78
  inbound_mle_status = "false"
79
79
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["delete_customer","delete_customer_with_http_info"])
80
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
80
+ begin
81
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
82
+ rescue
83
+ raise
84
+ end
81
85
  end
82
86
  auth_names = []
83
87
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
@@ -154,7 +158,11 @@ module CyberSource
154
158
  end
155
159
  inbound_mle_status = "false"
156
160
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_customer","get_customer_with_http_info"])
157
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
161
+ begin
162
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
163
+ rescue
164
+ raise
165
+ end
158
166
  end
159
167
  auth_names = []
160
168
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -237,9 +245,13 @@ module CyberSource
237
245
  post_body = @api_client.object_to_http_body(patch_customer_request)
238
246
  sdk_tracker = SdkTracker.new
239
247
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PatchCustomerRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
240
- inbound_mle_status = "false"
248
+ inbound_mle_status = "optional"
241
249
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["patch_customer","patch_customer_with_http_info"])
242
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
250
+ begin
251
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
252
+ rescue
253
+ raise
254
+ end
243
255
  end
244
256
  auth_names = []
245
257
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -313,9 +325,13 @@ module CyberSource
313
325
  post_body = @api_client.object_to_http_body(post_customer_request)
314
326
  sdk_tracker = SdkTracker.new
315
327
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostCustomerRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
316
- inbound_mle_status = "false"
328
+ inbound_mle_status = "optional"
317
329
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_customer","post_customer_with_http_info"])
318
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
330
+ begin
331
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
332
+ rescue
333
+ raise
334
+ end
319
335
  end
320
336
  auth_names = []
321
337
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -83,7 +83,11 @@ module CyberSource
83
83
  end
84
84
  inbound_mle_status = "false"
85
85
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["delete_customer_payment_instrument","delete_customer_payment_instrument_with_http_info"])
86
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
86
+ begin
87
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
88
+ rescue
89
+ raise
90
+ end
87
91
  end
88
92
  auth_names = []
89
93
  data, status_code, headers = @api_client.call_api(:DELETE, 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_customer_payment_instrument","get_customer_payment_instrument_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,
@@ -250,7 +258,11 @@ module CyberSource
250
258
  end
251
259
  inbound_mle_status = "false"
252
260
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_customer_payment_instruments_list","get_customer_payment_instruments_list_with_http_info"])
253
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
261
+ begin
262
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
263
+ rescue
264
+ raise
265
+ end
254
266
  end
255
267
  auth_names = []
256
268
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -339,9 +351,13 @@ module CyberSource
339
351
  post_body = @api_client.object_to_http_body(patch_customer_payment_instrument_request)
340
352
  sdk_tracker = SdkTracker.new
341
353
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PatchCustomerPaymentInstrumentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
342
- inbound_mle_status = "false"
354
+ inbound_mle_status = "optional"
343
355
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["patch_customers_payment_instrument","patch_customers_payment_instrument_with_http_info"])
344
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
356
+ begin
357
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
358
+ rescue
359
+ raise
360
+ end
345
361
  end
346
362
  auth_names = []
347
363
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -421,9 +437,13 @@ module CyberSource
421
437
  post_body = @api_client.object_to_http_body(post_customer_payment_instrument_request)
422
438
  sdk_tracker = SdkTracker.new
423
439
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostCustomerPaymentInstrumentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
424
- inbound_mle_status = "false"
440
+ inbound_mle_status = "optional"
425
441
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_customer_payment_instrument","post_customer_payment_instrument_with_http_info"])
426
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
442
+ begin
443
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
444
+ rescue
445
+ raise
446
+ end
427
447
  end
428
448
  auth_names = []
429
449
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -83,7 +83,11 @@ module CyberSource
83
83
  end
84
84
  inbound_mle_status = "false"
85
85
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["delete_customer_shipping_address","delete_customer_shipping_address_with_http_info"])
86
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
86
+ begin
87
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
88
+ rescue
89
+ raise
90
+ end
87
91
  end
88
92
  auth_names = []
89
93
  data, status_code, headers = @api_client.call_api(:DELETE, 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_customer_shipping_address","get_customer_shipping_address_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,
@@ -250,7 +258,11 @@ module CyberSource
250
258
  end
251
259
  inbound_mle_status = "false"
252
260
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_customer_shipping_addresses_list","get_customer_shipping_addresses_list_with_http_info"])
253
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
261
+ begin
262
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
263
+ rescue
264
+ raise
265
+ end
254
266
  end
255
267
  auth_names = []
256
268
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -339,9 +351,13 @@ module CyberSource
339
351
  post_body = @api_client.object_to_http_body(patch_customer_shipping_address_request)
340
352
  sdk_tracker = SdkTracker.new
341
353
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PatchCustomerShippingAddressRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
342
- inbound_mle_status = "false"
354
+ inbound_mle_status = "optional"
343
355
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["patch_customers_shipping_address","patch_customers_shipping_address_with_http_info"])
344
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
356
+ begin
357
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
358
+ rescue
359
+ raise
360
+ end
345
361
  end
346
362
  auth_names = []
347
363
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -421,9 +437,13 @@ module CyberSource
421
437
  post_body = @api_client.object_to_http_body(post_customer_shipping_address_request)
422
438
  sdk_tracker = SdkTracker.new
423
439
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostCustomerShippingAddressRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
424
- inbound_mle_status = "false"
440
+ inbound_mle_status = "optional"
425
441
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_customer_shipping_address","post_customer_shipping_address_with_http_info"])
426
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
442
+ begin
443
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
444
+ rescue
445
+ raise
446
+ end
427
447
  end
428
448
  auth_names = []
429
449
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -25,7 +25,7 @@ module CyberSource
25
25
  # @param id An unique identification number generated by Cybersource to identify the submitted request.
26
26
  # @param case_management_actions_request
27
27
  # @param [Hash] opts the optional parameters
28
- # @return [InlineResponse2001]
28
+ # @return [InlineResponse2002]
29
29
  #
30
30
  def action_decision_manager_case(id, case_management_actions_request, opts = {})
31
31
  data, status_code, headers = action_decision_manager_case_with_http_info(id, case_management_actions_request, opts)
@@ -37,7 +37,7 @@ module CyberSource
37
37
  # @param id An unique identification number generated by Cybersource to identify the submitted request.
38
38
  # @param case_management_actions_request
39
39
  # @param [Hash] opts the optional parameters
40
- # @return [Array<(InlineResponse2001, Fixnum, Hash)>] InlineResponse2001 data, response status code and response headers
40
+ # @return [Array<(InlineResponse2002, Fixnum, Hash)>] InlineResponse2002 data, response status code and response headers
41
41
  def action_decision_manager_case_with_http_info(id, case_management_actions_request, opts = {})
42
42
 
43
43
  if @api_client.config.debugging
@@ -78,7 +78,11 @@ module CyberSource
78
78
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CaseManagementActionsRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
79
79
  inbound_mle_status = "false"
80
80
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["action_decision_manager_case","action_decision_manager_case_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,
@@ -87,7 +91,7 @@ module CyberSource
87
91
  :form_params => form_params,
88
92
  :body => post_body,
89
93
  :auth_names => auth_names,
90
- :return_type => 'InlineResponse2001')
94
+ :return_type => 'InlineResponse2002')
91
95
  if @api_client.config.debugging
92
96
  begin
93
97
  raise
@@ -157,7 +161,11 @@ module CyberSource
157
161
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'AddNegativeListRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
158
162
  inbound_mle_status = "false"
159
163
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["add_negative","add_negative_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,
@@ -236,7 +244,11 @@ module CyberSource
236
244
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CaseManagementCommentsRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
237
245
  inbound_mle_status = "false"
238
246
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["comment_decision_manager_case","comment_decision_manager_case_with_http_info"])
239
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
247
+ begin
248
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
249
+ rescue
250
+ raise
251
+ end
240
252
  end
241
253
  auth_names = []
242
254
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -309,7 +321,11 @@ module CyberSource
309
321
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'CreateBundledDecisionManagerCaseRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
310
322
  inbound_mle_status = "false"
311
323
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["create_bundled_decision_manager_case","create_bundled_decision_manager_case_with_http_info"])
312
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
324
+ begin
325
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
326
+ rescue
327
+ raise
328
+ end
313
329
  end
314
330
  auth_names = []
315
331
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -388,7 +404,11 @@ module CyberSource
388
404
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'FraudMarkingActionRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
389
405
  inbound_mle_status = "false"
390
406
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["fraud_update","fraud_update_with_http_info"])
391
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
407
+ begin
408
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
409
+ rescue
410
+ raise
411
+ end
392
412
  end
393
413
  auth_names = []
394
414
  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, 'DeAssociationRequestBody', @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, ["delete_terminal_association","delete_terminal_association_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(:PATCH, local_var_path,
@@ -96,7 +100,7 @@ module CyberSource
96
100
  #
97
101
  # @param device_de_associate_v3_request deviceId that has to be de-associated to the destination organizationId.
98
102
  # @param [Hash] opts the optional parameters
99
- # @return [Array<InlineResponse2008>]
103
+ # @return [Array<InlineResponse2009>]
100
104
  #
101
105
  def post_de_associate_v3_terminal(device_de_associate_v3_request, opts = {})
102
106
  data, status_code, headers = post_de_associate_v3_terminal_with_http_info(device_de_associate_v3_request, opts)
@@ -107,7 +111,7 @@ module CyberSource
107
111
  # A device will be de-associated from its current organization and moved up in the hierarchy. The device&#39;s new position will be determined by a specified destination, either an account or a portfolio. If no destination is provided, the device will default to the currently logged-in user.
108
112
  # @param device_de_associate_v3_request deviceId that has to be de-associated to the destination organizationId.
109
113
  # @param [Hash] opts the optional parameters
110
- # @return [Array<(Array<InlineResponse2008>, Fixnum, Hash)>] Array<InlineResponse2008> data, response status code and response headers
114
+ # @return [Array<(Array<InlineResponse2009>, Fixnum, Hash)>] Array<InlineResponse2009> data, response status code and response headers
111
115
  def post_de_associate_v3_terminal_with_http_info(device_de_associate_v3_request, opts = {})
112
116
 
113
117
  if @api_client.config.debugging
@@ -144,7 +148,11 @@ module CyberSource
144
148
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'Array&lt;DeviceDeAssociateV3Request&gt;', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
145
149
  inbound_mle_status = "false"
146
150
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_de_associate_v3_terminal","post_de_associate_v3_terminal_with_http_info"])
147
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
151
+ begin
152
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
153
+ rescue
154
+ raise
155
+ end
148
156
  end
149
157
  auth_names = []
150
158
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -153,7 +161,7 @@ module CyberSource
153
161
  :form_params => form_params,
154
162
  :body => post_body,
155
163
  :auth_names => auth_names,
156
- :return_type => 'Array<InlineResponse2008>')
164
+ :return_type => 'Array<InlineResponse2009>')
157
165
  if @api_client.config.debugging
158
166
  begin
159
167
  raise
@@ -24,7 +24,7 @@ module CyberSource
24
24
  #
25
25
  # @param post_device_search_request
26
26
  # @param [Hash] opts the optional parameters
27
- # @return [InlineResponse2007]
27
+ # @return [InlineResponse2008]
28
28
  #
29
29
  def post_search_query(post_device_search_request, opts = {})
30
30
  data, status_code, headers = post_search_query_with_http_info(post_device_search_request, opts)
@@ -35,7 +35,7 @@ module CyberSource
35
35
  # Retrieves list of terminals in paginated format.
36
36
  # @param post_device_search_request
37
37
  # @param [Hash] opts the optional parameters
38
- # @return [Array<(InlineResponse2007, Fixnum, Hash)>] InlineResponse2007 data, response status code and response headers
38
+ # @return [Array<(InlineResponse2008, Fixnum, Hash)>] InlineResponse2008 data, response status code and response headers
39
39
  def post_search_query_with_http_info(post_device_search_request, opts = {})
40
40
 
41
41
  if @api_client.config.debugging
@@ -72,7 +72,11 @@ module CyberSource
72
72
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostDeviceSearchRequest', @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, ["post_search_query","post_search_query_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,
@@ -81,7 +85,7 @@ module CyberSource
81
85
  :form_params => form_params,
82
86
  :body => post_body,
83
87
  :auth_names => auth_names,
84
- :return_type => 'InlineResponse2007')
88
+ :return_type => 'InlineResponse2008')
85
89
  if @api_client.config.debugging
86
90
  begin
87
91
  raise
@@ -97,7 +101,7 @@ module CyberSource
97
101
  #
98
102
  # @param post_device_search_request_v3
99
103
  # @param [Hash] opts the optional parameters
100
- # @return [InlineResponse2009]
104
+ # @return [InlineResponse20010]
101
105
  #
102
106
  def post_search_query_v3(post_device_search_request_v3, opts = {})
103
107
  data, status_code, headers = post_search_query_v3_with_http_info(post_device_search_request_v3, opts)
@@ -108,7 +112,7 @@ module CyberSource
108
112
  # Search for devices matching a given search query. The search query supports serialNumber, readerId, terminalId, status, statusChangeReason or organizationId Matching results are paginated.
109
113
  # @param post_device_search_request_v3
110
114
  # @param [Hash] opts the optional parameters
111
- # @return [Array<(InlineResponse2009, Fixnum, Hash)>] InlineResponse2009 data, response status code and response headers
115
+ # @return [Array<(InlineResponse20010, Fixnum, Hash)>] InlineResponse20010 data, response status code and response headers
112
116
  def post_search_query_v3_with_http_info(post_device_search_request_v3, opts = {})
113
117
 
114
118
  if @api_client.config.debugging
@@ -145,7 +149,11 @@ module CyberSource
145
149
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostDeviceSearchRequestV3', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
146
150
  inbound_mle_status = "false"
147
151
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_search_query_v3","post_search_query_v3_with_http_info"])
148
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
152
+ begin
153
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
154
+ rescue
155
+ raise
156
+ end
149
157
  end
150
158
  auth_names = []
151
159
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -154,7 +162,7 @@ module CyberSource
154
162
  :form_params => form_params,
155
163
  :body => post_body,
156
164
  :auth_names => auth_names,
157
- :return_type => 'InlineResponse2009')
165
+ :return_type => 'InlineResponse20010')
158
166
  if @api_client.config.debugging
159
167
  begin
160
168
  raise
@@ -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, ["get_dtdv2","get_dtdv2_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(:GET, 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, ["get_xsdv2","get_xsdv2_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(:GET, local_var_path,
@@ -68,7 +68,11 @@ module CyberSource
68
68
  end
69
69
  inbound_mle_status = "false"
70
70
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_emv_tags","get_emv_tags_with_http_info"])
71
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
71
+ begin
72
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
73
+ rescue
74
+ raise
75
+ end
72
76
  end
73
77
  auth_names = []
74
78
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -141,7 +145,11 @@ module CyberSource
141
145
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'Body', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
142
146
  inbound_mle_status = "false"
143
147
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["parse_emv_tags","parse_emv_tags_with_http_info"])
144
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
148
+ begin
149
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
150
+ rescue
151
+ raise
152
+ end
145
153
  end
146
154
  auth_names = []
147
155
  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, 'GenerateFlexAPICaptureContextRequest', @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, ["generate_flex_api_capture_context","generate_flex_api_capture_context_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,
@@ -77,7 +77,11 @@ module CyberSource
77
77
  end
78
78
  inbound_mle_status = "false"
79
79
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["delete_instrument_identifier","delete_instrument_identifier_with_http_info"])
80
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
80
+ begin
81
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
82
+ rescue
83
+ raise
84
+ end
81
85
  end
82
86
  auth_names = []
83
87
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
@@ -157,7 +161,11 @@ module CyberSource
157
161
  end
158
162
  inbound_mle_status = "false"
159
163
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_instrument_identifier","get_instrument_identifier_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(:GET, local_var_path,
@@ -244,7 +252,11 @@ module CyberSource
244
252
  end
245
253
  inbound_mle_status = "false"
246
254
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_instrument_identifier_payment_instruments_list","get_instrument_identifier_payment_instruments_list_with_http_info"])
247
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
255
+ begin
256
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
257
+ rescue
258
+ raise
259
+ end
248
260
  end
249
261
  auth_names = []
250
262
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -330,9 +342,13 @@ module CyberSource
330
342
  post_body = @api_client.object_to_http_body(patch_instrument_identifier_request)
331
343
  sdk_tracker = SdkTracker.new
332
344
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PatchInstrumentIdentifierRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
333
- inbound_mle_status = "false"
345
+ inbound_mle_status = "optional"
334
346
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["patch_instrument_identifier","patch_instrument_identifier_with_http_info"])
335
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
347
+ begin
348
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
349
+ rescue
350
+ raise
351
+ end
336
352
  end
337
353
  auth_names = []
338
354
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
@@ -409,9 +425,13 @@ module CyberSource
409
425
  post_body = @api_client.object_to_http_body(post_instrument_identifier_request)
410
426
  sdk_tracker = SdkTracker.new
411
427
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostInstrumentIdentifierRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
412
- inbound_mle_status = "false"
428
+ inbound_mle_status = "optional"
413
429
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_instrument_identifier","post_instrument_identifier_with_http_info"])
414
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
430
+ begin
431
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
432
+ rescue
433
+ raise
434
+ end
415
435
  end
416
436
  auth_names = []
417
437
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
@@ -491,9 +511,13 @@ module CyberSource
491
511
  post_body = @api_client.object_to_http_body(post_instrument_identifier_enrollment_request)
492
512
  sdk_tracker = SdkTracker.new
493
513
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostInstrumentIdentifierEnrollmentRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
494
- inbound_mle_status = "false"
514
+ inbound_mle_status = "optional"
495
515
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["post_instrument_identifier_enrollment","post_instrument_identifier_enrollment_with_http_info"])
496
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
516
+ begin
517
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
518
+ rescue
519
+ raise
520
+ end
497
521
  end
498
522
  auth_names = []
499
523
  data, status_code, headers = @api_client.call_api(:POST, 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_interchange_clearing_level_details","get_interchange_clearing_level_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,
@@ -68,7 +68,11 @@ module CyberSource
68
68
  end
69
69
  inbound_mle_status = "false"
70
70
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["get_invoice_settings","get_invoice_settings_with_http_info"])
71
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
71
+ begin
72
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
73
+ rescue
74
+ raise
75
+ end
72
76
  end
73
77
  auth_names = []
74
78
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
@@ -141,7 +145,11 @@ module CyberSource
141
145
  post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'InvoiceSettingsRequest', @api_client.config.host, @api_client.merchantconfig.defaultDeveloperId)
142
146
  inbound_mle_status = "false"
143
147
  if MLEUtility.check_is_mle_for_API(@api_client.merchantconfig, inbound_mle_status, ["update_invoice_settings","update_invoice_settings_with_http_info"])
144
- post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
148
+ begin
149
+ post_body = MLEUtility.encrypt_request_payload(@api_client.merchantconfig, post_body)
150
+ rescue
151
+ raise
152
+ end
145
153
  end
146
154
  auth_names = []
147
155
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,