conekta 6.0.0 → 6.0.2

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 (350) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Makefile +10 -1
  4. data/README.md +16 -52
  5. data/VERSION +1 -1
  6. data/conekta.gemspec +4 -3
  7. data/config-ruby.json +32 -0
  8. data/docs/ApiKeyCreateResponse.md +3 -3
  9. data/docs/BalancesApi.md +1 -1
  10. data/docs/ChargeOrderResponse.md +0 -2
  11. data/docs/ChargeRequest.md +0 -2
  12. data/docs/ChargeRequestPaymentMethod.md +2 -0
  13. data/docs/ChargeResponse.md +0 -2
  14. data/docs/ChargeUpdateRequest.md +18 -0
  15. data/docs/ChargesApi.md +76 -0
  16. data/docs/ChargesDataResponse.md +0 -2
  17. data/docs/Checkout.md +2 -2
  18. data/docs/CheckoutOrderTemplate.md +1 -1
  19. data/docs/CheckoutRequest.md +2 -2
  20. data/docs/CheckoutResponse.md +3 -3
  21. data/docs/CreateCustomerFiscalEntitiesResponse.md +1 -1
  22. data/docs/CustomerAddress.md +3 -3
  23. data/docs/CustomerFiscalEntitiesDataResponse.md +1 -1
  24. data/docs/CustomerFiscalEntitiesRequest.md +1 -1
  25. data/docs/CustomerResponse.md +10 -8
  26. data/docs/CustomerShippingContacts.md +3 -1
  27. data/docs/CustomerShippingContactsAddress.md +2 -2
  28. data/docs/CustomerShippingContactsDataResponse.md +2 -0
  29. data/docs/CustomerShippingContactsResponse.md +2 -0
  30. data/docs/CustomerShippingContactsResponseAddress.md +2 -2
  31. data/docs/CustomerUpdateFiscalEntitiesRequest.md +1 -1
  32. data/docs/CustomersApi.md +1 -1
  33. data/docs/CustomersResponse.md +3 -3
  34. data/docs/EventResponse.md +1 -1
  35. data/docs/FiscalEntityAddress.md +30 -0
  36. data/docs/LogResponse.md +5 -5
  37. data/docs/LogsResponseData.md +5 -5
  38. data/docs/{CustomerInfoResponse.md → OrderCustomerInfoResponse.md} +4 -2
  39. data/docs/OrderFiscalEntityAddressResponse.md +32 -0
  40. data/docs/OrderFiscalEntityRequest.md +28 -0
  41. data/docs/OrderFiscalEntityResponse.md +34 -0
  42. data/docs/OrderNextActionResponse.md +20 -0
  43. data/docs/OrderNextActionResponseRedirectToUrl.md +20 -0
  44. data/docs/OrderRequest.md +7 -1
  45. data/docs/OrderResponse.md +3 -1
  46. data/docs/OrderResponseCustomerInfo.md +4 -2
  47. data/docs/OrderResponseShippingContact.md +8 -6
  48. data/docs/OrderTaxRequest.md +1 -1
  49. data/docs/OrderUpdateFiscalEntityRequest.md +28 -0
  50. data/docs/OrderUpdateRequest.md +2 -0
  51. data/docs/PaymentLinkApi.md +1 -1
  52. data/docs/Product.md +3 -3
  53. data/docs/ShippingRequest.md +1 -1
  54. data/docs/TokenResponseCheckout.md +1 -1
  55. data/docs/TransactionsApi.md +9 -3
  56. data/docs/UpdateCustomerFiscalEntitiesResponse.md +1 -1
  57. data/docs/WebhookLog.md +1 -1
  58. data/docs/WebhookResponse.md +1 -1
  59. data/docs/WebhookUpdateRequest.md +2 -2
  60. data/lib/conekta/api/antifraud_api.rb +1 -1
  61. data/lib/conekta/api/api_keys_api.rb +1 -1
  62. data/lib/conekta/api/balances_api.rb +2 -2
  63. data/lib/conekta/api/charges_api.rb +83 -1
  64. data/lib/conekta/api/companies_api.rb +1 -1
  65. data/lib/conekta/api/customers_api.rb +1 -1
  66. data/lib/conekta/api/discounts_api.rb +1 -1
  67. data/lib/conekta/api/events_api.rb +1 -1
  68. data/lib/conekta/api/logs_api.rb +1 -1
  69. data/lib/conekta/api/orders_api.rb +1 -1
  70. data/lib/conekta/api/payment_link_api.rb +1 -1
  71. data/lib/conekta/api/payment_methods_api.rb +1 -1
  72. data/lib/conekta/api/plans_api.rb +1 -1
  73. data/lib/conekta/api/products_api.rb +1 -1
  74. data/lib/conekta/api/shipping_contacts_api.rb +1 -1
  75. data/lib/conekta/api/shippings_api.rb +1 -1
  76. data/lib/conekta/api/subscriptions_api.rb +1 -1
  77. data/lib/conekta/api/taxes_api.rb +1 -1
  78. data/lib/conekta/api/tokens_api.rb +1 -1
  79. data/lib/conekta/api/transactions_api.rb +13 -4
  80. data/lib/conekta/api/transfers_api.rb +1 -1
  81. data/lib/conekta/api/webhook_keys_api.rb +1 -1
  82. data/lib/conekta/api/webhooks_api.rb +1 -1
  83. data/lib/conekta/api_client.rb +40 -37
  84. data/lib/conekta/api_error.rb +1 -1
  85. data/lib/conekta/configuration.rb +13 -10
  86. data/lib/conekta/models/api_key_create_response.rb +28 -34
  87. data/lib/conekta/models/api_key_create_response_all_of.rb +14 -19
  88. data/lib/conekta/models/api_key_request.rb +16 -19
  89. data/lib/conekta/models/api_key_response.rb +14 -19
  90. data/lib/conekta/models/api_key_response_on_delete.rb +14 -19
  91. data/lib/conekta/models/api_key_update_request.rb +14 -19
  92. data/lib/conekta/models/balance_common_field.rb +14 -19
  93. data/lib/conekta/models/balance_response.rb +14 -19
  94. data/lib/conekta/models/blacklist_rule_response.rb +14 -19
  95. data/lib/conekta/models/charge_data_payment_method_bank_transfer_response.rb +14 -19
  96. data/lib/conekta/models/charge_data_payment_method_card_response.rb +14 -43
  97. data/lib/conekta/models/charge_data_payment_method_cash_response.rb +14 -19
  98. data/lib/conekta/models/charge_order_response.rb +15 -29
  99. data/lib/conekta/models/charge_order_response_payment_method.rb +1 -1
  100. data/lib/conekta/models/charge_request.rb +17 -30
  101. data/lib/conekta/models/charge_request_payment_method.rb +27 -44
  102. data/lib/conekta/models/charge_response.rb +15 -29
  103. data/lib/conekta/models/charge_response_channel.rb +14 -19
  104. data/lib/conekta/models/charge_response_payment_method.rb +1 -1
  105. data/lib/conekta/models/charge_response_refunds.rb +18 -20
  106. data/lib/conekta/models/charge_response_refunds_all_of.rb +14 -19
  107. data/lib/conekta/models/charge_response_refunds_data.rb +22 -19
  108. data/lib/conekta/models/charge_update_request.rb +216 -0
  109. data/lib/conekta/models/charges_data_response.rb +15 -29
  110. data/lib/conekta/models/checkout.rb +26 -19
  111. data/lib/conekta/models/checkout_order_template.rb +23 -20
  112. data/lib/conekta/models/checkout_order_template_customer_info.rb +2 -2
  113. data/lib/conekta/models/checkout_request.rb +16 -19
  114. data/lib/conekta/models/checkout_response.rb +22 -19
  115. data/lib/conekta/models/checkouts_response.rb +18 -20
  116. data/lib/conekta/models/checkouts_response_all_of.rb +14 -19
  117. data/lib/conekta/models/company_fiscal_info_address_response.rb +14 -19
  118. data/lib/conekta/models/company_fiscal_info_response.rb +14 -19
  119. data/lib/conekta/models/company_payout_destination_response.rb +14 -19
  120. data/lib/conekta/models/company_response.rb +14 -19
  121. data/lib/conekta/models/create_customer_fiscal_entities_response.rb +23 -21
  122. data/lib/conekta/models/create_customer_fiscal_entities_response_all_of.rb +20 -19
  123. data/lib/conekta/models/create_customer_payment_methods_request.rb +2 -2
  124. data/lib/conekta/models/create_customer_payment_methods_response.rb +1 -1
  125. data/lib/conekta/models/create_risk_rules_data.rb +20 -19
  126. data/lib/conekta/models/customer.rb +25 -20
  127. data/lib/conekta/models/customer_address.rb +22 -19
  128. data/lib/conekta/models/customer_antifraud_info.rb +14 -19
  129. data/lib/conekta/models/customer_antifraud_info_response.rb +14 -19
  130. data/lib/conekta/models/customer_fiscal_entities_data_response.rb +23 -21
  131. data/lib/conekta/models/customer_fiscal_entities_request.rb +17 -20
  132. data/lib/conekta/models/customer_fiscal_entities_request_address.rb +22 -19
  133. data/lib/conekta/models/customer_fiscal_entities_response.rb +18 -20
  134. data/lib/conekta/models/customer_fiscal_entities_response_all_of.rb +14 -19
  135. data/lib/conekta/models/customer_info.rb +20 -19
  136. data/lib/conekta/models/customer_info_just_customer_id.rb +16 -19
  137. data/lib/conekta/models/customer_info_just_customer_id_response.rb +14 -19
  138. data/lib/conekta/models/customer_payment_method_request.rb +16 -19
  139. data/lib/conekta/models/customer_payment_methods.rb +14 -19
  140. data/lib/conekta/models/customer_payment_methods_data.rb +1 -1
  141. data/lib/conekta/models/customer_payment_methods_request.rb +2 -2
  142. data/lib/conekta/models/customer_payment_methods_response.rb +18 -20
  143. data/lib/conekta/models/customer_response.rb +67 -20
  144. data/lib/conekta/models/customer_response_shipping_contacts.rb +18 -20
  145. data/lib/conekta/models/customer_response_shipping_contacts_all_of.rb +14 -19
  146. data/lib/conekta/models/customer_shipping_contacts.rb +52 -24
  147. data/lib/conekta/models/customer_shipping_contacts_address.rb +14 -19
  148. data/lib/conekta/models/customer_shipping_contacts_data_response.rb +55 -22
  149. data/lib/conekta/models/customer_shipping_contacts_data_response_all_of.rb +20 -19
  150. data/lib/conekta/models/customer_shipping_contacts_response.rb +46 -20
  151. data/lib/conekta/models/customer_shipping_contacts_response_address.rb +15 -19
  152. data/lib/conekta/models/customer_update_fiscal_entities_request.rb +15 -20
  153. data/lib/conekta/models/customer_update_shipping_contacts.rb +14 -19
  154. data/lib/conekta/models/customers_response.rb +34 -36
  155. data/lib/conekta/models/customers_response_all_of.rb +14 -19
  156. data/lib/conekta/models/delete_api_keys_response.rb +15 -21
  157. data/lib/conekta/models/delete_api_keys_response_all_of.rb +14 -19
  158. data/lib/conekta/models/deleted_blacklist_rule_response.rb +14 -19
  159. data/lib/conekta/models/deleted_whitelist_rule_response.rb +14 -19
  160. data/lib/conekta/models/details.rb +14 -19
  161. data/lib/conekta/models/details_error.rb +14 -19
  162. data/lib/conekta/models/discount_lines_data_response.rb +26 -19
  163. data/lib/conekta/models/discount_lines_response.rb +26 -20
  164. data/lib/conekta/models/discount_lines_response_all_of.rb +20 -19
  165. data/lib/conekta/models/email_checkout_request.rb +16 -19
  166. data/lib/conekta/models/error.rb +15 -21
  167. data/lib/conekta/models/error_all_of.rb +14 -19
  168. data/lib/conekta/models/event_response.rb +19 -20
  169. data/lib/conekta/models/events_resend_response.rb +19 -20
  170. data/lib/conekta/models/fiscal_entity_address.rb +312 -0
  171. data/lib/conekta/models/get_api_keys_response.rb +18 -20
  172. data/lib/conekta/models/get_api_keys_response_all_of.rb +14 -19
  173. data/lib/conekta/models/get_charges_response.rb +18 -20
  174. data/lib/conekta/models/get_charges_response_all_of.rb +14 -19
  175. data/lib/conekta/models/get_companies_response.rb +18 -20
  176. data/lib/conekta/models/get_companies_response_all_of.rb +14 -19
  177. data/lib/conekta/models/get_customer_payment_method_data_response.rb +1 -1
  178. data/lib/conekta/models/get_events_response.rb +18 -20
  179. data/lib/conekta/models/get_events_response_all_of.rb +14 -19
  180. data/lib/conekta/models/get_order_discount_lines_response.rb +18 -20
  181. data/lib/conekta/models/get_order_discount_lines_response_all_of.rb +14 -19
  182. data/lib/conekta/models/get_orders_response.rb +20 -19
  183. data/lib/conekta/models/get_payment_method_response.rb +18 -20
  184. data/lib/conekta/models/get_payment_method_response_all_of.rb +14 -19
  185. data/lib/conekta/models/get_plans_response.rb +18 -20
  186. data/lib/conekta/models/get_plans_response_all_of.rb +14 -19
  187. data/lib/conekta/models/get_transactions_response.rb +18 -20
  188. data/lib/conekta/models/get_transactions_response_all_of.rb +14 -19
  189. data/lib/conekta/models/get_transfers_response.rb +18 -20
  190. data/lib/conekta/models/get_transfers_response_all_of.rb +14 -19
  191. data/lib/conekta/models/get_webhook_keys_response.rb +18 -20
  192. data/lib/conekta/models/get_webhook_keys_response_all_of.rb +14 -19
  193. data/lib/conekta/models/get_webhooks_response.rb +18 -20
  194. data/lib/conekta/models/get_webhooks_response_all_of.rb +14 -19
  195. data/lib/conekta/models/log_response.rb +20 -19
  196. data/lib/conekta/models/logs_response.rb +14 -19
  197. data/lib/conekta/models/logs_response_data.rb +14 -19
  198. data/lib/conekta/models/order_capture_request.rb +16 -19
  199. data/lib/conekta/models/{customer_info_response.rb → order_customer_info_response.rb} +29 -23
  200. data/lib/conekta/models/order_discount_lines_request.rb +20 -19
  201. data/lib/conekta/models/{order_response_fiscal_entity_address.rb → order_fiscal_entity_address_response.rb} +47 -34
  202. data/lib/conekta/models/{order_response_fiscal_entity_address_all_of.rb → order_fiscal_entity_address_response_all_of.rb} +17 -22
  203. data/lib/conekta/models/order_fiscal_entity_request.rb +295 -0
  204. data/lib/conekta/models/order_fiscal_entity_response.rb +347 -0
  205. data/lib/conekta/models/{order_response_fiscal_entity.rb → order_next_action_response.rb} +32 -53
  206. data/lib/conekta/models/order_next_action_response_redirect_to_url.rb +226 -0
  207. data/lib/conekta/models/order_refund_request.rb +18 -19
  208. data/lib/conekta/models/order_request.rb +58 -24
  209. data/lib/conekta/models/order_request_customer_info.rb +2 -2
  210. data/lib/conekta/models/order_response.rb +31 -22
  211. data/lib/conekta/models/order_response_charges.rb +18 -20
  212. data/lib/conekta/models/order_response_charges_all_of.rb +14 -19
  213. data/lib/conekta/models/order_response_checkout.rb +19 -20
  214. data/lib/conekta/models/order_response_customer_info.rb +33 -28
  215. data/lib/conekta/models/order_response_customer_info_all_of.rb +14 -19
  216. data/lib/conekta/models/order_response_discount_lines.rb +18 -20
  217. data/lib/conekta/models/order_response_discount_lines_all_of.rb +14 -19
  218. data/lib/conekta/models/order_response_products.rb +18 -20
  219. data/lib/conekta/models/order_response_products_all_of.rb +14 -19
  220. data/lib/conekta/models/order_response_shipping_contact.rb +74 -49
  221. data/lib/conekta/models/order_response_shipping_contact_all_of.rb +14 -19
  222. data/lib/conekta/models/order_tax_request.rb +23 -20
  223. data/lib/conekta/models/order_update_fiscal_entity_request.rb +295 -0
  224. data/lib/conekta/models/order_update_request.rb +29 -21
  225. data/lib/conekta/models/order_update_request_customer_info.rb +2 -2
  226. data/lib/conekta/models/orders_response.rb +16 -19
  227. data/lib/conekta/models/page.rb +14 -19
  228. data/lib/conekta/models/pagination.rb +18 -19
  229. data/lib/conekta/models/payment_method.rb +16 -19
  230. data/lib/conekta/models/payment_method_bank_transfer.rb +16 -20
  231. data/lib/conekta/models/payment_method_card.rb +16 -44
  232. data/lib/conekta/models/payment_method_card_request.rb +19 -21
  233. data/lib/conekta/models/payment_method_card_request_all_of.rb +14 -19
  234. data/lib/conekta/models/payment_method_card_response.rb +22 -20
  235. data/lib/conekta/models/payment_method_card_response_all_of.rb +14 -19
  236. data/lib/conekta/models/payment_method_cash.rb +16 -20
  237. data/lib/conekta/models/payment_method_cash_request.rb +17 -21
  238. data/lib/conekta/models/payment_method_cash_request_all_of.rb +14 -19
  239. data/lib/conekta/models/payment_method_cash_response.rb +22 -20
  240. data/lib/conekta/models/payment_method_cash_response_all_of.rb +14 -19
  241. data/lib/conekta/models/payment_method_response.rb +22 -19
  242. data/lib/conekta/models/payment_method_spei_recurrent.rb +23 -21
  243. data/lib/conekta/models/payment_method_spei_recurrent_all_of.rb +14 -19
  244. data/lib/conekta/models/payment_method_spei_request.rb +17 -21
  245. data/lib/conekta/models/plan_request.rb +27 -20
  246. data/lib/conekta/models/plan_response.rb +19 -20
  247. data/lib/conekta/models/plan_update_request.rb +24 -21
  248. data/lib/conekta/models/product.rb +30 -21
  249. data/lib/conekta/models/product_data_response.rb +31 -23
  250. data/lib/conekta/models/product_data_response_all_of.rb +14 -19
  251. data/lib/conekta/models/product_order_response.rb +31 -23
  252. data/lib/conekta/models/product_order_response_all_of.rb +14 -19
  253. data/lib/conekta/models/risk_rules.rb +14 -19
  254. data/lib/conekta/models/risk_rules_data.rb +14 -19
  255. data/lib/conekta/models/risk_rules_list.rb +19 -21
  256. data/lib/conekta/models/shipping_order_response.rb +21 -21
  257. data/lib/conekta/models/shipping_request.rb +21 -20
  258. data/lib/conekta/models/sms_checkout_request.rb +16 -19
  259. data/lib/conekta/models/subscription_events_response.rb +18 -20
  260. data/lib/conekta/models/subscription_request.rb +16 -19
  261. data/lib/conekta/models/subscription_response.rb +14 -19
  262. data/lib/conekta/models/subscription_update_request.rb +14 -19
  263. data/lib/conekta/models/token.rb +14 -19
  264. data/lib/conekta/models/token_card.rb +24 -19
  265. data/lib/conekta/models/token_checkout.rb +14 -19
  266. data/lib/conekta/models/token_response.rb +22 -19
  267. data/lib/conekta/models/token_response_checkout.rb +14 -19
  268. data/lib/conekta/models/transaction_response.rb +36 -19
  269. data/lib/conekta/models/transfer_destination_response.rb +14 -19
  270. data/lib/conekta/models/transfer_method_response.rb +14 -19
  271. data/lib/conekta/models/transfer_response.rb +19 -20
  272. data/lib/conekta/models/transfers_response.rb +19 -20
  273. data/lib/conekta/models/update_customer.rb +19 -20
  274. data/lib/conekta/models/update_customer_antifraud_info.rb +14 -19
  275. data/lib/conekta/models/update_customer_fiscal_entities_response.rb +24 -22
  276. data/lib/conekta/models/update_customer_fiscal_entities_response_all_of.rb +20 -19
  277. data/lib/conekta/models/update_customer_payment_methods_response.rb +1 -1
  278. data/lib/conekta/models/update_order_discount_lines_request.rb +19 -20
  279. data/lib/conekta/models/update_order_tax_request.rb +29 -22
  280. data/lib/conekta/models/update_order_tax_response.rb +26 -22
  281. data/lib/conekta/models/update_order_tax_response_all_of.rb +14 -19
  282. data/lib/conekta/models/update_payment_methods.rb +14 -19
  283. data/lib/conekta/models/update_product.rb +29 -22
  284. data/lib/conekta/models/webhook_key_create_response.rb +14 -19
  285. data/lib/conekta/models/webhook_key_delete_response.rb +14 -19
  286. data/lib/conekta/models/webhook_key_request.rb +14 -19
  287. data/lib/conekta/models/webhook_key_response.rb +14 -19
  288. data/lib/conekta/models/webhook_key_update_request.rb +14 -19
  289. data/lib/conekta/models/webhook_log.rb +19 -20
  290. data/lib/conekta/models/webhook_request.rb +16 -19
  291. data/lib/conekta/models/webhook_response.rb +14 -19
  292. data/lib/conekta/models/webhook_update_request.rb +24 -27
  293. data/lib/conekta/models/whitelistlist_rule_response.rb +14 -19
  294. data/lib/conekta/version.rb +2 -2
  295. data/lib/conekta.rb +10 -47
  296. data/spec/api/customers_api_spec.rb +2 -2
  297. data/spec/api/orders_api_spec.rb +27 -1
  298. data/spec/api_client_spec.rb +1 -1
  299. data/spec/configuration_spec.rb +1 -1
  300. data/spec/spec_helper.rb +1 -8
  301. data/ssl_data/ca_bundle.crt +4039 -0
  302. data/templates/ruby/CUSTOM_VERSION.mustache +1 -0
  303. data/templates/ruby/api_client.mustache +256 -0
  304. data/templates/ruby/configuration.mustache +481 -0
  305. metadata +45 -71
  306. data/docs/ApiKeyCreateResponseAllOf.md +0 -18
  307. data/docs/ChargeDataPaymentMethodBankTransferResponse.md +0 -48
  308. data/docs/ChargeDataPaymentMethodCardResponse.md +0 -38
  309. data/docs/ChargeDataPaymentMethodCashResponse.md +0 -32
  310. data/docs/ChargeResponseRefundsAllOf.md +0 -18
  311. data/docs/CheckoutsResponseAllOf.md +0 -18
  312. data/docs/CreateCustomerFiscalEntitiesResponseAllOf.md +0 -26
  313. data/docs/CustomerFiscalEntitiesRequestAddress.md +0 -32
  314. data/docs/CustomerFiscalEntitiesResponseAllOf.md +0 -18
  315. data/docs/CustomerPaymentMethods.md +0 -18
  316. data/docs/CustomerResponseShippingContactsAllOf.md +0 -18
  317. data/docs/CustomerShippingContactsDataResponseAllOf.md +0 -22
  318. data/docs/CustomersResponseAllOf.md +0 -18
  319. data/docs/DeleteApiKeysResponseAllOf.md +0 -18
  320. data/docs/DiscountLinesResponseAllOf.md +0 -22
  321. data/docs/ErrorAllOf.md +0 -22
  322. data/docs/GetApiKeysResponseAllOf.md +0 -18
  323. data/docs/GetChargesResponseAllOf.md +0 -18
  324. data/docs/GetCompaniesResponseAllOf.md +0 -18
  325. data/docs/GetEventsResponseAllOf.md +0 -18
  326. data/docs/GetOrderDiscountLinesResponseAllOf.md +0 -18
  327. data/docs/GetPaymentMethodResponseAllOf.md +0 -18
  328. data/docs/GetPlansResponseAllOf.md +0 -18
  329. data/docs/GetTransactionsResponseAllOf.md +0 -18
  330. data/docs/GetTransfersResponseAllOf.md +0 -18
  331. data/docs/GetWebhookKeysResponseAllOf.md +0 -18
  332. data/docs/GetWebhooksResponseAllOf.md +0 -18
  333. data/docs/OrderResponseChargesAllOf.md +0 -18
  334. data/docs/OrderResponseCustomerInfoAllOf.md +0 -18
  335. data/docs/OrderResponseDiscountLinesAllOf.md +0 -18
  336. data/docs/OrderResponseFiscalEntity.md +0 -24
  337. data/docs/OrderResponseFiscalEntityAddress.md +0 -34
  338. data/docs/OrderResponseFiscalEntityAddressAllOf.md +0 -18
  339. data/docs/OrderResponseProductsAllOf.md +0 -18
  340. data/docs/OrderResponseShippingContactAllOf.md +0 -22
  341. data/docs/PaymentMethodCardRequestAllOf.md +0 -18
  342. data/docs/PaymentMethodCardResponseAllOf.md +0 -36
  343. data/docs/PaymentMethodCashRequestAllOf.md +0 -18
  344. data/docs/PaymentMethodCashResponseAllOf.md +0 -26
  345. data/docs/PaymentMethodSpeiRecurrentAllOf.md +0 -20
  346. data/docs/ProductDataResponseAllOf.md +0 -22
  347. data/docs/ProductOrderResponseAllOf.md +0 -22
  348. data/docs/RiskRules.md +0 -18
  349. data/docs/UpdateCustomerFiscalEntitiesResponseAllOf.md +0 -26
  350. data/docs/UpdateOrderTaxResponseAllOf.md +0 -22
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conekta
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Conekta
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-01 00:00:00.000000000 Z
11
+ date: 2023-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -64,7 +64,7 @@ dependencies:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: 3.6.0
67
- description: "%q{Ruby library for https://api.conekta.io}"
67
+ description: Ruby library for https://api.conekta.io
68
68
  email:
69
69
  - core@conekta.com
70
70
  executables: []
@@ -83,9 +83,9 @@ files:
83
83
  - VERSION
84
84
  - conekta.gemspec
85
85
  - conekta.png
86
+ - config-ruby.json
86
87
  - docs/AntifraudApi.md
87
88
  - docs/ApiKeyCreateResponse.md
88
- - docs/ApiKeyCreateResponseAllOf.md
89
89
  - docs/ApiKeyRequest.md
90
90
  - docs/ApiKeyResponse.md
91
91
  - docs/ApiKeyResponseOnDelete.md
@@ -95,9 +95,6 @@ files:
95
95
  - docs/BalanceResponse.md
96
96
  - docs/BalancesApi.md
97
97
  - docs/BlacklistRuleResponse.md
98
- - docs/ChargeDataPaymentMethodBankTransferResponse.md
99
- - docs/ChargeDataPaymentMethodCardResponse.md
100
- - docs/ChargeDataPaymentMethodCashResponse.md
101
98
  - docs/ChargeOrderResponse.md
102
99
  - docs/ChargeOrderResponsePaymentMethod.md
103
100
  - docs/ChargeRequest.md
@@ -106,8 +103,8 @@ files:
106
103
  - docs/ChargeResponseChannel.md
107
104
  - docs/ChargeResponsePaymentMethod.md
108
105
  - docs/ChargeResponseRefunds.md
109
- - docs/ChargeResponseRefundsAllOf.md
110
106
  - docs/ChargeResponseRefundsData.md
107
+ - docs/ChargeUpdateRequest.md
111
108
  - docs/ChargesApi.md
112
109
  - docs/ChargesDataResponse.md
113
110
  - docs/Checkout.md
@@ -116,14 +113,12 @@ files:
116
113
  - docs/CheckoutRequest.md
117
114
  - docs/CheckoutResponse.md
118
115
  - docs/CheckoutsResponse.md
119
- - docs/CheckoutsResponseAllOf.md
120
116
  - docs/CompaniesApi.md
121
117
  - docs/CompanyFiscalInfoAddressResponse.md
122
118
  - docs/CompanyFiscalInfoResponse.md
123
119
  - docs/CompanyPayoutDestinationResponse.md
124
120
  - docs/CompanyResponse.md
125
121
  - docs/CreateCustomerFiscalEntitiesResponse.md
126
- - docs/CreateCustomerFiscalEntitiesResponseAllOf.md
127
122
  - docs/CreateCustomerPaymentMethodsRequest.md
128
123
  - docs/CreateCustomerPaymentMethodsResponse.md
129
124
  - docs/CreateRiskRulesData.md
@@ -133,97 +128,76 @@ files:
133
128
  - docs/CustomerAntifraudInfoResponse.md
134
129
  - docs/CustomerFiscalEntitiesDataResponse.md
135
130
  - docs/CustomerFiscalEntitiesRequest.md
136
- - docs/CustomerFiscalEntitiesRequestAddress.md
137
131
  - docs/CustomerFiscalEntitiesResponse.md
138
- - docs/CustomerFiscalEntitiesResponseAllOf.md
139
132
  - docs/CustomerInfo.md
140
133
  - docs/CustomerInfoJustCustomerId.md
141
134
  - docs/CustomerInfoJustCustomerIdResponse.md
142
- - docs/CustomerInfoResponse.md
143
135
  - docs/CustomerPaymentMethodRequest.md
144
- - docs/CustomerPaymentMethods.md
145
136
  - docs/CustomerPaymentMethodsData.md
146
137
  - docs/CustomerPaymentMethodsRequest.md
147
138
  - docs/CustomerPaymentMethodsResponse.md
148
139
  - docs/CustomerResponse.md
149
140
  - docs/CustomerResponseShippingContacts.md
150
- - docs/CustomerResponseShippingContactsAllOf.md
151
141
  - docs/CustomerShippingContacts.md
152
142
  - docs/CustomerShippingContactsAddress.md
153
143
  - docs/CustomerShippingContactsDataResponse.md
154
- - docs/CustomerShippingContactsDataResponseAllOf.md
155
144
  - docs/CustomerShippingContactsResponse.md
156
145
  - docs/CustomerShippingContactsResponseAddress.md
157
146
  - docs/CustomerUpdateFiscalEntitiesRequest.md
158
147
  - docs/CustomerUpdateShippingContacts.md
159
148
  - docs/CustomersApi.md
160
149
  - docs/CustomersResponse.md
161
- - docs/CustomersResponseAllOf.md
162
150
  - docs/DeleteApiKeysResponse.md
163
- - docs/DeleteApiKeysResponseAllOf.md
164
151
  - docs/DeletedBlacklistRuleResponse.md
165
152
  - docs/DeletedWhitelistRuleResponse.md
166
153
  - docs/Details.md
167
154
  - docs/DetailsError.md
168
155
  - docs/DiscountLinesDataResponse.md
169
156
  - docs/DiscountLinesResponse.md
170
- - docs/DiscountLinesResponseAllOf.md
171
157
  - docs/DiscountsApi.md
172
158
  - docs/EmailCheckoutRequest.md
173
159
  - docs/Error.md
174
- - docs/ErrorAllOf.md
175
160
  - docs/EventResponse.md
176
161
  - docs/EventsApi.md
177
162
  - docs/EventsResendResponse.md
163
+ - docs/FiscalEntityAddress.md
178
164
  - docs/GetApiKeysResponse.md
179
- - docs/GetApiKeysResponseAllOf.md
180
165
  - docs/GetChargesResponse.md
181
- - docs/GetChargesResponseAllOf.md
182
166
  - docs/GetCompaniesResponse.md
183
- - docs/GetCompaniesResponseAllOf.md
184
167
  - docs/GetCustomerPaymentMethodDataResponse.md
185
168
  - docs/GetEventsResponse.md
186
- - docs/GetEventsResponseAllOf.md
187
169
  - docs/GetOrderDiscountLinesResponse.md
188
- - docs/GetOrderDiscountLinesResponseAllOf.md
189
170
  - docs/GetOrdersResponse.md
190
171
  - docs/GetPaymentMethodResponse.md
191
- - docs/GetPaymentMethodResponseAllOf.md
192
172
  - docs/GetPlansResponse.md
193
- - docs/GetPlansResponseAllOf.md
194
173
  - docs/GetTransactionsResponse.md
195
- - docs/GetTransactionsResponseAllOf.md
196
174
  - docs/GetTransfersResponse.md
197
- - docs/GetTransfersResponseAllOf.md
198
175
  - docs/GetWebhookKeysResponse.md
199
- - docs/GetWebhookKeysResponseAllOf.md
200
176
  - docs/GetWebhooksResponse.md
201
- - docs/GetWebhooksResponseAllOf.md
202
177
  - docs/LogResponse.md
203
178
  - docs/LogsApi.md
204
179
  - docs/LogsResponse.md
205
180
  - docs/LogsResponseData.md
206
181
  - docs/OrderCaptureRequest.md
182
+ - docs/OrderCustomerInfoResponse.md
207
183
  - docs/OrderDiscountLinesRequest.md
184
+ - docs/OrderFiscalEntityAddressResponse.md
185
+ - docs/OrderFiscalEntityRequest.md
186
+ - docs/OrderFiscalEntityResponse.md
187
+ - docs/OrderNextActionResponse.md
188
+ - docs/OrderNextActionResponseRedirectToUrl.md
208
189
  - docs/OrderRefundRequest.md
209
190
  - docs/OrderRequest.md
210
191
  - docs/OrderRequestCustomerInfo.md
211
192
  - docs/OrderResponse.md
212
193
  - docs/OrderResponseCharges.md
213
- - docs/OrderResponseChargesAllOf.md
214
194
  - docs/OrderResponseCheckout.md
215
195
  - docs/OrderResponseCustomerInfo.md
216
- - docs/OrderResponseCustomerInfoAllOf.md
217
196
  - docs/OrderResponseDiscountLines.md
218
- - docs/OrderResponseDiscountLinesAllOf.md
219
- - docs/OrderResponseFiscalEntity.md
220
- - docs/OrderResponseFiscalEntityAddress.md
221
- - docs/OrderResponseFiscalEntityAddressAllOf.md
222
197
  - docs/OrderResponseProducts.md
223
- - docs/OrderResponseProductsAllOf.md
224
198
  - docs/OrderResponseShippingContact.md
225
- - docs/OrderResponseShippingContactAllOf.md
226
199
  - docs/OrderTaxRequest.md
200
+ - docs/OrderUpdateFiscalEntityRequest.md
227
201
  - docs/OrderUpdateRequest.md
228
202
  - docs/OrderUpdateRequestCustomerInfo.md
229
203
  - docs/OrdersApi.md
@@ -235,17 +209,12 @@ files:
235
209
  - docs/PaymentMethodBankTransfer.md
236
210
  - docs/PaymentMethodCard.md
237
211
  - docs/PaymentMethodCardRequest.md
238
- - docs/PaymentMethodCardRequestAllOf.md
239
212
  - docs/PaymentMethodCardResponse.md
240
- - docs/PaymentMethodCardResponseAllOf.md
241
213
  - docs/PaymentMethodCash.md
242
214
  - docs/PaymentMethodCashRequest.md
243
- - docs/PaymentMethodCashRequestAllOf.md
244
215
  - docs/PaymentMethodCashResponse.md
245
- - docs/PaymentMethodCashResponseAllOf.md
246
216
  - docs/PaymentMethodResponse.md
247
217
  - docs/PaymentMethodSpeiRecurrent.md
248
- - docs/PaymentMethodSpeiRecurrentAllOf.md
249
218
  - docs/PaymentMethodSpeiRequest.md
250
219
  - docs/PaymentMethodsApi.md
251
220
  - docs/PlanRequest.md
@@ -254,11 +223,8 @@ files:
254
223
  - docs/PlansApi.md
255
224
  - docs/Product.md
256
225
  - docs/ProductDataResponse.md
257
- - docs/ProductDataResponseAllOf.md
258
226
  - docs/ProductOrderResponse.md
259
- - docs/ProductOrderResponseAllOf.md
260
227
  - docs/ProductsApi.md
261
- - docs/RiskRules.md
262
228
  - docs/RiskRulesData.md
263
229
  - docs/RiskRulesList.md
264
230
  - docs/ShippingContactsApi.md
@@ -288,12 +254,10 @@ files:
288
254
  - docs/UpdateCustomer.md
289
255
  - docs/UpdateCustomerAntifraudInfo.md
290
256
  - docs/UpdateCustomerFiscalEntitiesResponse.md
291
- - docs/UpdateCustomerFiscalEntitiesResponseAllOf.md
292
257
  - docs/UpdateCustomerPaymentMethodsResponse.md
293
258
  - docs/UpdateOrderDiscountLinesRequest.md
294
259
  - docs/UpdateOrderTaxRequest.md
295
260
  - docs/UpdateOrderTaxResponse.md
296
- - docs/UpdateOrderTaxResponseAllOf.md
297
261
  - docs/UpdatePaymentMethods.md
298
262
  - docs/UpdateProduct.md
299
263
  - docs/WebhookKeyCreateResponse.md
@@ -357,6 +321,7 @@ files:
357
321
  - lib/conekta/models/charge_response_refunds.rb
358
322
  - lib/conekta/models/charge_response_refunds_all_of.rb
359
323
  - lib/conekta/models/charge_response_refunds_data.rb
324
+ - lib/conekta/models/charge_update_request.rb
360
325
  - lib/conekta/models/charges_data_response.rb
361
326
  - lib/conekta/models/checkout.rb
362
327
  - lib/conekta/models/checkout_order_template.rb
@@ -386,7 +351,6 @@ files:
386
351
  - lib/conekta/models/customer_info.rb
387
352
  - lib/conekta/models/customer_info_just_customer_id.rb
388
353
  - lib/conekta/models/customer_info_just_customer_id_response.rb
389
- - lib/conekta/models/customer_info_response.rb
390
354
  - lib/conekta/models/customer_payment_method_request.rb
391
355
  - lib/conekta/models/customer_payment_methods.rb
392
356
  - lib/conekta/models/customer_payment_methods_data.rb
@@ -419,6 +383,7 @@ files:
419
383
  - lib/conekta/models/error_all_of.rb
420
384
  - lib/conekta/models/event_response.rb
421
385
  - lib/conekta/models/events_resend_response.rb
386
+ - lib/conekta/models/fiscal_entity_address.rb
422
387
  - lib/conekta/models/get_api_keys_response.rb
423
388
  - lib/conekta/models/get_api_keys_response_all_of.rb
424
389
  - lib/conekta/models/get_charges_response.rb
@@ -447,7 +412,14 @@ files:
447
412
  - lib/conekta/models/logs_response.rb
448
413
  - lib/conekta/models/logs_response_data.rb
449
414
  - lib/conekta/models/order_capture_request.rb
415
+ - lib/conekta/models/order_customer_info_response.rb
450
416
  - lib/conekta/models/order_discount_lines_request.rb
417
+ - lib/conekta/models/order_fiscal_entity_address_response.rb
418
+ - lib/conekta/models/order_fiscal_entity_address_response_all_of.rb
419
+ - lib/conekta/models/order_fiscal_entity_request.rb
420
+ - lib/conekta/models/order_fiscal_entity_response.rb
421
+ - lib/conekta/models/order_next_action_response.rb
422
+ - lib/conekta/models/order_next_action_response_redirect_to_url.rb
451
423
  - lib/conekta/models/order_refund_request.rb
452
424
  - lib/conekta/models/order_request.rb
453
425
  - lib/conekta/models/order_request_customer_info.rb
@@ -459,14 +431,12 @@ files:
459
431
  - lib/conekta/models/order_response_customer_info_all_of.rb
460
432
  - lib/conekta/models/order_response_discount_lines.rb
461
433
  - lib/conekta/models/order_response_discount_lines_all_of.rb
462
- - lib/conekta/models/order_response_fiscal_entity.rb
463
- - lib/conekta/models/order_response_fiscal_entity_address.rb
464
- - lib/conekta/models/order_response_fiscal_entity_address_all_of.rb
465
434
  - lib/conekta/models/order_response_products.rb
466
435
  - lib/conekta/models/order_response_products_all_of.rb
467
436
  - lib/conekta/models/order_response_shipping_contact.rb
468
437
  - lib/conekta/models/order_response_shipping_contact_all_of.rb
469
438
  - lib/conekta/models/order_tax_request.rb
439
+ - lib/conekta/models/order_update_fiscal_entity_request.rb
470
440
  - lib/conekta/models/order_update_request.rb
471
441
  - lib/conekta/models/order_update_request_customer_info.rb
472
442
  - lib/conekta/models/orders_response.rb
@@ -566,6 +536,10 @@ files:
566
536
  - spec/api_client_spec.rb
567
537
  - spec/configuration_spec.rb
568
538
  - spec/spec_helper.rb
539
+ - ssl_data/ca_bundle.crt
540
+ - templates/ruby/CUSTOM_VERSION.mustache
541
+ - templates/ruby/api_client.mustache
542
+ - templates/ruby/configuration.mustache
569
543
  homepage: https://www.conekta.com
570
544
  licenses:
571
545
  - MIT
@@ -588,32 +562,32 @@ requirements: []
588
562
  rubygems_version: 3.3.26
589
563
  signing_key:
590
564
  specification_version: 4
591
- summary: "%q{This library provides https://api.conekta.io operations}"
565
+ summary: This library provides https://api.conekta.io operations
592
566
  test_files:
593
- - spec/api/taxes_api_spec.rb
594
- - spec/api/shipping_contacts_api_spec.rb
595
- - spec/api/api_keys_api_spec.rb
596
- - spec/api/payment_methods_api_spec.rb
597
- - spec/api/balances_api_spec.rb
598
- - spec/api/customers_api_spec.rb
599
- - spec/api/tokens_api_spec.rb
600
567
  - spec/api/events_api_spec.rb
601
- - spec/api/companies_api_spec.rb
602
568
  - spec/api/shippings_api_spec.rb
569
+ - spec/api/plans_api_spec.rb
570
+ - spec/api/transactions_api_spec.rb
571
+ - spec/api/api_keys_api_spec.rb
572
+ - spec/api/antifraud_api_spec.rb
573
+ - spec/api/companies_api_spec.rb
574
+ - spec/api/customers_api_spec.rb
603
575
  - spec/api/products_api_spec.rb
604
- - spec/api/webhooks_api_spec.rb
605
- - spec/api/payment_link_api_spec.rb
606
- - spec/api/charges_api_spec.rb
607
- - spec/api/orders_api_spec.rb
576
+ - spec/api/taxes_api_spec.rb
608
577
  - spec/api/webhook_keys_api_spec.rb
609
- - spec/api/subscriptions_api_spec.rb
578
+ - spec/api/payment_methods_api_spec.rb
579
+ - spec/api/balances_api_spec.rb
580
+ - spec/api/tokens_api_spec.rb
610
581
  - spec/api/transfers_api_spec.rb
582
+ - spec/api/base_test.rb
583
+ - spec/api/charges_api_spec.rb
611
584
  - spec/api/discounts_api_spec.rb
585
+ - spec/api/payment_link_api_spec.rb
586
+ - spec/api/subscriptions_api_spec.rb
587
+ - spec/api/webhooks_api_spec.rb
588
+ - spec/api/orders_api_spec.rb
612
589
  - spec/api/logs_api_spec.rb
613
- - spec/api/transactions_api_spec.rb
614
- - spec/api/base_test.rb
615
- - spec/api/antifraud_api_spec.rb
616
- - spec/api/plans_api_spec.rb
590
+ - spec/api/shipping_contacts_api_spec.rb
617
591
  - spec/api_client_spec.rb
618
592
  - spec/configuration_spec.rb
619
593
  - spec/spec_helper.rb
@@ -1,18 +0,0 @@
1
- # Conekta::ApiKeyCreateResponseAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **authentication_token** | **String** | It is occupied as a user when authenticated with basic authentication, with a blank password. This value will only appear once, in the request to create a new key. Copy and save it in a safe place. | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::ApiKeyCreateResponseAllOf.new(
15
- authentication_token: key_rpHzxufNgjFCdprEEFZRTKi
16
- )
17
- ```
18
-
@@ -1,48 +0,0 @@
1
- # Conekta::ChargeDataPaymentMethodBankTransferResponse
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **bank** | **String** | | [optional] |
8
- | **clabe** | **String** | | [optional] |
9
- | **description** | **String** | | [optional] |
10
- | **executed_at** | **Integer** | | [optional] |
11
- | **expires_at** | **Integer** | | [optional] |
12
- | **issuing_account_bank** | **String** | | [optional] |
13
- | **issuing_account_number** | **String** | | [optional] |
14
- | **issuing_account_holder_name** | **String** | | [optional] |
15
- | **issuing_account_tax_id** | **String** | | [optional] |
16
- | **payment_attempts** | **Array<Object>** | | [optional] |
17
- | **receiving_account_holder_name** | **String** | | [optional] |
18
- | **receiving_account_number** | **String** | | [optional] |
19
- | **receiving_account_bank** | **String** | | [optional] |
20
- | **receiving_account_tax_id** | **String** | | [optional] |
21
- | **reference_number** | **String** | | [optional] |
22
- | **tracking_code** | **String** | | [optional] |
23
-
24
- ## Example
25
-
26
- ```ruby
27
- require 'conekta'
28
-
29
- instance = Conekta::ChargeDataPaymentMethodBankTransferResponse.new(
30
- bank: STP,
31
- clabe: 646180111805034237,
32
- description: null,
33
- executed_at: null,
34
- expires_at: 1683053729,
35
- issuing_account_bank: null,
36
- issuing_account_number: null,
37
- issuing_account_holder_name: null,
38
- issuing_account_tax_id: null,
39
- payment_attempts: null,
40
- receiving_account_holder_name: null,
41
- receiving_account_number: 646180111805034237,
42
- receiving_account_bank: STP,
43
- receiving_account_tax_id: null,
44
- reference_number: null,
45
- tracking_code: null
46
- )
47
- ```
48
-
@@ -1,38 +0,0 @@
1
- # Conekta::ChargeDataPaymentMethodCardResponse
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **account_type** | **String** | | [optional] |
8
- | **auth_code** | **String** | | [optional] |
9
- | **brand** | **String** | | [optional] |
10
- | **contract_id** | **String** | Id sent for recurrent charges. | [optional] |
11
- | **country** | **String** | | [optional] |
12
- | **exp_month** | **String** | | [optional] |
13
- | **exp_year** | **String** | | [optional] |
14
- | **fraud_indicators** | **Array<Object>** | | [optional] |
15
- | **issuer** | **String** | | [optional] |
16
- | **last4** | **String** | | [optional] |
17
- | **name** | **String** | | [optional] |
18
-
19
- ## Example
20
-
21
- ```ruby
22
- require 'conekta'
23
-
24
- instance = Conekta::ChargeDataPaymentMethodCardResponse.new(
25
- account_type: Credit,
26
- auth_code: 867372,
27
- brand: visa,
28
- contract_id: S781317595,
29
- country: MX,
30
- exp_month: 02,
31
- exp_year: 30,
32
- fraud_indicators: null,
33
- issuer: BANAMEX,
34
- last4: 4242,
35
- name: Fulanito Perez
36
- )
37
- ```
38
-
@@ -1,32 +0,0 @@
1
- # Conekta::ChargeDataPaymentMethodCashResponse
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **auth_code** | **Integer** | | [optional] |
8
- | **cashier_id** | **String** | | [optional] |
9
- | **reference** | **String** | | [optional] |
10
- | **barcode_url** | **String** | | [optional] |
11
- | **expires_at** | **Integer** | | [optional] |
12
- | **service_name** | **String** | | [optional] |
13
- | **store** | **String** | | [optional] |
14
- | **store_name** | **String** | | [optional] |
15
-
16
- ## Example
17
-
18
- ```ruby
19
- require 'conekta'
20
-
21
- instance = Conekta::ChargeDataPaymentMethodCashResponse.new(
22
- auth_code: 542563,
23
- cashier_id: OINM01010,
24
- reference: 93000262276908,
25
- barcode_url: https://pt-common-s3-stg.s3.amazonaws.com/644ebf80f2243197aad6cd8810375b905b613dbe.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIA3UN6375MP4SLLCWV%2F20230203%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230203T215750Z&X-Amz-Expires=604800&X-Amz-Security-Token=IQoJb3JpZ2luX2VjEH4aCXVzLWVhc3QtMSJGMEQCICd79cu7DYu%2F4%2B3HnVVswydgU9yHcE9kmQIIk2TLoZJrAiBVZ0HxVSeboK5lhdQSqADjwQF62XX35jhC%2F2riB0M8uCqQBAj2%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F8BEAIaDDc5OTgwMTA4MTY4OCIMXWZds9ZI5hzUdbeGKuQDFreMyeWnWWPqDuGZ2%2BHk6usCr%2Fl096%2FNJh9xtf8htLu56K%2FhWUTx%2BjiqFWM2O%2FF5zTS%2BIV6TqkLDZ%2BQ5Jo1miQrRmR57YDz6uP2Yd1mNZ1ouq5ipnNjUuu5UWCCBAmqyZQsrVmeMQpSV2IB%2BTERCCcW2SukFEYU%2F20%2Fzy5orsoZ8DxOW460IymR3cWBk5u3Xh2cV6Y1RdPEwDEThhqYEF5w%2ByKbLENloMsI%2FUm6sG5PPrO3yQOAP9aK2muLJs9lXQRU%2FL%2FSsmS4FKSUFOqlN6YU%2Bi2Y%2FyGIKAJT2VDkngvz5Sl%2Fadj0j%2BPKftVRV5FcEhySB6Rl%2BSkPN7kVQMJp6pS8hMJ6JCyEA%2BA3eWYdIfKgQhWVXAR4oCBfJ62DH8FU3a7WfSjjpTwfVkiReWen3GGCYfUWETTVKp46MKnJ9PG0CD3KzxKV8VfmEGc5krK%2FI%2F%2BDV2wtSa%2F9qf1%2BK1YYJIK9qZGb25ljUiGhTB4T%2BMUOSQFjetiWUoOJc5Q3Jz%2FXJbiTAMTST39MhdbCgiMgfrc8OGKN5DOVbex33Z7dn0xf%2FOCkSqurhLaG08efKQBdhLNS0RlE9hbg9yZ2ywwtQIF39fI6A7eeH0T11a5HMlvm51u4rAffPHRuEJfwJoIuj%2F2s3QzDg7%2FWeBjqmAbnPOlGfysjrDdvHyG7HVnaX02kdG%2BI3Q4PFOO4Mjaa3ocpjcfPT70%2BZ5a%2FSv5vP0jDLGrLToeM9%2BAUlNepptICRu23a1tLGW4ri0twPA%2FZ4JDTtUUUgdblyG8bKpcUTNp4oOsdmLLBz3FVyr4c2xQbDZSu2zYOtoOxB18W0AC6kIbsMWVU55Bf0mBhPeBWxGrtM4Kw1SgHHlt%2F8vetQi2OwtUcg08c%3D&X-Amz-SignedHeaders=host&X-Amz-Signature=d06dfa41550003359f2aabc8006063a80dfd806a13a54d244024946a76aa9abc,
26
- expires_at: 0,
27
- service_name: OxxoPay,
28
- store: 10MON50EDI,
29
- store_name: OXXO
30
- )
31
- ```
32
-
@@ -1,18 +0,0 @@
1
- # Conekta::ChargeResponseRefundsAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **data** | [**Array<ChargeResponseRefundsData>**](ChargeResponseRefundsData.md) | refunds | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::ChargeResponseRefundsAllOf.new(
15
- data: null
16
- )
17
- ```
18
-
@@ -1,18 +0,0 @@
1
- # Conekta::CheckoutsResponseAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **data** | [**Array<CheckoutResponse>**](CheckoutResponse.md) | | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::CheckoutsResponseAllOf.new(
15
- data: null
16
- )
17
- ```
18
-
@@ -1,26 +0,0 @@
1
- # Conekta::CreateCustomerFiscalEntitiesResponseAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | | |
8
- | **object** | **String** | | |
9
- | **created_at** | **Integer** | | |
10
- | **parent_id** | **String** | | [optional] |
11
- | **default** | **Boolean** | | [optional] |
12
-
13
- ## Example
14
-
15
- ```ruby
16
- require 'conekta'
17
-
18
- instance = Conekta::CreateCustomerFiscalEntitiesResponseAllOf.new(
19
- id: ship_cont_2tKZsTYcsryyu7Ah8,
20
- object: shipping_contact,
21
- created_at: 1675715413,
22
- parent_id: cus_2tKcHxhTz7xU5SymF,
23
- default: null
24
- )
25
- ```
26
-
@@ -1,32 +0,0 @@
1
- # Conekta::CustomerFiscalEntitiesRequestAddress
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **street1** | **String** | | |
8
- | **street2** | **String** | | [optional] |
9
- | **postal_code** | **String** | | |
10
- | **city** | **String** | | |
11
- | **state** | **String** | | [optional] |
12
- | **country** | **String** | this field follows the [ISO 3166-1 alpha-2 standard](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) | [optional] |
13
- | **residential** | **Boolean** | | [optional] |
14
- | **external_number** | **String** | | [optional] |
15
-
16
- ## Example
17
-
18
- ```ruby
19
- require 'conekta'
20
-
21
- instance = Conekta::CustomerFiscalEntitiesRequestAddress.new(
22
- street1: avenida siempre viva,
23
- street2: fake street,
24
- postal_code: 06100,
25
- city: Ciudad de Mexico,
26
- state: Ciudad de Mexico,
27
- country: MX,
28
- residential: true,
29
- external_number: null
30
- )
31
- ```
32
-
@@ -1,18 +0,0 @@
1
- # Conekta::CustomerFiscalEntitiesResponseAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **data** | [**Array<CustomerFiscalEntitiesDataResponse>**](CustomerFiscalEntitiesDataResponse.md) | | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::CustomerFiscalEntitiesResponseAllOf.new(
15
- data: null
16
- )
17
- ```
18
-
@@ -1,18 +0,0 @@
1
- # Conekta::CustomerPaymentMethods
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **data** | [**Array<CustomerPaymentMethodsData>**](CustomerPaymentMethodsData.md) | | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::CustomerPaymentMethods.new(
15
- data: null
16
- )
17
- ```
18
-
@@ -1,18 +0,0 @@
1
- # Conekta::CustomerResponseShippingContactsAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **data** | [**Array<CustomerShippingContactsDataResponse>**](CustomerShippingContactsDataResponse.md) | | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::CustomerResponseShippingContactsAllOf.new(
15
- data: null
16
- )
17
- ```
18
-
@@ -1,22 +0,0 @@
1
- # Conekta::CustomerShippingContactsDataResponseAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **id** | **String** | | |
8
- | **object** | **String** | | |
9
- | **created_at** | **Integer** | | |
10
-
11
- ## Example
12
-
13
- ```ruby
14
- require 'conekta'
15
-
16
- instance = Conekta::CustomerShippingContactsDataResponseAllOf.new(
17
- id: ship_cont_2tKZsTYcsryyu7Ah8,
18
- object: shipping_contact,
19
- created_at: 1675715413
20
- )
21
- ```
22
-
@@ -1,18 +0,0 @@
1
- # Conekta::CustomersResponseAllOf
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **data** | [**Array<CustomerResponse>**](CustomerResponse.md) | | [optional] |
8
-
9
- ## Example
10
-
11
- ```ruby
12
- require 'conekta'
13
-
14
- instance = Conekta::CustomersResponseAllOf.new(
15
- data: null
16
- )
17
- ```
18
-