onlinepayments-sdk-ruby 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (269) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +2 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +140 -0
  5. data/Rakefile +34 -0
  6. data/lib/onlinepayments/sdk/api_exception.rb +42 -0
  7. data/lib/onlinepayments/sdk/api_resource.rb +115 -0
  8. data/lib/onlinepayments/sdk/authenticator.rb +16 -0
  9. data/lib/onlinepayments/sdk/authorization_exception.rb +13 -0
  10. data/lib/onlinepayments/sdk/call_context.rb +26 -0
  11. data/lib/onlinepayments/sdk/client.rb +82 -0
  12. data/lib/onlinepayments/sdk/communication_exception.rb +16 -0
  13. data/lib/onlinepayments/sdk/communicator.rb +300 -0
  14. data/lib/onlinepayments/sdk/communicator_configuration.rb +59 -0
  15. data/lib/onlinepayments/sdk/connection.rb +41 -0
  16. data/lib/onlinepayments/sdk/data_object.rb +31 -0
  17. data/lib/onlinepayments/sdk/declined_payment_exception.rb +30 -0
  18. data/lib/onlinepayments/sdk/declined_payout_exception.rb +32 -0
  19. data/lib/onlinepayments/sdk/declined_refund_exception.rb +32 -0
  20. data/lib/onlinepayments/sdk/declined_transaction_exception.rb +16 -0
  21. data/lib/onlinepayments/sdk/defaultimpl/authorization_type.rb +24 -0
  22. data/lib/onlinepayments/sdk/defaultimpl/default_authenticator.rb +108 -0
  23. data/lib/onlinepayments/sdk/defaultimpl/default_connection.rb +295 -0
  24. data/lib/onlinepayments/sdk/defaultimpl/default_marshaller.rb +32 -0
  25. data/lib/onlinepayments/sdk/defaultimpl.rb +6 -0
  26. data/lib/onlinepayments/sdk/domain/account_on_file.rb +49 -0
  27. data/lib/onlinepayments/sdk/domain/account_on_file_attribute.rb +38 -0
  28. data/lib/onlinepayments/sdk/domain/account_on_file_display_hints.rb +37 -0
  29. data/lib/onlinepayments/sdk/domain/additional_order_input.rb +54 -0
  30. data/lib/onlinepayments/sdk/domain/address.rb +50 -0
  31. data/lib/onlinepayments/sdk/domain/address_personal.rb +58 -0
  32. data/lib/onlinepayments/sdk/domain/airline_data.rb +128 -0
  33. data/lib/onlinepayments/sdk/domain/airline_flight_leg.rb +102 -0
  34. data/lib/onlinepayments/sdk/domain/airline_passenger.rb +38 -0
  35. data/lib/onlinepayments/sdk/domain/amount_breakdown.rb +30 -0
  36. data/lib/onlinepayments/sdk/domain/amount_of_money.rb +30 -0
  37. data/lib/onlinepayments/sdk/domain/api_error.rb +46 -0
  38. data/lib/onlinepayments/sdk/domain/bank_account_iban.rb +26 -0
  39. data/lib/onlinepayments/sdk/domain/browser_data.rb +42 -0
  40. data/lib/onlinepayments/sdk/domain/cancel_payment_response.rb +30 -0
  41. data/lib/onlinepayments/sdk/domain/capture.rb +46 -0
  42. data/lib/onlinepayments/sdk/domain/capture_output.rb +82 -0
  43. data/lib/onlinepayments/sdk/domain/capture_payment_request.rb +38 -0
  44. data/lib/onlinepayments/sdk/domain/capture_response.rb +46 -0
  45. data/lib/onlinepayments/sdk/domain/capture_status_output.rb +26 -0
  46. data/lib/onlinepayments/sdk/domain/captures_response.rb +33 -0
  47. data/lib/onlinepayments/sdk/domain/card.rb +38 -0
  48. data/lib/onlinepayments/sdk/domain/card_essentials.rb +34 -0
  49. data/lib/onlinepayments/sdk/domain/card_fraud_results.rb +34 -0
  50. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_input.rb +98 -0
  51. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_input_base.rb +86 -0
  52. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_input_for_hosted_checkout.rb +26 -0
  53. data/lib/onlinepayments/sdk/domain/card_payment_method_specific_output.rb +78 -0
  54. data/lib/onlinepayments/sdk/domain/card_payout_method_specific_input.rb +38 -0
  55. data/lib/onlinepayments/sdk/domain/card_recurrence_details.rb +26 -0
  56. data/lib/onlinepayments/sdk/domain/card_without_cvv.rb +34 -0
  57. data/lib/onlinepayments/sdk/domain/company_information.rb +26 -0
  58. data/lib/onlinepayments/sdk/domain/complete_payment_card_payment_method_specific_input.rb +30 -0
  59. data/lib/onlinepayments/sdk/domain/complete_payment_request.rb +38 -0
  60. data/lib/onlinepayments/sdk/domain/complete_payment_response.rb +46 -0
  61. data/lib/onlinepayments/sdk/domain/contact_details.rb +42 -0
  62. data/lib/onlinepayments/sdk/domain/create_hosted_checkout_request.rb +78 -0
  63. data/lib/onlinepayments/sdk/domain/create_hosted_checkout_response.rb +48 -0
  64. data/lib/onlinepayments/sdk/domain/create_hosted_tokenization_request.rb +38 -0
  65. data/lib/onlinepayments/sdk/domain/create_hosted_tokenization_response.rb +50 -0
  66. data/lib/onlinepayments/sdk/domain/create_mandate_request.rb +58 -0
  67. data/lib/onlinepayments/sdk/domain/create_mandate_response.rb +38 -0
  68. data/lib/onlinepayments/sdk/domain/create_mandate_with_return_url.rb +58 -0
  69. data/lib/onlinepayments/sdk/domain/create_payment_request.rb +74 -0
  70. data/lib/onlinepayments/sdk/domain/create_payment_response.rb +46 -0
  71. data/lib/onlinepayments/sdk/domain/create_payout_request.rb +46 -0
  72. data/lib/onlinepayments/sdk/domain/create_token_request.rb +34 -0
  73. data/lib/onlinepayments/sdk/domain/created_payment_output.rb +34 -0
  74. data/lib/onlinepayments/sdk/domain/created_token_response.rb +50 -0
  75. data/lib/onlinepayments/sdk/domain/customer.rb +86 -0
  76. data/lib/onlinepayments/sdk/domain/customer_account.rb +70 -0
  77. data/lib/onlinepayments/sdk/domain/customer_account_authentication.rb +30 -0
  78. data/lib/onlinepayments/sdk/domain/customer_device.rb +50 -0
  79. data/lib/onlinepayments/sdk/domain/customer_payment_activity.rb +34 -0
  80. data/lib/onlinepayments/sdk/domain/customer_token.rb +46 -0
  81. data/lib/onlinepayments/sdk/domain/decrypted_payment_data.rb +42 -0
  82. data/lib/onlinepayments/sdk/domain/directory_entry.rb +34 -0
  83. data/lib/onlinepayments/sdk/domain/empty_validator.rb +12 -0
  84. data/lib/onlinepayments/sdk/domain/error_response.rb +37 -0
  85. data/lib/onlinepayments/sdk/domain/external_cardholder_authentication_data.rb +58 -0
  86. data/lib/onlinepayments/sdk/domain/external_token_linked.rb +34 -0
  87. data/lib/onlinepayments/sdk/domain/fixed_list_validator.rb +32 -0
  88. data/lib/onlinepayments/sdk/domain/fraud_fields.rb +30 -0
  89. data/lib/onlinepayments/sdk/domain/fraud_results.rb +26 -0
  90. data/lib/onlinepayments/sdk/domain/g_pay_three_d_secure.rb +46 -0
  91. data/lib/onlinepayments/sdk/domain/get_hosted_checkout_response.rb +34 -0
  92. data/lib/onlinepayments/sdk/domain/get_hosted_tokenization_response.rb +34 -0
  93. data/lib/onlinepayments/sdk/domain/get_iin_details_request.rb +34 -0
  94. data/lib/onlinepayments/sdk/domain/get_iin_details_response.rb +45 -0
  95. data/lib/onlinepayments/sdk/domain/get_mandate_response.rb +30 -0
  96. data/lib/onlinepayments/sdk/domain/get_payment_product_groups_response.rb +33 -0
  97. data/lib/onlinepayments/sdk/domain/get_payment_products_response.rb +33 -0
  98. data/lib/onlinepayments/sdk/domain/gift_card_purchase.rb +34 -0
  99. data/lib/onlinepayments/sdk/domain/hosted_checkout_specific_input.rb +66 -0
  100. data/lib/onlinepayments/sdk/domain/hosted_checkout_specific_output.rb +30 -0
  101. data/lib/onlinepayments/sdk/domain/iin_detail.rb +30 -0
  102. data/lib/onlinepayments/sdk/domain/label_template_element.rb +30 -0
  103. data/lib/onlinepayments/sdk/domain/length_validator.rb +30 -0
  104. data/lib/onlinepayments/sdk/domain/line_item.rb +46 -0
  105. data/lib/onlinepayments/sdk/domain/line_item_invoice_data.rb +26 -0
  106. data/lib/onlinepayments/sdk/domain/loan_recipient.rb +42 -0
  107. data/lib/onlinepayments/sdk/domain/lodging_data.rb +26 -0
  108. data/lib/onlinepayments/sdk/domain/mandate_address.rb +42 -0
  109. data/lib/onlinepayments/sdk/domain/mandate_contact_details.rb +26 -0
  110. data/lib/onlinepayments/sdk/domain/mandate_customer.rb +58 -0
  111. data/lib/onlinepayments/sdk/domain/mandate_merchant_action.rb +34 -0
  112. data/lib/onlinepayments/sdk/domain/mandate_personal_information.rb +34 -0
  113. data/lib/onlinepayments/sdk/domain/mandate_personal_name.rb +30 -0
  114. data/lib/onlinepayments/sdk/domain/mandate_redirect_data.rb +30 -0
  115. data/lib/onlinepayments/sdk/domain/mandate_response.rb +50 -0
  116. data/lib/onlinepayments/sdk/domain/merchant_action.rb +34 -0
  117. data/lib/onlinepayments/sdk/domain/mobile_payment_data.rb +30 -0
  118. data/lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb +30 -0
  119. data/lib/onlinepayments/sdk/domain/mobile_payment_method_specific_input.rb +62 -0
  120. data/lib/onlinepayments/sdk/domain/mobile_payment_method_specific_output.rb +58 -0
  121. data/lib/onlinepayments/sdk/domain/mobile_payment_product320_specific_input.rb +30 -0
  122. data/lib/onlinepayments/sdk/domain/operation_output.rb +58 -0
  123. data/lib/onlinepayments/sdk/domain/order.rb +70 -0
  124. data/lib/onlinepayments/sdk/domain/order_line_details.rb +54 -0
  125. data/lib/onlinepayments/sdk/domain/order_references.rb +34 -0
  126. data/lib/onlinepayments/sdk/domain/order_status_output.rb +49 -0
  127. data/lib/onlinepayments/sdk/domain/order_type_information.rb +30 -0
  128. data/lib/onlinepayments/sdk/domain/payment_account_on_file.rb +30 -0
  129. data/lib/onlinepayments/sdk/domain/payment_context.rb +38 -0
  130. data/lib/onlinepayments/sdk/domain/payment_creation_output.rb +38 -0
  131. data/lib/onlinepayments/sdk/domain/payment_details_response.rb +65 -0
  132. data/lib/onlinepayments/sdk/domain/payment_error_response.rb +45 -0
  133. data/lib/onlinepayments/sdk/domain/payment_output.rb +82 -0
  134. data/lib/onlinepayments/sdk/domain/payment_product.rb +102 -0
  135. data/lib/onlinepayments/sdk/domain/payment_product130_specific_input.rb +30 -0
  136. data/lib/onlinepayments/sdk/domain/payment_product130_specific_three_d_secure.rb +38 -0
  137. data/lib/onlinepayments/sdk/domain/payment_product302_specific_data.rb +32 -0
  138. data/lib/onlinepayments/sdk/domain/payment_product320_specific_data.rb +36 -0
  139. data/lib/onlinepayments/sdk/domain/payment_product5100_specific_input.rb +26 -0
  140. data/lib/onlinepayments/sdk/domain/payment_product5402_specific_output.rb +26 -0
  141. data/lib/onlinepayments/sdk/domain/payment_product5500_specific_output.rb +34 -0
  142. data/lib/onlinepayments/sdk/domain/payment_product771_specific_output.rb +26 -0
  143. data/lib/onlinepayments/sdk/domain/payment_product840_customer_account.rb +54 -0
  144. data/lib/onlinepayments/sdk/domain/payment_product840_specific_output.rb +53 -0
  145. data/lib/onlinepayments/sdk/domain/payment_product_display_hints.rb +34 -0
  146. data/lib/onlinepayments/sdk/domain/payment_product_field.rb +46 -0
  147. data/lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb +34 -0
  148. data/lib/onlinepayments/sdk/domain/payment_product_field_display_element.rb +38 -0
  149. data/lib/onlinepayments/sdk/domain/payment_product_field_display_hints.rb +70 -0
  150. data/lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb +37 -0
  151. data/lib/onlinepayments/sdk/domain/payment_product_field_tooltip.rb +30 -0
  152. data/lib/onlinepayments/sdk/domain/payment_product_field_validators.rb +90 -0
  153. data/lib/onlinepayments/sdk/domain/payment_product_filter.rb +42 -0
  154. data/lib/onlinepayments/sdk/domain/payment_product_filters_hosted_checkout.rb +37 -0
  155. data/lib/onlinepayments/sdk/domain/payment_product_group.rb +52 -0
  156. data/lib/onlinepayments/sdk/domain/payment_product_networks_response.rb +32 -0
  157. data/lib/onlinepayments/sdk/domain/payment_references.rb +30 -0
  158. data/lib/onlinepayments/sdk/domain/payment_response.rb +54 -0
  159. data/lib/onlinepayments/sdk/domain/payment_status_output.rb +57 -0
  160. data/lib/onlinepayments/sdk/domain/payout_error_response.rb +45 -0
  161. data/lib/onlinepayments/sdk/domain/payout_output.rb +30 -0
  162. data/lib/onlinepayments/sdk/domain/payout_response.rb +46 -0
  163. data/lib/onlinepayments/sdk/domain/payout_result.rb +46 -0
  164. data/lib/onlinepayments/sdk/domain/payout_status_output.rb +34 -0
  165. data/lib/onlinepayments/sdk/domain/personal_information.rb +38 -0
  166. data/lib/onlinepayments/sdk/domain/personal_information_token.rb +30 -0
  167. data/lib/onlinepayments/sdk/domain/personal_name.rb +34 -0
  168. data/lib/onlinepayments/sdk/domain/personal_name_token.rb +30 -0
  169. data/lib/onlinepayments/sdk/domain/product_directory.rb +33 -0
  170. data/lib/onlinepayments/sdk/domain/protection_eligibility.rb +30 -0
  171. data/lib/onlinepayments/sdk/domain/range_validator.rb +30 -0
  172. data/lib/onlinepayments/sdk/domain/redirect_data.rb +30 -0
  173. data/lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb +66 -0
  174. data/lib/onlinepayments/sdk/domain/redirect_payment_method_specific_output.rb +66 -0
  175. data/lib/onlinepayments/sdk/domain/redirect_payment_product809_specific_input.rb +26 -0
  176. data/lib/onlinepayments/sdk/domain/redirect_payment_product840_specific_input.rb +26 -0
  177. data/lib/onlinepayments/sdk/domain/redirection_data.rb +26 -0
  178. data/lib/onlinepayments/sdk/domain/refund_card_method_specific_output.rb +30 -0
  179. data/lib/onlinepayments/sdk/domain/refund_e_wallet_method_specific_output.rb +38 -0
  180. data/lib/onlinepayments/sdk/domain/refund_error_response.rb +45 -0
  181. data/lib/onlinepayments/sdk/domain/refund_mobile_method_specific_output.rb +34 -0
  182. data/lib/onlinepayments/sdk/domain/refund_output.rb +82 -0
  183. data/lib/onlinepayments/sdk/domain/refund_payment_product840_customer_account.rb +34 -0
  184. data/lib/onlinepayments/sdk/domain/refund_payment_product840_specific_output.rb +30 -0
  185. data/lib/onlinepayments/sdk/domain/refund_redirect_method_specific_output.rb +30 -0
  186. data/lib/onlinepayments/sdk/domain/refund_request.rb +38 -0
  187. data/lib/onlinepayments/sdk/domain/refund_response.rb +46 -0
  188. data/lib/onlinepayments/sdk/domain/refunds_response.rb +33 -0
  189. data/lib/onlinepayments/sdk/domain/regular_expression_validator.rb +26 -0
  190. data/lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb +34 -0
  191. data/lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input_base.rb +34 -0
  192. data/lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_output.rb +42 -0
  193. data/lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_product771_specific_input.rb +34 -0
  194. data/lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_product771_specific_input_base.rb +34 -0
  195. data/lib/onlinepayments/sdk/domain/session_request.rb +32 -0
  196. data/lib/onlinepayments/sdk/domain/session_response.rb +48 -0
  197. data/lib/onlinepayments/sdk/domain/shipping.rb +58 -0
  198. data/lib/onlinepayments/sdk/domain/shopping_cart.rb +64 -0
  199. data/lib/onlinepayments/sdk/domain/shopping_cart_extension.rb +52 -0
  200. data/lib/onlinepayments/sdk/domain/test_connection.rb +26 -0
  201. data/lib/onlinepayments/sdk/domain/three_d_secure.rb +78 -0
  202. data/lib/onlinepayments/sdk/domain/three_d_secure_base.rb +58 -0
  203. data/lib/onlinepayments/sdk/domain/three_d_secure_data.rb +34 -0
  204. data/lib/onlinepayments/sdk/domain/three_d_secure_results.rb +30 -0
  205. data/lib/onlinepayments/sdk/domain/token_card.rb +34 -0
  206. data/lib/onlinepayments/sdk/domain/token_card_data.rb +30 -0
  207. data/lib/onlinepayments/sdk/domain/token_card_specific_input.rb +30 -0
  208. data/lib/onlinepayments/sdk/domain/token_data.rb +30 -0
  209. data/lib/onlinepayments/sdk/domain/token_e_wallet.rb +34 -0
  210. data/lib/onlinepayments/sdk/domain/token_response.rb +58 -0
  211. data/lib/onlinepayments/sdk/domain/value_mapping_element.rb +37 -0
  212. data/lib/onlinepayments/sdk/endpoint_configuration.rb +127 -0
  213. data/lib/onlinepayments/sdk/exceptions.rb +8 -0
  214. data/lib/onlinepayments/sdk/factory.rb +136 -0
  215. data/lib/onlinepayments/sdk/idempotence_exception.rb +24 -0
  216. data/lib/onlinepayments/sdk/logging/communicator_logger.rb +22 -0
  217. data/lib/onlinepayments/sdk/logging/log_message_builder.rb +56 -0
  218. data/lib/onlinepayments/sdk/logging/logging_capable.rb +17 -0
  219. data/lib/onlinepayments/sdk/logging/logging_util.rb +286 -0
  220. data/lib/onlinepayments/sdk/logging/request_log_message_builder.rb +39 -0
  221. data/lib/onlinepayments/sdk/logging/response_log_message_builder.rb +34 -0
  222. data/lib/onlinepayments/sdk/logging/ruby_communicator_logger.rb +57 -0
  223. data/lib/onlinepayments/sdk/logging/stdout_communicator_logger.rb +34 -0
  224. data/lib/onlinepayments/sdk/logging.rb +10 -0
  225. data/lib/onlinepayments/sdk/marshaller.rb +24 -0
  226. data/lib/onlinepayments/sdk/marshaller_syntax_exception.rb +6 -0
  227. data/lib/onlinepayments/sdk/merchant/hostedcheckout/hosted_checkout_client.rb +86 -0
  228. data/lib/onlinepayments/sdk/merchant/hostedtokenization/hosted_tokenization_client.rb +86 -0
  229. data/lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb +182 -0
  230. data/lib/onlinepayments/sdk/merchant/merchant_client.rb +89 -0
  231. data/lib/onlinepayments/sdk/merchant/payments/payments_client.rb +322 -0
  232. data/lib/onlinepayments/sdk/merchant/payouts/payouts_client.rb +86 -0
  233. data/lib/onlinepayments/sdk/merchant/productgroups/get_product_group_params.rb +57 -0
  234. data/lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb +57 -0
  235. data/lib/onlinepayments/sdk/merchant/productgroups/product_groups_client.rb +87 -0
  236. data/lib/onlinepayments/sdk/merchant/products/get_payment_product_networks_params.rb +38 -0
  237. data/lib/onlinepayments/sdk/merchant/products/get_payment_product_params.rb +57 -0
  238. data/lib/onlinepayments/sdk/merchant/products/get_payment_products_params.rb +57 -0
  239. data/lib/onlinepayments/sdk/merchant/products/get_product_directory_params.rb +30 -0
  240. data/lib/onlinepayments/sdk/merchant/products/products_client.rb +155 -0
  241. data/lib/onlinepayments/sdk/merchant/services/services_client.rb +82 -0
  242. data/lib/onlinepayments/sdk/merchant/sessions/sessions_client.rb +54 -0
  243. data/lib/onlinepayments/sdk/merchant/tokens/tokens_client.rb +116 -0
  244. data/lib/onlinepayments/sdk/meta_data_provider.rb +150 -0
  245. data/lib/onlinepayments/sdk/modules.rb +62 -0
  246. data/lib/onlinepayments/sdk/not_found_exception.rb +16 -0
  247. data/lib/onlinepayments/sdk/param_request.rb +11 -0
  248. data/lib/onlinepayments/sdk/payment_platform_exception.rb +15 -0
  249. data/lib/onlinepayments/sdk/pooled_connection.rb +21 -0
  250. data/lib/onlinepayments/sdk/proxy_configuration.rb +74 -0
  251. data/lib/onlinepayments/sdk/reference_exception.rb +14 -0
  252. data/lib/onlinepayments/sdk/request_header.rb +50 -0
  253. data/lib/onlinepayments/sdk/request_param.rb +23 -0
  254. data/lib/onlinepayments/sdk/response_exception.rb +47 -0
  255. data/lib/onlinepayments/sdk/response_header.rb +42 -0
  256. data/lib/onlinepayments/sdk/validation_exception.rb +14 -0
  257. data/lib/onlinepayments/sdk/webhooks/api_version_mismatch_exception.rb +20 -0
  258. data/lib/onlinepayments/sdk/webhooks/in_memory_secret_key_store.rb +56 -0
  259. data/lib/onlinepayments/sdk/webhooks/secret_key_not_available_exception.rb +17 -0
  260. data/lib/onlinepayments/sdk/webhooks/secret_key_store.rb +16 -0
  261. data/lib/onlinepayments/sdk/webhooks/signature_validation_exception.rb +19 -0
  262. data/lib/onlinepayments/sdk/webhooks/webhooks.rb +22 -0
  263. data/lib/onlinepayments/sdk/webhooks/webhooks_event.rb +58 -0
  264. data/lib/onlinepayments/sdk/webhooks/webhooks_helper.rb +100 -0
  265. data/lib/onlinepayments/sdk/webhooks/webhooks_helper_builder.rb +25 -0
  266. data/lib/onlinepayments/sdk/webhooks.rb +11 -0
  267. data/lib/onlinepayments/sdk.rb +26 -0
  268. data/onlinepayments-sdk-ruby.gemspec +28 -0
  269. metadata +416 -0
metadata ADDED
@@ -0,0 +1,416 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: onlinepayments-sdk-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Worldline Direct support team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-02-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httpclient
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: concurrent-ruby
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: yard
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.9'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: webmock
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: sinatra
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.4'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.4'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '12.3'
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: 12.3.3
107
+ type: :development
108
+ prerelease: false
109
+ version_requirements: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - "~>"
112
+ - !ruby/object:Gem::Version
113
+ version: '12.3'
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: 12.3.3
117
+ description: SDK to communicate with the Online Payments platform using the Online
118
+ Payments Server API
119
+ email:
120
+ - 82139942+worldline-direct-support-team@users.noreply.github.com
121
+ executables: []
122
+ extensions: []
123
+ extra_rdoc_files: []
124
+ files:
125
+ - Gemfile
126
+ - LICENSE.txt
127
+ - README.md
128
+ - Rakefile
129
+ - lib/onlinepayments/sdk.rb
130
+ - lib/onlinepayments/sdk/api_exception.rb
131
+ - lib/onlinepayments/sdk/api_resource.rb
132
+ - lib/onlinepayments/sdk/authenticator.rb
133
+ - lib/onlinepayments/sdk/authorization_exception.rb
134
+ - lib/onlinepayments/sdk/call_context.rb
135
+ - lib/onlinepayments/sdk/client.rb
136
+ - lib/onlinepayments/sdk/communication_exception.rb
137
+ - lib/onlinepayments/sdk/communicator.rb
138
+ - lib/onlinepayments/sdk/communicator_configuration.rb
139
+ - lib/onlinepayments/sdk/connection.rb
140
+ - lib/onlinepayments/sdk/data_object.rb
141
+ - lib/onlinepayments/sdk/declined_payment_exception.rb
142
+ - lib/onlinepayments/sdk/declined_payout_exception.rb
143
+ - lib/onlinepayments/sdk/declined_refund_exception.rb
144
+ - lib/onlinepayments/sdk/declined_transaction_exception.rb
145
+ - lib/onlinepayments/sdk/defaultimpl.rb
146
+ - lib/onlinepayments/sdk/defaultimpl/authorization_type.rb
147
+ - lib/onlinepayments/sdk/defaultimpl/default_authenticator.rb
148
+ - lib/onlinepayments/sdk/defaultimpl/default_connection.rb
149
+ - lib/onlinepayments/sdk/defaultimpl/default_marshaller.rb
150
+ - lib/onlinepayments/sdk/domain/account_on_file.rb
151
+ - lib/onlinepayments/sdk/domain/account_on_file_attribute.rb
152
+ - lib/onlinepayments/sdk/domain/account_on_file_display_hints.rb
153
+ - lib/onlinepayments/sdk/domain/additional_order_input.rb
154
+ - lib/onlinepayments/sdk/domain/address.rb
155
+ - lib/onlinepayments/sdk/domain/address_personal.rb
156
+ - lib/onlinepayments/sdk/domain/airline_data.rb
157
+ - lib/onlinepayments/sdk/domain/airline_flight_leg.rb
158
+ - lib/onlinepayments/sdk/domain/airline_passenger.rb
159
+ - lib/onlinepayments/sdk/domain/amount_breakdown.rb
160
+ - lib/onlinepayments/sdk/domain/amount_of_money.rb
161
+ - lib/onlinepayments/sdk/domain/api_error.rb
162
+ - lib/onlinepayments/sdk/domain/bank_account_iban.rb
163
+ - lib/onlinepayments/sdk/domain/browser_data.rb
164
+ - lib/onlinepayments/sdk/domain/cancel_payment_response.rb
165
+ - lib/onlinepayments/sdk/domain/capture.rb
166
+ - lib/onlinepayments/sdk/domain/capture_output.rb
167
+ - lib/onlinepayments/sdk/domain/capture_payment_request.rb
168
+ - lib/onlinepayments/sdk/domain/capture_response.rb
169
+ - lib/onlinepayments/sdk/domain/capture_status_output.rb
170
+ - lib/onlinepayments/sdk/domain/captures_response.rb
171
+ - lib/onlinepayments/sdk/domain/card.rb
172
+ - lib/onlinepayments/sdk/domain/card_essentials.rb
173
+ - lib/onlinepayments/sdk/domain/card_fraud_results.rb
174
+ - lib/onlinepayments/sdk/domain/card_payment_method_specific_input.rb
175
+ - lib/onlinepayments/sdk/domain/card_payment_method_specific_input_base.rb
176
+ - lib/onlinepayments/sdk/domain/card_payment_method_specific_input_for_hosted_checkout.rb
177
+ - lib/onlinepayments/sdk/domain/card_payment_method_specific_output.rb
178
+ - lib/onlinepayments/sdk/domain/card_payout_method_specific_input.rb
179
+ - lib/onlinepayments/sdk/domain/card_recurrence_details.rb
180
+ - lib/onlinepayments/sdk/domain/card_without_cvv.rb
181
+ - lib/onlinepayments/sdk/domain/company_information.rb
182
+ - lib/onlinepayments/sdk/domain/complete_payment_card_payment_method_specific_input.rb
183
+ - lib/onlinepayments/sdk/domain/complete_payment_request.rb
184
+ - lib/onlinepayments/sdk/domain/complete_payment_response.rb
185
+ - lib/onlinepayments/sdk/domain/contact_details.rb
186
+ - lib/onlinepayments/sdk/domain/create_hosted_checkout_request.rb
187
+ - lib/onlinepayments/sdk/domain/create_hosted_checkout_response.rb
188
+ - lib/onlinepayments/sdk/domain/create_hosted_tokenization_request.rb
189
+ - lib/onlinepayments/sdk/domain/create_hosted_tokenization_response.rb
190
+ - lib/onlinepayments/sdk/domain/create_mandate_request.rb
191
+ - lib/onlinepayments/sdk/domain/create_mandate_response.rb
192
+ - lib/onlinepayments/sdk/domain/create_mandate_with_return_url.rb
193
+ - lib/onlinepayments/sdk/domain/create_payment_request.rb
194
+ - lib/onlinepayments/sdk/domain/create_payment_response.rb
195
+ - lib/onlinepayments/sdk/domain/create_payout_request.rb
196
+ - lib/onlinepayments/sdk/domain/create_token_request.rb
197
+ - lib/onlinepayments/sdk/domain/created_payment_output.rb
198
+ - lib/onlinepayments/sdk/domain/created_token_response.rb
199
+ - lib/onlinepayments/sdk/domain/customer.rb
200
+ - lib/onlinepayments/sdk/domain/customer_account.rb
201
+ - lib/onlinepayments/sdk/domain/customer_account_authentication.rb
202
+ - lib/onlinepayments/sdk/domain/customer_device.rb
203
+ - lib/onlinepayments/sdk/domain/customer_payment_activity.rb
204
+ - lib/onlinepayments/sdk/domain/customer_token.rb
205
+ - lib/onlinepayments/sdk/domain/decrypted_payment_data.rb
206
+ - lib/onlinepayments/sdk/domain/directory_entry.rb
207
+ - lib/onlinepayments/sdk/domain/empty_validator.rb
208
+ - lib/onlinepayments/sdk/domain/error_response.rb
209
+ - lib/onlinepayments/sdk/domain/external_cardholder_authentication_data.rb
210
+ - lib/onlinepayments/sdk/domain/external_token_linked.rb
211
+ - lib/onlinepayments/sdk/domain/fixed_list_validator.rb
212
+ - lib/onlinepayments/sdk/domain/fraud_fields.rb
213
+ - lib/onlinepayments/sdk/domain/fraud_results.rb
214
+ - lib/onlinepayments/sdk/domain/g_pay_three_d_secure.rb
215
+ - lib/onlinepayments/sdk/domain/get_hosted_checkout_response.rb
216
+ - lib/onlinepayments/sdk/domain/get_hosted_tokenization_response.rb
217
+ - lib/onlinepayments/sdk/domain/get_iin_details_request.rb
218
+ - lib/onlinepayments/sdk/domain/get_iin_details_response.rb
219
+ - lib/onlinepayments/sdk/domain/get_mandate_response.rb
220
+ - lib/onlinepayments/sdk/domain/get_payment_product_groups_response.rb
221
+ - lib/onlinepayments/sdk/domain/get_payment_products_response.rb
222
+ - lib/onlinepayments/sdk/domain/gift_card_purchase.rb
223
+ - lib/onlinepayments/sdk/domain/hosted_checkout_specific_input.rb
224
+ - lib/onlinepayments/sdk/domain/hosted_checkout_specific_output.rb
225
+ - lib/onlinepayments/sdk/domain/iin_detail.rb
226
+ - lib/onlinepayments/sdk/domain/label_template_element.rb
227
+ - lib/onlinepayments/sdk/domain/length_validator.rb
228
+ - lib/onlinepayments/sdk/domain/line_item.rb
229
+ - lib/onlinepayments/sdk/domain/line_item_invoice_data.rb
230
+ - lib/onlinepayments/sdk/domain/loan_recipient.rb
231
+ - lib/onlinepayments/sdk/domain/lodging_data.rb
232
+ - lib/onlinepayments/sdk/domain/mandate_address.rb
233
+ - lib/onlinepayments/sdk/domain/mandate_contact_details.rb
234
+ - lib/onlinepayments/sdk/domain/mandate_customer.rb
235
+ - lib/onlinepayments/sdk/domain/mandate_merchant_action.rb
236
+ - lib/onlinepayments/sdk/domain/mandate_personal_information.rb
237
+ - lib/onlinepayments/sdk/domain/mandate_personal_name.rb
238
+ - lib/onlinepayments/sdk/domain/mandate_redirect_data.rb
239
+ - lib/onlinepayments/sdk/domain/mandate_response.rb
240
+ - lib/onlinepayments/sdk/domain/merchant_action.rb
241
+ - lib/onlinepayments/sdk/domain/mobile_payment_data.rb
242
+ - lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb
243
+ - lib/onlinepayments/sdk/domain/mobile_payment_method_specific_input.rb
244
+ - lib/onlinepayments/sdk/domain/mobile_payment_method_specific_output.rb
245
+ - lib/onlinepayments/sdk/domain/mobile_payment_product320_specific_input.rb
246
+ - lib/onlinepayments/sdk/domain/operation_output.rb
247
+ - lib/onlinepayments/sdk/domain/order.rb
248
+ - lib/onlinepayments/sdk/domain/order_line_details.rb
249
+ - lib/onlinepayments/sdk/domain/order_references.rb
250
+ - lib/onlinepayments/sdk/domain/order_status_output.rb
251
+ - lib/onlinepayments/sdk/domain/order_type_information.rb
252
+ - lib/onlinepayments/sdk/domain/payment_account_on_file.rb
253
+ - lib/onlinepayments/sdk/domain/payment_context.rb
254
+ - lib/onlinepayments/sdk/domain/payment_creation_output.rb
255
+ - lib/onlinepayments/sdk/domain/payment_details_response.rb
256
+ - lib/onlinepayments/sdk/domain/payment_error_response.rb
257
+ - lib/onlinepayments/sdk/domain/payment_output.rb
258
+ - lib/onlinepayments/sdk/domain/payment_product.rb
259
+ - lib/onlinepayments/sdk/domain/payment_product130_specific_input.rb
260
+ - lib/onlinepayments/sdk/domain/payment_product130_specific_three_d_secure.rb
261
+ - lib/onlinepayments/sdk/domain/payment_product302_specific_data.rb
262
+ - lib/onlinepayments/sdk/domain/payment_product320_specific_data.rb
263
+ - lib/onlinepayments/sdk/domain/payment_product5100_specific_input.rb
264
+ - lib/onlinepayments/sdk/domain/payment_product5402_specific_output.rb
265
+ - lib/onlinepayments/sdk/domain/payment_product5500_specific_output.rb
266
+ - lib/onlinepayments/sdk/domain/payment_product771_specific_output.rb
267
+ - lib/onlinepayments/sdk/domain/payment_product840_customer_account.rb
268
+ - lib/onlinepayments/sdk/domain/payment_product840_specific_output.rb
269
+ - lib/onlinepayments/sdk/domain/payment_product_display_hints.rb
270
+ - lib/onlinepayments/sdk/domain/payment_product_field.rb
271
+ - lib/onlinepayments/sdk/domain/payment_product_field_data_restrictions.rb
272
+ - lib/onlinepayments/sdk/domain/payment_product_field_display_element.rb
273
+ - lib/onlinepayments/sdk/domain/payment_product_field_display_hints.rb
274
+ - lib/onlinepayments/sdk/domain/payment_product_field_form_element.rb
275
+ - lib/onlinepayments/sdk/domain/payment_product_field_tooltip.rb
276
+ - lib/onlinepayments/sdk/domain/payment_product_field_validators.rb
277
+ - lib/onlinepayments/sdk/domain/payment_product_filter.rb
278
+ - lib/onlinepayments/sdk/domain/payment_product_filters_hosted_checkout.rb
279
+ - lib/onlinepayments/sdk/domain/payment_product_group.rb
280
+ - lib/onlinepayments/sdk/domain/payment_product_networks_response.rb
281
+ - lib/onlinepayments/sdk/domain/payment_references.rb
282
+ - lib/onlinepayments/sdk/domain/payment_response.rb
283
+ - lib/onlinepayments/sdk/domain/payment_status_output.rb
284
+ - lib/onlinepayments/sdk/domain/payout_error_response.rb
285
+ - lib/onlinepayments/sdk/domain/payout_output.rb
286
+ - lib/onlinepayments/sdk/domain/payout_response.rb
287
+ - lib/onlinepayments/sdk/domain/payout_result.rb
288
+ - lib/onlinepayments/sdk/domain/payout_status_output.rb
289
+ - lib/onlinepayments/sdk/domain/personal_information.rb
290
+ - lib/onlinepayments/sdk/domain/personal_information_token.rb
291
+ - lib/onlinepayments/sdk/domain/personal_name.rb
292
+ - lib/onlinepayments/sdk/domain/personal_name_token.rb
293
+ - lib/onlinepayments/sdk/domain/product_directory.rb
294
+ - lib/onlinepayments/sdk/domain/protection_eligibility.rb
295
+ - lib/onlinepayments/sdk/domain/range_validator.rb
296
+ - lib/onlinepayments/sdk/domain/redirect_data.rb
297
+ - lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb
298
+ - lib/onlinepayments/sdk/domain/redirect_payment_method_specific_output.rb
299
+ - lib/onlinepayments/sdk/domain/redirect_payment_product809_specific_input.rb
300
+ - lib/onlinepayments/sdk/domain/redirect_payment_product840_specific_input.rb
301
+ - lib/onlinepayments/sdk/domain/redirection_data.rb
302
+ - lib/onlinepayments/sdk/domain/refund_card_method_specific_output.rb
303
+ - lib/onlinepayments/sdk/domain/refund_e_wallet_method_specific_output.rb
304
+ - lib/onlinepayments/sdk/domain/refund_error_response.rb
305
+ - lib/onlinepayments/sdk/domain/refund_mobile_method_specific_output.rb
306
+ - lib/onlinepayments/sdk/domain/refund_output.rb
307
+ - lib/onlinepayments/sdk/domain/refund_payment_product840_customer_account.rb
308
+ - lib/onlinepayments/sdk/domain/refund_payment_product840_specific_output.rb
309
+ - lib/onlinepayments/sdk/domain/refund_redirect_method_specific_output.rb
310
+ - lib/onlinepayments/sdk/domain/refund_request.rb
311
+ - lib/onlinepayments/sdk/domain/refund_response.rb
312
+ - lib/onlinepayments/sdk/domain/refunds_response.rb
313
+ - lib/onlinepayments/sdk/domain/regular_expression_validator.rb
314
+ - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb
315
+ - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input_base.rb
316
+ - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_output.rb
317
+ - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_product771_specific_input.rb
318
+ - lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_product771_specific_input_base.rb
319
+ - lib/onlinepayments/sdk/domain/session_request.rb
320
+ - lib/onlinepayments/sdk/domain/session_response.rb
321
+ - lib/onlinepayments/sdk/domain/shipping.rb
322
+ - lib/onlinepayments/sdk/domain/shopping_cart.rb
323
+ - lib/onlinepayments/sdk/domain/shopping_cart_extension.rb
324
+ - lib/onlinepayments/sdk/domain/test_connection.rb
325
+ - lib/onlinepayments/sdk/domain/three_d_secure.rb
326
+ - lib/onlinepayments/sdk/domain/three_d_secure_base.rb
327
+ - lib/onlinepayments/sdk/domain/three_d_secure_data.rb
328
+ - lib/onlinepayments/sdk/domain/three_d_secure_results.rb
329
+ - lib/onlinepayments/sdk/domain/token_card.rb
330
+ - lib/onlinepayments/sdk/domain/token_card_data.rb
331
+ - lib/onlinepayments/sdk/domain/token_card_specific_input.rb
332
+ - lib/onlinepayments/sdk/domain/token_data.rb
333
+ - lib/onlinepayments/sdk/domain/token_e_wallet.rb
334
+ - lib/onlinepayments/sdk/domain/token_response.rb
335
+ - lib/onlinepayments/sdk/domain/value_mapping_element.rb
336
+ - lib/onlinepayments/sdk/endpoint_configuration.rb
337
+ - lib/onlinepayments/sdk/exceptions.rb
338
+ - lib/onlinepayments/sdk/factory.rb
339
+ - lib/onlinepayments/sdk/idempotence_exception.rb
340
+ - lib/onlinepayments/sdk/logging.rb
341
+ - lib/onlinepayments/sdk/logging/communicator_logger.rb
342
+ - lib/onlinepayments/sdk/logging/log_message_builder.rb
343
+ - lib/onlinepayments/sdk/logging/logging_capable.rb
344
+ - lib/onlinepayments/sdk/logging/logging_util.rb
345
+ - lib/onlinepayments/sdk/logging/request_log_message_builder.rb
346
+ - lib/onlinepayments/sdk/logging/response_log_message_builder.rb
347
+ - lib/onlinepayments/sdk/logging/ruby_communicator_logger.rb
348
+ - lib/onlinepayments/sdk/logging/stdout_communicator_logger.rb
349
+ - lib/onlinepayments/sdk/marshaller.rb
350
+ - lib/onlinepayments/sdk/marshaller_syntax_exception.rb
351
+ - lib/onlinepayments/sdk/merchant/hostedcheckout/hosted_checkout_client.rb
352
+ - lib/onlinepayments/sdk/merchant/hostedtokenization/hosted_tokenization_client.rb
353
+ - lib/onlinepayments/sdk/merchant/mandates/mandates_client.rb
354
+ - lib/onlinepayments/sdk/merchant/merchant_client.rb
355
+ - lib/onlinepayments/sdk/merchant/payments/payments_client.rb
356
+ - lib/onlinepayments/sdk/merchant/payouts/payouts_client.rb
357
+ - lib/onlinepayments/sdk/merchant/productgroups/get_product_group_params.rb
358
+ - lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb
359
+ - lib/onlinepayments/sdk/merchant/productgroups/product_groups_client.rb
360
+ - lib/onlinepayments/sdk/merchant/products/get_payment_product_networks_params.rb
361
+ - lib/onlinepayments/sdk/merchant/products/get_payment_product_params.rb
362
+ - lib/onlinepayments/sdk/merchant/products/get_payment_products_params.rb
363
+ - lib/onlinepayments/sdk/merchant/products/get_product_directory_params.rb
364
+ - lib/onlinepayments/sdk/merchant/products/products_client.rb
365
+ - lib/onlinepayments/sdk/merchant/services/services_client.rb
366
+ - lib/onlinepayments/sdk/merchant/sessions/sessions_client.rb
367
+ - lib/onlinepayments/sdk/merchant/tokens/tokens_client.rb
368
+ - lib/onlinepayments/sdk/meta_data_provider.rb
369
+ - lib/onlinepayments/sdk/modules.rb
370
+ - lib/onlinepayments/sdk/not_found_exception.rb
371
+ - lib/onlinepayments/sdk/param_request.rb
372
+ - lib/onlinepayments/sdk/payment_platform_exception.rb
373
+ - lib/onlinepayments/sdk/pooled_connection.rb
374
+ - lib/onlinepayments/sdk/proxy_configuration.rb
375
+ - lib/onlinepayments/sdk/reference_exception.rb
376
+ - lib/onlinepayments/sdk/request_header.rb
377
+ - lib/onlinepayments/sdk/request_param.rb
378
+ - lib/onlinepayments/sdk/response_exception.rb
379
+ - lib/onlinepayments/sdk/response_header.rb
380
+ - lib/onlinepayments/sdk/validation_exception.rb
381
+ - lib/onlinepayments/sdk/webhooks.rb
382
+ - lib/onlinepayments/sdk/webhooks/api_version_mismatch_exception.rb
383
+ - lib/onlinepayments/sdk/webhooks/in_memory_secret_key_store.rb
384
+ - lib/onlinepayments/sdk/webhooks/secret_key_not_available_exception.rb
385
+ - lib/onlinepayments/sdk/webhooks/secret_key_store.rb
386
+ - lib/onlinepayments/sdk/webhooks/signature_validation_exception.rb
387
+ - lib/onlinepayments/sdk/webhooks/webhooks.rb
388
+ - lib/onlinepayments/sdk/webhooks/webhooks_event.rb
389
+ - lib/onlinepayments/sdk/webhooks/webhooks_helper.rb
390
+ - lib/onlinepayments/sdk/webhooks/webhooks_helper_builder.rb
391
+ - onlinepayments-sdk-ruby.gemspec
392
+ homepage: https://github.com/wl-online-payments-direct/sdk-ruby
393
+ licenses:
394
+ - MIT
395
+ metadata: {}
396
+ post_install_message:
397
+ rdoc_options: []
398
+ require_paths:
399
+ - lib
400
+ required_ruby_version: !ruby/object:Gem::Requirement
401
+ requirements:
402
+ - - ">="
403
+ - !ruby/object:Gem::Version
404
+ version: '2.0'
405
+ required_rubygems_version: !ruby/object:Gem::Requirement
406
+ requirements:
407
+ - - ">="
408
+ - !ruby/object:Gem::Version
409
+ version: '0'
410
+ requirements: []
411
+ rubygems_version: 3.0.3
412
+ signing_key:
413
+ specification_version: 4
414
+ summary: SDK to communicate with the Online Payments platform using the Online Payments
415
+ Server API
416
+ test_files: []