diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index a7baa24..0243b23 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -140,9 +140,11 @@ docs/PaymentMethodCardResponse.md docs/PaymentMethodCash.md docs/PaymentMethodCashRequest.md docs/PaymentMethodCashResponse.md +docs/PaymentMethodGeneralRequest.md docs/PaymentMethodResponse.md docs/PaymentMethodSpeiRecurrent.md docs/PaymentMethodSpeiRequest.md +docs/PaymentMethodTokenRequest.md docs/PaymentMethodsApi.md docs/Payout.md docs/PayoutMethod.md @@ -354,9 +356,11 @@ lib/conekta/models/payment_method_card_response.rb lib/conekta/models/payment_method_cash.rb lib/conekta/models/payment_method_cash_request.rb lib/conekta/models/payment_method_cash_response.rb +lib/conekta/models/payment_method_general_request.rb lib/conekta/models/payment_method_response.rb lib/conekta/models/payment_method_spei_recurrent.rb lib/conekta/models/payment_method_spei_request.rb +lib/conekta/models/payment_method_token_request.rb lib/conekta/models/payout.rb lib/conekta/models/payout_method.rb lib/conekta/models/payout_order.rb diff --git a/README.md b/README.md index 1a3f889..63aa096 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ Conekta sdk This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 2.1.0 -- Package version: 6.0.3 -- Build date: 2024-04-29T14:11:53.612104515Z[Etc/UTC] +- Package version: 6.0.4 +- Build date: 2024-10-11T14:29:25.812959596Z[Etc/UTC] - Generator version: 7.5.0 - Build package: org.openapitools.codegen.languages.RubyClientCodegen For more information, please visit [https://github.com/conekta/openapi/issues](https://github.com/conekta/openapi/issues) @@ -26,16 +26,16 @@ gem build conekta.gemspec Then either install the gem locally: ```shell -gem install ./conekta-6.0.3.gem +gem install ./conekta-6.0.4.gem ``` -(for development, run `gem install --dev ./conekta-6.0.3.gem` to install the development dependencies) +(for development, run `gem install --dev ./conekta-6.0.4.gem` to install the development dependencies) or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/). Finally add this to the Gemfile: - gem 'conekta', '~> 6.0.3' + gem 'conekta', '~> 6.0.4' ### Install from Git @@ -309,9 +309,11 @@ Class | Method | HTTP request | Description - [Conekta::PaymentMethodCash](docs/PaymentMethodCash.md) - [Conekta::PaymentMethodCashRequest](docs/PaymentMethodCashRequest.md) - [Conekta::PaymentMethodCashResponse](docs/PaymentMethodCashResponse.md) + - [Conekta::PaymentMethodGeneralRequest](docs/PaymentMethodGeneralRequest.md) - [Conekta::PaymentMethodResponse](docs/PaymentMethodResponse.md) - [Conekta::PaymentMethodSpeiRecurrent](docs/PaymentMethodSpeiRecurrent.md) - [Conekta::PaymentMethodSpeiRequest](docs/PaymentMethodSpeiRequest.md) + - [Conekta::PaymentMethodTokenRequest](docs/PaymentMethodTokenRequest.md) - [Conekta::Payout](docs/Payout.md) - [Conekta::PayoutMethod](docs/PayoutMethod.md) - [Conekta::PayoutOrder](docs/PayoutOrder.md) diff --git a/VERSION b/VERSION index 090ea9d..1aa5e41 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.0.3 +6.0.4 diff --git a/config-ruby.json b/config-ruby.json index 2f09097..52b5b77 100644 --- a/config-ruby.json +++ b/config-ruby.json @@ -3,7 +3,7 @@ "gemAuthor": "Conekta", "gemName" : "conekta", "gemLicense": "MIT", - "gemVersion": "6.0.3", + "gemVersion": "6.0.4", "hideGenerationTimestamp": false, "moduleName": "Conekta", "gemSummary" : "This library provides https://api.conekta.io operations", diff --git a/docs/ChargeRequest.md b/docs/ChargeRequest.md index 522f819..5465ab5 100644 --- a/docs/ChargeRequest.md +++ b/docs/ChargeRequest.md @@ -4,7 +4,7 @@ | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **amount** | **Integer** | | [optional] | +| **amount** | **Integer** | Amount to be charged in cents | [optional] | | **payment_method** | [**ChargeRequestPaymentMethod**](ChargeRequestPaymentMethod.md) | | | | **reference_id** | **String** | Custom reference to add to the charge | [optional] | diff --git a/docs/ChargeRequestPaymentMethod.md b/docs/ChargeRequestPaymentMethod.md index ccdf23e..39a357b 100644 --- a/docs/ChargeRequestPaymentMethod.md +++ b/docs/ChargeRequestPaymentMethod.md @@ -1,28 +1,49 @@ # Conekta::ChargeRequestPaymentMethod -## Properties +## Class instance methods -| Name | Type | Description | Notes | -| ---- | ---- | ----------- | ----- | -| **expires_at** | **Integer** | Method expiration date as unix timestamp | [optional] | -| **monthly_installments** | **Integer** | How many months without interest to apply, it can be 3, 6, 9, 12 or 18 | [optional] | -| **type** | **String** | | | -| **token_id** | **String** | | [optional] | -| **payment_source_id** | **String** | | [optional] | -| **contract_id** | **String** | Optional id sent to indicate the bank contract for recurrent card charges. | [optional] | +### `openapi_one_of` -## Example +Returns the list of classes defined in oneOf. + +#### Example + +```ruby +require 'conekta' + +Conekta::ChargeRequestPaymentMethod.openapi_one_of +# => +# [ +# :'PaymentMethodCardRequest', +# :'PaymentMethodGeneralRequest' +# ] +``` + +### build + +Find the appropriate object from the `openapi_one_of` list and casts the data into it. + +#### Example ```ruby require 'conekta' -instance = Conekta::ChargeRequestPaymentMethod.new( - expires_at: 1677196303, - monthly_installments: null, - type: card, - token_id: tok_2897348234, - payment_source_id: src_2tLkkyfMPh6v7pFry, - contract_id: S781317595 -) +Conekta::ChargeRequestPaymentMethod.build(data) +# => # + +Conekta::ChargeRequestPaymentMethod.build(data_that_doesnt_match) +# => nil ``` +#### Parameters + +| Name | Type | Description | +| ---- | ---- | ----------- | +| **data** | **Mixed** | data to be matched against the list of oneOf items | + +#### Return type + +- `PaymentMethodCardRequest` +- `PaymentMethodGeneralRequest` +- `nil` (if no type matches) + diff --git a/docs/ChargeResponse.md b/docs/ChargeResponse.md index 78dd87d..cac5a43 100644 --- a/docs/ChargeResponse.md +++ b/docs/ChargeResponse.md @@ -13,11 +13,11 @@ | **device_fingerprint** | **String** | | [optional] | | **failure_code** | **String** | | [optional] | | **failure_message** | **String** | | [optional] | -| **id** | **String** | | [optional] | -| **livemode** | **Boolean** | | [optional] | +| **id** | **String** | Charge ID | [optional] | +| **livemode** | **Boolean** | Whether the charge was made in live mode or not | [optional] | | **object** | **String** | | [optional] | -| **order_id** | **String** | | [optional] | -| **paid_at** | **Integer** | | [optional] | +| **order_id** | **String** | Order ID | [optional] | +| **paid_at** | **Integer** | Payment date | [optional] | | **payment_method** | [**ChargeResponsePaymentMethod**](ChargeResponsePaymentMethod.md) | | [optional] | | **reference_id** | **String** | Reference ID of the charge | [optional] | | **refunds** | [**ChargeResponseRefunds**](ChargeResponseRefunds.md) | | [optional] | @@ -39,8 +39,8 @@ instance = Conekta::ChargeResponse.new( failure_code: suspected_fraud, failure_message: Este cargo ha sido declinado porque el comportamiento del comprador es sospechoso., id: 63efa757cf65380001aec040, - livemode: null, - object: null, + livemode: false, + object: charge, order_id: ord_2tN73UdUSNrYRPD9r, paid_at: 1676390742, payment_method: null, diff --git a/docs/ChargesApi.md b/docs/ChargesApi.md index 88d9089..e74fcd9 100644 --- a/docs/ChargesApi.md +++ b/docs/ChargesApi.md @@ -109,7 +109,7 @@ end api_instance = Conekta::ChargesApi.new id = '6307a60c41de27127515a575' # String | Identifier of the resource -charge_request = Conekta::ChargeRequest.new({payment_method: Conekta::ChargeRequestPaymentMethod.new({type: 'card'})}) # ChargeRequest | requested field for a charge +charge_request = Conekta::ChargeRequest.new({payment_method: Conekta::PaymentMethodCardRequest.new({type: 'card | cash | spei', cvc: '198', exp_month: '12', exp_year: '2025', name: 'John Doe', number: '4242424242424242'})}) # ChargeRequest | requested field for a charge opts = { accept_language: 'es', # String | Use for knowing which language to use x_child_company_id: '6441b6376b60c3a638da80af' # String | In the case of a holding company, the company id of the child company to which will process the request. diff --git a/docs/ChargesDataResponse.md b/docs/ChargesDataResponse.md index a53b9ae..2e237a3 100644 --- a/docs/ChargesDataResponse.md +++ b/docs/ChargesDataResponse.md @@ -13,11 +13,11 @@ | **device_fingerprint** | **String** | | [optional] | | **failure_code** | **String** | | [optional] | | **failure_message** | **String** | | [optional] | -| **id** | **String** | | [optional] | -| **livemode** | **Boolean** | | [optional] | +| **id** | **String** | Charge ID | [optional] | +| **livemode** | **Boolean** | Whether the charge was made in live mode or not | [optional] | | **object** | **String** | | [optional] | -| **order_id** | **String** | | [optional] | -| **paid_at** | **Integer** | | [optional] | +| **order_id** | **String** | Order ID | [optional] | +| **paid_at** | **Integer** | Payment date | [optional] | | **payment_method** | [**ChargeResponsePaymentMethod**](ChargeResponsePaymentMethod.md) | | [optional] | | **reference_id** | **String** | Reference ID of the charge | [optional] | | **refunds** | [**ChargeResponseRefunds**](ChargeResponseRefunds.md) | | [optional] | @@ -39,8 +39,8 @@ instance = Conekta::ChargesDataResponse.new( failure_code: suspected_fraud, failure_message: Este cargo ha sido declinado porque el comportamiento del comprador es sospechoso., id: 63efa757cf65380001aec040, - livemode: null, - object: null, + livemode: false, + object: charge, order_id: ord_2tN73UdUSNrYRPD9r, paid_at: 1676390742, payment_method: null, diff --git a/docs/Checkout.md b/docs/Checkout.md index 12b2e5f..368c688 100644 --- a/docs/Checkout.md +++ b/docs/Checkout.md @@ -8,6 +8,7 @@ | **expires_at** | **Integer** | It is the time when the link will expire. It is expressed in seconds since the Unix epoch. The valid range is from 2 to 365 days (the valid range will be taken from the next day of the creation date at 00:01 hrs) | | | **monthly_installments_enabled** | **Boolean** | This flag allows you to specify if months without interest will be active. | [optional] | | **monthly_installments_options** | **Array<Integer>** | This field allows you to specify the number of months without interest. | [optional] | +| **three_ds_mode** | **String** | Indicates the 3DS2 mode for the order, either smart or strict. | [optional] | | **name** | **String** | Reason for charge | | | **needs_shipping_contact** | **Boolean** | This flag allows you to fill in the shipping information at checkout. | [optional] | | **on_demand_enabled** | **Boolean** | This flag allows you to specify if the link will be on demand. | [optional] | @@ -26,6 +27,7 @@ instance = Conekta::Checkout.new( expires_at: 1680397724, monthly_installments_enabled: true, monthly_installments_options: [3,6,12], + three_ds_mode: null, name: Payment Link Name 1594138857, needs_shipping_contact: false, on_demand_enabled: true, diff --git a/docs/CreateCustomerPaymentMethodsRequest.md b/docs/CreateCustomerPaymentMethodsRequest.md index e75984f..08ef908 100644 --- a/docs/CreateCustomerPaymentMethodsRequest.md +++ b/docs/CreateCustomerPaymentMethodsRequest.md @@ -14,9 +14,9 @@ require 'conekta' Conekta::CreateCustomerPaymentMethodsRequest.openapi_one_of # => # [ -# :'PaymentMethodCardRequest', # :'PaymentMethodCashRequest', -# :'PaymentMethodSpeiRequest' +# :'PaymentMethodSpeiRequest', +# :'PaymentMethodTokenRequest' # ] ``` @@ -30,7 +30,7 @@ Find the appropriate object from the `openapi_one_of` list and casts the data in require 'conekta' Conekta::CreateCustomerPaymentMethodsRequest.build(data) -# => # +# => # Conekta::CreateCustomerPaymentMethodsRequest.build(data_that_doesnt_match) # => nil @@ -44,8 +44,8 @@ Conekta::CreateCustomerPaymentMethodsRequest.build(data_that_doesnt_match) #### Return type -- `PaymentMethodCardRequest` - `PaymentMethodCashRequest` - `PaymentMethodSpeiRequest` +- `PaymentMethodTokenRequest` - `nil` (if no type matches) diff --git a/docs/CustomerPaymentMethodsRequest.md b/docs/CustomerPaymentMethodsRequest.md index 0f9a50a..83a92bf 100644 --- a/docs/CustomerPaymentMethodsRequest.md +++ b/docs/CustomerPaymentMethodsRequest.md @@ -14,9 +14,9 @@ require 'conekta' Conekta::CustomerPaymentMethodsRequest.openapi_one_of # => # [ -# :'PaymentMethodCardRequest', # :'PaymentMethodCashRequest', -# :'PaymentMethodSpeiRequest' +# :'PaymentMethodSpeiRequest', +# :'PaymentMethodTokenRequest' # ] ``` @@ -30,7 +30,7 @@ Find the appropriate object from the `openapi_one_of` list and casts the data in require 'conekta' Conekta::CustomerPaymentMethodsRequest.build(data) -# => # +# => # Conekta::CustomerPaymentMethodsRequest.build(data_that_doesnt_match) # => nil @@ -44,8 +44,8 @@ Conekta::CustomerPaymentMethodsRequest.build(data_that_doesnt_match) #### Return type -- `PaymentMethodCardRequest` - `PaymentMethodCashRequest` - `PaymentMethodSpeiRequest` +- `PaymentMethodTokenRequest` - `nil` (if no type matches) diff --git a/docs/OrderRefundRequest.md b/docs/OrderRefundRequest.md index 6acee14..832972b 100644 --- a/docs/OrderRefundRequest.md +++ b/docs/OrderRefundRequest.md @@ -4,9 +4,9 @@ | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **amount** | **Integer** | | | +| **amount** | **Integer** | Amount to be refunded in cents | | | **expires_at** | **Integer** | | [optional] | -| **reason** | **String** | | | +| **reason** | **String** | Reason for the refund | | ## Example diff --git a/docs/OrderRequest.md b/docs/OrderRequest.md index 312f955..bc1d707 100644 --- a/docs/OrderRequest.md +++ b/docs/OrderRequest.md @@ -15,7 +15,7 @@ | **needs_shipping_contact** | **Boolean** | Allows you to fill out the shipping information at checkout | [optional] | | **pre_authorize** | **Boolean** | Indicates whether the order charges must be preauthorized | [optional][default to false] | | **processing_mode** | **String** | Indicates the processing mode for the order, either ecommerce, recurrent or validation. | [optional] | -| **return_url** | **String** | Indicates the redirection callback upon completion of the 3DS2 flow. | [optional] | +| **return_url** | **String** | Indicates the redirection callback upon completion of the 3DS2 flow. Do not use this parameter if your order has a checkout parameter | [optional] | | **shipping_contact** | [**CustomerShippingContacts**](CustomerShippingContacts.md) | | [optional] | | **shipping_lines** | [**Array<ShippingRequest>**](ShippingRequest.md) | List of [shipping costs](https://developers.conekta.com/v2.1.0/reference/orderscreateshipping). If the online store offers digital products. | [optional] | | **tax_lines** | [**Array<OrderTaxRequest>**](OrderTaxRequest.md) | List of [taxes](https://developers.conekta.com/v2.1.0/reference/orderscreatetaxes) that are applied to the order. | [optional] | diff --git a/docs/PaymentMethodBankTransfer.md b/docs/PaymentMethodBankTransfer.md index 47b9e0c..a22ba1b 100644 --- a/docs/PaymentMethodBankTransfer.md +++ b/docs/PaymentMethodBankTransfer.md @@ -22,6 +22,7 @@ | **receiving_account_tax_id** | **String** | | [optional] | | **reference_number** | **String** | | [optional] | | **tracking_code** | **String** | | [optional] | +| **customer_ip_address** | **String** | | [optional] | ## Example @@ -46,7 +47,8 @@ instance = Conekta::PaymentMethodBankTransfer.new( receiving_account_bank: STP, receiving_account_tax_id: null, reference_number: null, - tracking_code: null + tracking_code: null, + customer_ip_address: 0.0.0.0 ) ``` diff --git a/docs/PaymentMethodCard.md b/docs/PaymentMethodCard.md index 495057d..d93e3cd 100644 --- a/docs/PaymentMethodCard.md +++ b/docs/PaymentMethodCard.md @@ -6,17 +6,18 @@ | ---- | ---- | ----------- | ----- | | **type** | **String** | | [optional] | | **object** | **String** | | | -| **account_type** | **String** | | [optional] | +| **account_type** | **String** | Account type of the card | [optional] | | **auth_code** | **String** | | [optional] | -| **brand** | **String** | | [optional] | +| **brand** | **String** | Brand of the card | [optional] | | **contract_id** | **String** | Id sent for recurrent charges. | [optional] | -| **country** | **String** | | [optional] | -| **exp_month** | **String** | | [optional] | -| **exp_year** | **String** | | [optional] | +| **country** | **String** | Country of the card | [optional] | +| **exp_month** | **String** | Expiration month of the card | [optional] | +| **exp_year** | **String** | Expiration year of the card | [optional] | | **fraud_indicators** | **Array<Object>** | | [optional] | -| **issuer** | **String** | | [optional] | -| **last4** | **String** | | [optional] | -| **name** | **String** | | [optional] | +| **issuer** | **String** | Issuer of the card | [optional] | +| **last4** | **String** | Last 4 digits of the card | [optional] | +| **name** | **String** | Name of the cardholder | [optional] | +| **customer_ip_address** | **String** | Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes | [optional] | ## Example @@ -32,11 +33,12 @@ instance = Conekta::PaymentMethodCard.new( contract_id: S781317595, country: MX, exp_month: 02, - exp_year: 30, + exp_year: 2026, fraud_indicators: null, issuer: BANAMEX, last4: 4242, - name: Fulanito Perez + name: Fulanito Perez, + customer_ip_address: 0.0.0.0 ) ``` diff --git a/docs/PaymentMethodCardRequest.md b/docs/PaymentMethodCardRequest.md index e9e6d60..5a6b60a 100644 --- a/docs/PaymentMethodCardRequest.md +++ b/docs/PaymentMethodCardRequest.md @@ -5,7 +5,12 @@ | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **type** | **String** | Type of payment method | | -| **token_id** | **String** | Token id that will be used to create a \"card\" type payment method. See the (subscriptions)[https://developers.conekta.com/v2.1.0/reference/createsubscription] tutorial for more information on how to tokenize cards. | | +| **cvc** | **String** | Card security code | | +| **exp_month** | **String** | Card expiration month | | +| **exp_year** | **String** | Card expiration year | | +| **name** | **String** | Cardholder name | | +| **number** | **String** | Card number | | +| **customer_ip_address** | **String** | Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes | [optional] | ## Example @@ -14,7 +19,12 @@ require 'conekta' instance = Conekta::PaymentMethodCardRequest.new( type: card | cash | spei, - token_id: tok_32hj4g234as + cvc: 198, + exp_month: 12, + exp_year: 2025, + name: John Doe, + number: 4242424242424242, + customer_ip_address: 0.0.0.0 ) ``` diff --git a/docs/PaymentMethodCash.md b/docs/PaymentMethodCash.md index 09bf74b..7907d22 100644 --- a/docs/PaymentMethodCash.md +++ b/docs/PaymentMethodCash.md @@ -14,6 +14,7 @@ | **service_name** | **String** | | [optional] | | **store** | **String** | | [optional] | | **store_name** | **String** | | [optional] | +| **customer_ip_address** | **String** | | [optional] | ## Example @@ -30,7 +31,8 @@ instance = Conekta::PaymentMethodCash.new( expires_at: 0, service_name: OxxoPay, store: 10MON50EDI, - store_name: OXXO + store_name: OXXO, + customer_ip_address: 0.0.0.0 ) ``` diff --git a/docs/PaymentMethodGeneralRequest.md b/docs/PaymentMethodGeneralRequest.md new file mode 100644 index 0000000..b7e8a23 --- /dev/null +++ b/docs/PaymentMethodGeneralRequest.md @@ -0,0 +1,32 @@ +# Conekta::PaymentMethodGeneralRequest + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **expires_at** | **Integer** | Method expiration date as unix timestamp | [optional] | +| **monthly_installments** | **Integer** | How many months without interest to apply, it can be 3, 6, 9, 12 or 18 | [optional] | +| **type** | **String** | Type of payment method | | +| **token_id** | **String** | | [optional] | +| **payment_source_id** | **String** | | [optional] | +| **cvc** | **String** | Optional, It is a value that allows identifying the security code of the card. Only for PCI merchants | [optional] | +| **contract_id** | **String** | Optional id sent to indicate the bank contract for recurrent card charges. | [optional] | +| **customer_ip_address** | **String** | Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes | [optional] | + +## Example + +```ruby +require 'conekta' + +instance = Conekta::PaymentMethodGeneralRequest.new( + expires_at: 1677196303, + monthly_installments: null, + type: card, + token_id: tok_2897348234, + payment_source_id: src_2tLkkyfMPh6v7pFry, + cvc: 123, + contract_id: S781317595, + customer_ip_address: 0.0.0.0 +) +``` + diff --git a/docs/PaymentMethodTokenRequest.md b/docs/PaymentMethodTokenRequest.md new file mode 100644 index 0000000..71b0531 --- /dev/null +++ b/docs/PaymentMethodTokenRequest.md @@ -0,0 +1,20 @@ +# Conekta::PaymentMethodTokenRequest + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **type** | **String** | Type of payment method | | +| **token_id** | **String** | Token id that will be used to create a \"card\" type payment method. See the (subscriptions)[https://developers.conekta.com/v2.1.0/reference/createsubscription] tutorial for more information on how to tokenize cards. | | + +## Example + +```ruby +require 'conekta' + +instance = Conekta::PaymentMethodTokenRequest.new( + type: card | cash | spei, + token_id: test_32hj4g234as +) +``` + diff --git a/docs/PaymentMethodsApi.md b/docs/PaymentMethodsApi.md index 0041b28..e5cdc06 100644 --- a/docs/PaymentMethodsApi.md +++ b/docs/PaymentMethodsApi.md @@ -31,7 +31,7 @@ end api_instance = Conekta::PaymentMethodsApi.new id = '6307a60c41de27127515a575' # String | Identifier of the resource -create_customer_payment_methods_request = Conekta::PaymentMethodCardRequest.new({type: 'card | cash | spei', token_id: 'tok_32hj4g234as'}) # CreateCustomerPaymentMethodsRequest | requested field for customer payment methods +create_customer_payment_methods_request = Conekta::PaymentMethodCashRequest.new({type: 'card | cash | spei'}) # CreateCustomerPaymentMethodsRequest | requested field for customer payment methods opts = { accept_language: 'es', # String | Use for knowing which language to use x_child_company_id: '6441b6376b60c3a638da80af' # String | In the case of a holding company, the company id of the child company to which will process the request. diff --git a/docs/SubscriptionResponse.md b/docs/SubscriptionResponse.md index 2efed2c..2c31ddb 100644 --- a/docs/SubscriptionResponse.md +++ b/docs/SubscriptionResponse.md @@ -7,6 +7,7 @@ | **billing_cycle_start** | **Integer** | | [optional] | | **billing_cycle_end** | **Integer** | | [optional] | | **canceled_at** | **Integer** | | [optional] | +| **canceled_reason** | **String** | Reason for cancellation. This field appears when the subscription status is 'canceled'. | [optional] | | **card_id** | **String** | | [optional] | | **charge_id** | **String** | | [optional] | | **created_at** | **Integer** | | [optional] | @@ -31,6 +32,7 @@ instance = Conekta::SubscriptionResponse.new( billing_cycle_start: 1677626827, billing_cycle_end: 1677626827, canceled_at: 1678258162, + canceled_reason: user_cancelation, card_id: src_2tKcHxhTz7xU5SymL, charge_id: 2tKcHxhTz7xU5SymL, created_at: 1677626837, diff --git a/lib/conekta.rb b/lib/conekta.rb index a5b2271..2bedac2 100644 --- a/lib/conekta.rb +++ b/lib/conekta.rb @@ -136,9 +136,11 @@ require 'conekta/models/payment_method_cash' require 'conekta/models/payment_method_cash_request' require 'conekta/models/payment_method_cash_response' +require 'conekta/models/payment_method_general_request' require 'conekta/models/payment_method_response' require 'conekta/models/payment_method_spei_recurrent' require 'conekta/models/payment_method_spei_request' +require 'conekta/models/payment_method_token_request' require 'conekta/models/payout' require 'conekta/models/payout_method' require 'conekta/models/payout_order' diff --git a/lib/conekta/models/charge_request.rb b/lib/conekta/models/charge_request.rb index bea6977..c72b053 100644 --- a/lib/conekta/models/charge_request.rb +++ b/lib/conekta/models/charge_request.rb @@ -16,6 +16,7 @@ module Conekta # The charges to be made class ChargeRequest + # Amount to be charged in cents attr_accessor :amount attr_accessor :payment_method diff --git a/lib/conekta/models/charge_request_payment_method.rb b/lib/conekta/models/charge_request_payment_method.rb index 419c216..87d0587 100644 --- a/lib/conekta/models/charge_request_payment_method.rb +++ b/lib/conekta/models/charge_request_payment_method.rb @@ -14,257 +14,92 @@ require 'time' module Conekta - # Payment method used in the charge. Go to the [payment methods](https://developers.conekta.com/reference/m%C3%A9todos-de-pago) section for more details - class ChargeRequestPaymentMethod - # Method expiration date as unix timestamp - attr_accessor :expires_at - - # How many months without interest to apply, it can be 3, 6, 9, 12 or 18 - attr_accessor :monthly_installments - - attr_accessor :type - - attr_accessor :token_id - - attr_accessor :payment_source_id - - # Optional id sent to indicate the bank contract for recurrent card charges. - attr_accessor :contract_id - - # Attribute mapping from ruby-style variable name to JSON key. - def self.attribute_map - { - :'expires_at' => :'expires_at', - :'monthly_installments' => :'monthly_installments', - :'type' => :'type', - :'token_id' => :'token_id', - :'payment_source_id' => :'payment_source_id', - :'contract_id' => :'contract_id' - } - end - - # Returns all the JSON keys this model knows about - def self.acceptable_attributes - attribute_map.values - end - - # Attribute type mapping. - def self.openapi_types - { - :'expires_at' => :'Integer', - :'monthly_installments' => :'Integer', - :'type' => :'String', - :'token_id' => :'String', - :'payment_source_id' => :'String', - :'contract_id' => :'String' - } - end - - # List of attributes with nullable: true - def self.openapi_nullable - Set.new([ - ]) - end - - # Initializes the object - # @param [Hash] attributes Model attributes in the form of hash - def initialize(attributes = {}) - if (!attributes.is_a?(Hash)) - fail ArgumentError, "The input argument (attributes) must be a hash in `Conekta::ChargeRequestPaymentMethod` initialize method" + module ChargeRequestPaymentMethod + class << self + # List of class defined in oneOf (OpenAPI v3) + def openapi_one_of + [ + :'PaymentMethodCardRequest', + :'PaymentMethodGeneralRequest' + ] end - # check to see if the attribute exists and convert string to symbol for hash key - attributes = attributes.each_with_object({}) { |(k, v), h| - if (!self.class.attribute_map.key?(k.to_sym)) - fail ArgumentError, "`#{k}` is not a valid attribute in `Conekta::ChargeRequestPaymentMethod`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect + # Builds the object + # @param [Mixed] Data to be matched against the list of oneOf items + # @return [Object] Returns the model or the data itself + def build(data) + # Go through the list of oneOf items and attempt to identify the appropriate one. + # Note: + # - We do not attempt to check whether exactly one item matches. + # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 }) + # due to the way the deserialization is made in the base_object template (it just casts without verifying). + # - TODO: scalar values are de facto behaving as if they were nullable. + # - TODO: logging when debugging is set. + openapi_one_of.each do |klass| + begin + next if klass == :AnyType # "nullable: true" + typed_data = find_and_cast_into_type(klass, data) + return typed_data if typed_data + rescue # rescue all errors so we keep iterating even if the current item lookup raises + end end - h[k.to_sym] = v - } - if attributes.key?(:'expires_at') - self.expires_at = attributes[:'expires_at'] + openapi_one_of.include?(:AnyType) ? data : nil end - if attributes.key?(:'monthly_installments') - self.monthly_installments = attributes[:'monthly_installments'] - end - - if attributes.key?(:'type') - self.type = attributes[:'type'] - else - self.type = nil - end - - if attributes.key?(:'token_id') - self.token_id = attributes[:'token_id'] - end - - if attributes.key?(:'payment_source_id') - self.payment_source_id = attributes[:'payment_source_id'] - end - - if attributes.key?(:'contract_id') - self.contract_id = attributes[:'contract_id'] - end - end - - # Show invalid properties with the reasons. Usually used together with valid? - # @return Array for valid properties with the reasons - def list_invalid_properties - warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' - invalid_properties = Array.new - if @type.nil? - invalid_properties.push('invalid value for "type", type cannot be nil.') - end - - invalid_properties - end - - # Check to see if the all the properties in the model are valid - # @return true if the model is valid - def valid? - warn '[DEPRECATED] the `valid?` method is obsolete' - return false if @type.nil? - true - end - - # Checks equality by comparing each attribute. - # @param [Object] Object to be compared - def ==(o) - return true if self.equal?(o) - self.class == o.class && - expires_at == o.expires_at && - monthly_installments == o.monthly_installments && - type == o.type && - token_id == o.token_id && - payment_source_id == o.payment_source_id && - contract_id == o.contract_id - end - - # @see the `==` method - # @param [Object] Object to be compared - def eql?(o) - self == o - end - - # Calculates hash code according to all attributes. - # @return [Integer] Hash code - def hash - [expires_at, monthly_installments, type, token_id, payment_source_id, contract_id].hash - end - - # Builds the object from hash - # @param [Hash] attributes Model attributes in the form of hash - # @return [Object] Returns the model itself - def self.build_from_hash(attributes) - return nil unless attributes.is_a?(Hash) - attributes = attributes.transform_keys(&:to_sym) - transformed_hash = {} - openapi_types.each_pair do |key, type| - if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? - transformed_hash["#{key}"] = nil - elsif type =~ /\AArray<(.*)>/i - # check to ensure the input is an array given that the attribute - # is documented as an array but the input is not - if attributes[attribute_map[key]].is_a?(Array) - transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } + private + + SchemaMismatchError = Class.new(StandardError) + + # Note: 'File' is missing here because in the regular case we get the data _after_ a call to JSON.parse. + def find_and_cast_into_type(klass, data) + return if data.nil? + + case klass.to_s + when 'Boolean' + return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass) + when 'Float' + return data if data.instance_of?(Float) + when 'Integer' + return data if data.instance_of?(Integer) + when 'Time' + return Time.parse(data) + when 'Date' + return Date.parse(data) + when 'String' + return data if data.instance_of?(String) + when 'Object' # "type: object" + return data if data.instance_of?(Hash) + when /\AArray<(?.+)>\z/ # "type: array" + if data.instance_of?(Array) + sub_type = Regexp.last_match[:sub_type] + return data.map { |item| find_and_cast_into_type(sub_type, item) } end - elsif !attributes[attribute_map[key]].nil? - transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) - end - end - new(transformed_hash) - end - - # Deserializes the data based on type - # @param string type Data type - # @param string value Value to be deserialized - # @return [Object] Deserialized data - def self._deserialize(type, value) - case type.to_sym - when :Time - Time.parse(value) - when :Date - Date.parse(value) - when :String - value.to_s - when :Integer - value.to_i - when :Float - value.to_f - when :Boolean - if value.to_s =~ /\A(true|t|yes|y|1)\z/i - true - else - false - end - when :Object - # generic object (usually a Hash), return directly - value - when /\AArray<(?.+)>\z/ - inner_type = Regexp.last_match[:inner_type] - value.map { |v| _deserialize(inner_type, v) } - when /\AHash<(?.+?), (?.+)>\z/ - k_type = Regexp.last_match[:k_type] - v_type = Regexp.last_match[:v_type] - {}.tap do |hash| - value.each do |k, v| - hash[_deserialize(k_type, k)] = _deserialize(v_type, v) + when /\AHash.+)>\z/ # "type: object" with "additionalProperties: { ... }" + if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) } + sub_type = Regexp.last_match[:sub_type] + return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) } + end + else # model + const = Conekta.const_get(klass) + if const + if const.respond_to?(:openapi_one_of) # nested oneOf model + model = const.build(data) + return model if model + else + # raise if data contains keys that are not known to the model + raise if const.respond_to?(:acceptable_attributes) && !(data.keys - const.acceptable_attributes).empty? + model = const.build_from_hash(data) + return model if model + end end - end - else # model - # models (e.g. Pet) or oneOf - klass = Conekta.const_get(type) - klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) - end - end - - # Returns the string representation of the object - # @return [String] String presentation of the object - def to_s - to_hash.to_s - end - - # to_body is an alias to to_hash (backward compatibility) - # @return [Hash] Returns the object in the form of hash - def to_body - to_hash - end - - # Returns the object in the form of hash - # @return [Hash] Returns the object in the form of hash - def to_hash - hash = {} - self.class.attribute_map.each_pair do |attr, param| - value = self.send(attr) - if value.nil? - is_nullable = self.class.openapi_nullable.include?(attr) - next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end - hash[param] = _to_hash(value) + raise # if no match by now, raise + rescue + raise SchemaMismatchError, "#{data} doesn't match the #{klass} type" end - hash end - - # Outputs non-array value in the form of hash - # For object, use to_hash. Otherwise, just return the value - # @param [Object] value Any valid value - # @return [Hash] Returns the value in the form of hash - def _to_hash(value) - if value.is_a?(Array) - value.compact.map { |v| _to_hash(v) } - elsif value.is_a?(Hash) - {}.tap do |hash| - value.each { |k, v| hash[k] = _to_hash(v) } - end - elsif value.respond_to? :to_hash - value.to_hash - else - value - end - end - end end diff --git a/lib/conekta/models/charge_response.rb b/lib/conekta/models/charge_response.rb index 36359c5..bbc17af 100644 --- a/lib/conekta/models/charge_response.rb +++ b/lib/conekta/models/charge_response.rb @@ -33,14 +33,18 @@ class ChargeResponse attr_accessor :failure_message + # Charge ID attr_accessor :id + # Whether the charge was made in live mode or not attr_accessor :livemode attr_accessor :object + # Order ID attr_accessor :order_id + # Payment date attr_accessor :paid_at attr_accessor :payment_method diff --git a/lib/conekta/models/charges_data_response.rb b/lib/conekta/models/charges_data_response.rb index 4c10c2d..8b1acf9 100644 --- a/lib/conekta/models/charges_data_response.rb +++ b/lib/conekta/models/charges_data_response.rb @@ -33,14 +33,18 @@ class ChargesDataResponse attr_accessor :failure_message + # Charge ID attr_accessor :id + # Whether the charge was made in live mode or not attr_accessor :livemode attr_accessor :object + # Order ID attr_accessor :order_id + # Payment date attr_accessor :paid_at attr_accessor :payment_method diff --git a/lib/conekta/models/checkout.rb b/lib/conekta/models/checkout.rb index 37ec894..bb23d6a 100644 --- a/lib/conekta/models/checkout.rb +++ b/lib/conekta/models/checkout.rb @@ -28,6 +28,9 @@ class Checkout # This field allows you to specify the number of months without interest. attr_accessor :monthly_installments_options + # Indicates the 3DS2 mode for the order, either smart or strict. + attr_accessor :three_ds_mode + # Reason for charge attr_accessor :name @@ -55,6 +58,7 @@ def self.attribute_map :'expires_at' => :'expires_at', :'monthly_installments_enabled' => :'monthly_installments_enabled', :'monthly_installments_options' => :'monthly_installments_options', + :'three_ds_mode' => :'three_ds_mode', :'name' => :'name', :'needs_shipping_contact' => :'needs_shipping_contact', :'on_demand_enabled' => :'on_demand_enabled', @@ -77,6 +81,7 @@ def self.openapi_types :'expires_at' => :'Integer', :'monthly_installments_enabled' => :'Boolean', :'monthly_installments_options' => :'Array', + :'three_ds_mode' => :'String', :'name' => :'String', :'needs_shipping_contact' => :'Boolean', :'on_demand_enabled' => :'Boolean', @@ -133,6 +138,10 @@ def initialize(attributes = {}) end end + if attributes.key?(:'three_ds_mode') + self.three_ds_mode = attributes[:'three_ds_mode'] + end + if attributes.key?(:'name') self.name = attributes[:'name'] else @@ -224,6 +233,7 @@ def ==(o) expires_at == o.expires_at && monthly_installments_enabled == o.monthly_installments_enabled && monthly_installments_options == o.monthly_installments_options && + three_ds_mode == o.three_ds_mode && name == o.name && needs_shipping_contact == o.needs_shipping_contact && on_demand_enabled == o.on_demand_enabled && @@ -242,7 +252,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [allowed_payment_methods, expires_at, monthly_installments_enabled, monthly_installments_options, name, needs_shipping_contact, on_demand_enabled, order_template, payments_limit_count, recurrent, type].hash + [allowed_payment_methods, expires_at, monthly_installments_enabled, monthly_installments_options, three_ds_mode, name, needs_shipping_contact, on_demand_enabled, order_template, payments_limit_count, recurrent, type].hash end # Builds the object from hash diff --git a/lib/conekta/models/create_customer_payment_methods_request.rb b/lib/conekta/models/create_customer_payment_methods_request.rb index 1e277a7..866e98f 100644 --- a/lib/conekta/models/create_customer_payment_methods_request.rb +++ b/lib/conekta/models/create_customer_payment_methods_request.rb @@ -20,9 +20,9 @@ class << self # List of class defined in oneOf (OpenAPI v3) def openapi_one_of [ - :'PaymentMethodCardRequest', :'PaymentMethodCashRequest', - :'PaymentMethodSpeiRequest' + :'PaymentMethodSpeiRequest', + :'PaymentMethodTokenRequest' ] end diff --git a/lib/conekta/models/customer_payment_methods_request.rb b/lib/conekta/models/customer_payment_methods_request.rb index 9c00fa5..d750f73 100644 --- a/lib/conekta/models/customer_payment_methods_request.rb +++ b/lib/conekta/models/customer_payment_methods_request.rb @@ -19,9 +19,9 @@ class << self # List of class defined in oneOf (OpenAPI v3) def openapi_one_of [ - :'PaymentMethodCardRequest', :'PaymentMethodCashRequest', - :'PaymentMethodSpeiRequest' + :'PaymentMethodSpeiRequest', + :'PaymentMethodTokenRequest' ] end diff --git a/lib/conekta/models/order_refund_request.rb b/lib/conekta/models/order_refund_request.rb index 0675953..e11dbf2 100644 --- a/lib/conekta/models/order_refund_request.rb +++ b/lib/conekta/models/order_refund_request.rb @@ -15,10 +15,12 @@ module Conekta class OrderRefundRequest + # Amount to be refunded in cents attr_accessor :amount attr_accessor :expires_at + # Reason for the refund attr_accessor :reason # Attribute mapping from ruby-style variable name to JSON key. diff --git a/lib/conekta/models/order_request.rb b/lib/conekta/models/order_request.rb index 954b6a1..993348d 100644 --- a/lib/conekta/models/order_request.rb +++ b/lib/conekta/models/order_request.rb @@ -46,7 +46,7 @@ class OrderRequest # Indicates the processing mode for the order, either ecommerce, recurrent or validation. attr_accessor :processing_mode - # Indicates the redirection callback upon completion of the 3DS2 flow. + # Indicates the redirection callback upon completion of the 3DS2 flow. Do not use this parameter if your order has a checkout parameter attr_accessor :return_url attr_accessor :shipping_contact diff --git a/lib/conekta/models/payment_method_bank_transfer.rb b/lib/conekta/models/payment_method_bank_transfer.rb index e60d15c..1878883 100644 --- a/lib/conekta/models/payment_method_bank_transfer.rb +++ b/lib/conekta/models/payment_method_bank_transfer.rb @@ -51,6 +51,8 @@ class PaymentMethodBankTransfer attr_accessor :tracking_code + attr_accessor :customer_ip_address + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { @@ -71,7 +73,8 @@ def self.attribute_map :'receiving_account_bank' => :'receiving_account_bank', :'receiving_account_tax_id' => :'receiving_account_tax_id', :'reference_number' => :'reference_number', - :'tracking_code' => :'tracking_code' + :'tracking_code' => :'tracking_code', + :'customer_ip_address' => :'customer_ip_address' } end @@ -100,7 +103,8 @@ def self.openapi_types :'receiving_account_bank' => :'String', :'receiving_account_tax_id' => :'String', :'reference_number' => :'String', - :'tracking_code' => :'String' + :'tracking_code' => :'String', + :'customer_ip_address' => :'String' } end @@ -116,7 +120,7 @@ def self.openapi_nullable :'receiving_account_holder_name', :'receiving_account_tax_id', :'reference_number', - :'tracking_code' + :'tracking_code', ]) end @@ -217,6 +221,10 @@ def initialize(attributes = {}) if attributes.key?(:'tracking_code') self.tracking_code = attributes[:'tracking_code'] end + + if attributes.key?(:'customer_ip_address') + self.customer_ip_address = attributes[:'customer_ip_address'] + end end # Show invalid properties with the reasons. Usually used together with valid? @@ -261,7 +269,8 @@ def ==(o) receiving_account_bank == o.receiving_account_bank && receiving_account_tax_id == o.receiving_account_tax_id && reference_number == o.reference_number && - tracking_code == o.tracking_code + tracking_code == o.tracking_code && + customer_ip_address == o.customer_ip_address end # @see the `==` method @@ -273,7 +282,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [type, object, bank, clabe, description, executed_at, expires_at, issuing_account_bank, issuing_account_number, issuing_account_holder_name, issuing_account_tax_id, payment_attempts, receiving_account_holder_name, receiving_account_number, receiving_account_bank, receiving_account_tax_id, reference_number, tracking_code].hash + [type, object, bank, clabe, description, executed_at, expires_at, issuing_account_bank, issuing_account_number, issuing_account_holder_name, issuing_account_tax_id, payment_attempts, receiving_account_holder_name, receiving_account_number, receiving_account_bank, receiving_account_tax_id, reference_number, tracking_code, customer_ip_address].hash end # Builds the object from hash diff --git a/lib/conekta/models/payment_method_card.rb b/lib/conekta/models/payment_method_card.rb index 341911d..efd4018 100644 --- a/lib/conekta/models/payment_method_card.rb +++ b/lib/conekta/models/payment_method_card.rb @@ -19,29 +19,40 @@ class PaymentMethodCard attr_accessor :object + # Account type of the card attr_accessor :account_type attr_accessor :auth_code + # Brand of the card attr_accessor :brand # Id sent for recurrent charges. attr_accessor :contract_id + # Country of the card attr_accessor :country + # Expiration month of the card attr_accessor :exp_month + # Expiration year of the card attr_accessor :exp_year attr_accessor :fraud_indicators + # Issuer of the card attr_accessor :issuer + # Last 4 digits of the card attr_accessor :last4 + # Name of the cardholder attr_accessor :name + # Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes + attr_accessor :customer_ip_address + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { @@ -57,7 +68,8 @@ def self.attribute_map :'fraud_indicators' => :'fraud_indicators', :'issuer' => :'issuer', :'last4' => :'last4', - :'name' => :'name' + :'name' => :'name', + :'customer_ip_address' => :'customer_ip_address' } end @@ -81,7 +93,8 @@ def self.openapi_types :'fraud_indicators' => :'Array', :'issuer' => :'String', :'last4' => :'String', - :'name' => :'String' + :'name' => :'String', + :'customer_ip_address' => :'String' } end @@ -168,6 +181,10 @@ def initialize(attributes = {}) if attributes.key?(:'name') self.name = attributes[:'name'] end + + if attributes.key?(:'customer_ip_address') + self.customer_ip_address = attributes[:'customer_ip_address'] + end end # Show invalid properties with the reasons. Usually used together with valid? @@ -207,7 +224,8 @@ def ==(o) fraud_indicators == o.fraud_indicators && issuer == o.issuer && last4 == o.last4 && - name == o.name + name == o.name && + customer_ip_address == o.customer_ip_address end # @see the `==` method @@ -219,7 +237,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [type, object, account_type, auth_code, brand, contract_id, country, exp_month, exp_year, fraud_indicators, issuer, last4, name].hash + [type, object, account_type, auth_code, brand, contract_id, country, exp_month, exp_year, fraud_indicators, issuer, last4, name, customer_ip_address].hash end # Builds the object from hash diff --git a/lib/conekta/models/payment_method_card_request.rb b/lib/conekta/models/payment_method_card_request.rb index 5cf3507..6eb1188 100644 --- a/lib/conekta/models/payment_method_card_request.rb +++ b/lib/conekta/models/payment_method_card_request.rb @@ -18,14 +18,34 @@ class PaymentMethodCardRequest # Type of payment method attr_accessor :type - # Token id that will be used to create a \"card\" type payment method. See the (subscriptions)[https://developers.conekta.com/v2.1.0/reference/createsubscription] tutorial for more information on how to tokenize cards. - attr_accessor :token_id + # Card security code + attr_accessor :cvc + + # Card expiration month + attr_accessor :exp_month + + # Card expiration year + attr_accessor :exp_year + + # Cardholder name + attr_accessor :name + + # Card number + attr_accessor :number + + # Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes + attr_accessor :customer_ip_address # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'type' => :'type', - :'token_id' => :'token_id' + :'cvc' => :'cvc', + :'exp_month' => :'exp_month', + :'exp_year' => :'exp_year', + :'name' => :'name', + :'number' => :'number', + :'customer_ip_address' => :'customer_ip_address' } end @@ -38,7 +58,12 @@ def self.acceptable_attributes def self.openapi_types { :'type' => :'String', - :'token_id' => :'String' + :'cvc' => :'String', + :'exp_month' => :'String', + :'exp_year' => :'String', + :'name' => :'String', + :'number' => :'String', + :'customer_ip_address' => :'String' } end @@ -76,10 +101,38 @@ def initialize(attributes = {}) self.type = nil end - if attributes.key?(:'token_id') - self.token_id = attributes[:'token_id'] + if attributes.key?(:'cvc') + self.cvc = attributes[:'cvc'] + else + self.cvc = nil + end + + if attributes.key?(:'exp_month') + self.exp_month = attributes[:'exp_month'] + else + self.exp_month = nil + end + + if attributes.key?(:'exp_year') + self.exp_year = attributes[:'exp_year'] + else + self.exp_year = nil + end + + if attributes.key?(:'name') + self.name = attributes[:'name'] + else + self.name = nil + end + + if attributes.key?(:'number') + self.number = attributes[:'number'] else - self.token_id = nil + self.number = nil + end + + if attributes.key?(:'customer_ip_address') + self.customer_ip_address = attributes[:'customer_ip_address'] end end @@ -92,8 +145,48 @@ def list_invalid_properties invalid_properties.push('invalid value for "type", type cannot be nil.') end - if @token_id.nil? - invalid_properties.push('invalid value for "token_id", token_id cannot be nil.') + if @cvc.nil? + invalid_properties.push('invalid value for "cvc", cvc cannot be nil.') + end + + if @cvc.to_s.length > 4 + invalid_properties.push('invalid value for "cvc", the character length must be smaller than or equal to 4.') + end + + if @cvc.to_s.length < 3 + invalid_properties.push('invalid value for "cvc", the character length must be great than or equal to 3.') + end + + if @exp_month.nil? + invalid_properties.push('invalid value for "exp_month", exp_month cannot be nil.') + end + + if @exp_month.to_s.length > 2 + invalid_properties.push('invalid value for "exp_month", the character length must be smaller than or equal to 2.') + end + + if @exp_month.to_s.length < 2 + invalid_properties.push('invalid value for "exp_month", the character length must be great than or equal to 2.') + end + + if @exp_year.nil? + invalid_properties.push('invalid value for "exp_year", exp_year cannot be nil.') + end + + if @exp_year.to_s.length > 4 + invalid_properties.push('invalid value for "exp_year", the character length must be smaller than or equal to 4.') + end + + if @exp_year.to_s.length < 4 + invalid_properties.push('invalid value for "exp_year", the character length must be great than or equal to 4.') + end + + if @name.nil? + invalid_properties.push('invalid value for "name", name cannot be nil.') + end + + if @number.nil? + invalid_properties.push('invalid value for "number", number cannot be nil.') end invalid_properties @@ -104,17 +197,86 @@ def list_invalid_properties def valid? warn '[DEPRECATED] the `valid?` method is obsolete' return false if @type.nil? - return false if @token_id.nil? + return false if @cvc.nil? + return false if @cvc.to_s.length > 4 + return false if @cvc.to_s.length < 3 + return false if @exp_month.nil? + return false if @exp_month.to_s.length > 2 + return false if @exp_month.to_s.length < 2 + return false if @exp_year.nil? + return false if @exp_year.to_s.length > 4 + return false if @exp_year.to_s.length < 4 + return false if @name.nil? + return false if @number.nil? true end + # Custom attribute writer method with validation + # @param [Object] cvc Value to be assigned + def cvc=(cvc) + if cvc.nil? + fail ArgumentError, 'cvc cannot be nil' + end + + if cvc.to_s.length > 4 + fail ArgumentError, 'invalid value for "cvc", the character length must be smaller than or equal to 4.' + end + + if cvc.to_s.length < 3 + fail ArgumentError, 'invalid value for "cvc", the character length must be great than or equal to 3.' + end + + @cvc = cvc + end + + # Custom attribute writer method with validation + # @param [Object] exp_month Value to be assigned + def exp_month=(exp_month) + if exp_month.nil? + fail ArgumentError, 'exp_month cannot be nil' + end + + if exp_month.to_s.length > 2 + fail ArgumentError, 'invalid value for "exp_month", the character length must be smaller than or equal to 2.' + end + + if exp_month.to_s.length < 2 + fail ArgumentError, 'invalid value for "exp_month", the character length must be great than or equal to 2.' + end + + @exp_month = exp_month + end + + # Custom attribute writer method with validation + # @param [Object] exp_year Value to be assigned + def exp_year=(exp_year) + if exp_year.nil? + fail ArgumentError, 'exp_year cannot be nil' + end + + if exp_year.to_s.length > 4 + fail ArgumentError, 'invalid value for "exp_year", the character length must be smaller than or equal to 4.' + end + + if exp_year.to_s.length < 4 + fail ArgumentError, 'invalid value for "exp_year", the character length must be great than or equal to 4.' + end + + @exp_year = exp_year + end + # Checks equality by comparing each attribute. # @param [Object] Object to be compared def ==(o) return true if self.equal?(o) self.class == o.class && type == o.type && - token_id == o.token_id + cvc == o.cvc && + exp_month == o.exp_month && + exp_year == o.exp_year && + name == o.name && + number == o.number && + customer_ip_address == o.customer_ip_address end # @see the `==` method @@ -126,7 +288,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [type, token_id].hash + [type, cvc, exp_month, exp_year, name, number, customer_ip_address].hash end # Builds the object from hash diff --git a/lib/conekta/models/payment_method_cash.rb b/lib/conekta/models/payment_method_cash.rb index 477bbda..ef3c65d 100644 --- a/lib/conekta/models/payment_method_cash.rb +++ b/lib/conekta/models/payment_method_cash.rb @@ -35,6 +35,8 @@ class PaymentMethodCash attr_accessor :store_name + attr_accessor :customer_ip_address + # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { @@ -47,7 +49,8 @@ def self.attribute_map :'expires_at' => :'expires_at', :'service_name' => :'service_name', :'store' => :'store', - :'store_name' => :'store_name' + :'store_name' => :'store_name', + :'customer_ip_address' => :'customer_ip_address' } end @@ -68,7 +71,8 @@ def self.openapi_types :'expires_at' => :'Integer', :'service_name' => :'String', :'store' => :'String', - :'store_name' => :'String' + :'store_name' => :'String', + :'customer_ip_address' => :'String' } end @@ -144,6 +148,10 @@ def initialize(attributes = {}) if attributes.key?(:'store_name') self.store_name = attributes[:'store_name'] end + + if attributes.key?(:'customer_ip_address') + self.customer_ip_address = attributes[:'customer_ip_address'] + end end # Show invalid properties with the reasons. Usually used together with valid? @@ -180,7 +188,8 @@ def ==(o) expires_at == o.expires_at && service_name == o.service_name && store == o.store && - store_name == o.store_name + store_name == o.store_name && + customer_ip_address == o.customer_ip_address end # @see the `==` method @@ -192,7 +201,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [type, object, auth_code, cashier_id, reference, barcode_url, expires_at, service_name, store, store_name].hash + [type, object, auth_code, cashier_id, reference, barcode_url, expires_at, service_name, store, store_name, customer_ip_address].hash end # Builds the object from hash diff --git a/lib/conekta/models/payment_method_general_request.rb b/lib/conekta/models/payment_method_general_request.rb new file mode 100644 index 0000000..2bac6f3 --- /dev/null +++ b/lib/conekta/models/payment_method_general_request.rb @@ -0,0 +1,291 @@ +=begin +#Conekta API + +#Conekta sdk + +The version of the OpenAPI document: 2.1.0 +Contact: engineering@conekta.com +Generated by: https://openapi-generator.tech +Generator version: 7.5.0 + +=end + +require 'date' +require 'time' + +module Conekta + # Payment method used in the charge. Go to the [payment methods](https://developers.conekta.com/reference/m%C3%A9todos-de-pago) section for more details + class PaymentMethodGeneralRequest + # Method expiration date as unix timestamp + attr_accessor :expires_at + + # How many months without interest to apply, it can be 3, 6, 9, 12 or 18 + attr_accessor :monthly_installments + + # Type of payment method + attr_accessor :type + + attr_accessor :token_id + + attr_accessor :payment_source_id + + # Optional, It is a value that allows identifying the security code of the card. Only for PCI merchants + attr_accessor :cvc + + # Optional id sent to indicate the bank contract for recurrent card charges. + attr_accessor :contract_id + + # Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes + attr_accessor :customer_ip_address + + # Attribute mapping from ruby-style variable name to JSON key. + def self.attribute_map + { + :'expires_at' => :'expires_at', + :'monthly_installments' => :'monthly_installments', + :'type' => :'type', + :'token_id' => :'token_id', + :'payment_source_id' => :'payment_source_id', + :'cvc' => :'cvc', + :'contract_id' => :'contract_id', + :'customer_ip_address' => :'customer_ip_address' + } + end + + # Returns all the JSON keys this model knows about + def self.acceptable_attributes + attribute_map.values + end + + # Attribute type mapping. + def self.openapi_types + { + :'expires_at' => :'Integer', + :'monthly_installments' => :'Integer', + :'type' => :'String', + :'token_id' => :'String', + :'payment_source_id' => :'String', + :'cvc' => :'String', + :'contract_id' => :'String', + :'customer_ip_address' => :'String' + } + end + + # List of attributes with nullable: true + def self.openapi_nullable + Set.new([ + ]) + end + + # Initializes the object + # @param [Hash] attributes Model attributes in the form of hash + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `Conekta::PaymentMethodGeneralRequest` initialize method" + end + + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + fail ArgumentError, "`#{k}` is not a valid attribute in `Conekta::PaymentMethodGeneralRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect + end + h[k.to_sym] = v + } + + if attributes.key?(:'expires_at') + self.expires_at = attributes[:'expires_at'] + end + + if attributes.key?(:'monthly_installments') + self.monthly_installments = attributes[:'monthly_installments'] + end + + if attributes.key?(:'type') + self.type = attributes[:'type'] + else + self.type = nil + end + + if attributes.key?(:'token_id') + self.token_id = attributes[:'token_id'] + end + + if attributes.key?(:'payment_source_id') + self.payment_source_id = attributes[:'payment_source_id'] + end + + if attributes.key?(:'cvc') + self.cvc = attributes[:'cvc'] + end + + if attributes.key?(:'contract_id') + self.contract_id = attributes[:'contract_id'] + end + + if attributes.key?(:'customer_ip_address') + self.customer_ip_address = attributes[:'customer_ip_address'] + end + end + + # Show invalid properties with the reasons. Usually used together with valid? + # @return Array for valid properties with the reasons + def list_invalid_properties + warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' + invalid_properties = Array.new + if @type.nil? + invalid_properties.push('invalid value for "type", type cannot be nil.') + end + + invalid_properties + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + def valid? + warn '[DEPRECATED] the `valid?` method is obsolete' + return false if @type.nil? + true + end + + # Checks equality by comparing each attribute. + # @param [Object] Object to be compared + def ==(o) + return true if self.equal?(o) + self.class == o.class && + expires_at == o.expires_at && + monthly_installments == o.monthly_installments && + type == o.type && + token_id == o.token_id && + payment_source_id == o.payment_source_id && + cvc == o.cvc && + contract_id == o.contract_id && + customer_ip_address == o.customer_ip_address + end + + # @see the `==` method + # @param [Object] Object to be compared + def eql?(o) + self == o + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + def hash + [expires_at, monthly_installments, type, token_id, payment_source_id, cvc, contract_id, customer_ip_address].hash + end + + # Builds the object from hash + # @param [Hash] attributes Model attributes in the form of hash + # @return [Object] Returns the model itself + def self.build_from_hash(attributes) + return nil unless attributes.is_a?(Hash) + attributes = attributes.transform_keys(&:to_sym) + transformed_hash = {} + openapi_types.each_pair do |key, type| + if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? + transformed_hash["#{key}"] = nil + elsif type =~ /\AArray<(.*)>/i + # check to ensure the input is an array given that the attribute + # is documented as an array but the input is not + if attributes[attribute_map[key]].is_a?(Array) + transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } + end + elsif !attributes[attribute_map[key]].nil? + transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) + end + end + new(transformed_hash) + end + + # Deserializes the data based on type + # @param string type Data type + # @param string value Value to be deserialized + # @return [Object] Deserialized data + def self._deserialize(type, value) + case type.to_sym + when :Time + Time.parse(value) + when :Date + Date.parse(value) + when :String + value.to_s + when :Integer + value.to_i + when :Float + value.to_f + when :Boolean + if value.to_s =~ /\A(true|t|yes|y|1)\z/i + true + else + false + end + when :Object + # generic object (usually a Hash), return directly + value + when /\AArray<(?.+)>\z/ + inner_type = Regexp.last_match[:inner_type] + value.map { |v| _deserialize(inner_type, v) } + when /\AHash<(?.+?), (?.+)>\z/ + k_type = Regexp.last_match[:k_type] + v_type = Regexp.last_match[:v_type] + {}.tap do |hash| + value.each do |k, v| + hash[_deserialize(k_type, k)] = _deserialize(v_type, v) + end + end + else # model + # models (e.g. Pet) or oneOf + klass = Conekta.const_get(type) + klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) + end + end + + # Returns the string representation of the object + # @return [String] String presentation of the object + def to_s + to_hash.to_s + end + + # to_body is an alias to to_hash (backward compatibility) + # @return [Hash] Returns the object in the form of hash + def to_body + to_hash + end + + # Returns the object in the form of hash + # @return [Hash] Returns the object in the form of hash + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + hash + end + + # Outputs non-array value in the form of hash + # For object, use to_hash. Otherwise, just return the value + # @param [Object] value Any valid value + # @return [Hash] Returns the value in the form of hash + def _to_hash(value) + if value.is_a?(Array) + value.compact.map { |v| _to_hash(v) } + elsif value.is_a?(Hash) + {}.tap do |hash| + value.each { |k, v| hash[k] = _to_hash(v) } + end + elsif value.respond_to? :to_hash + value.to_hash + else + value + end + end + + end + +end diff --git a/lib/conekta/models/payment_method_token_request.rb b/lib/conekta/models/payment_method_token_request.rb new file mode 100644 index 0000000..79bc74e --- /dev/null +++ b/lib/conekta/models/payment_method_token_request.rb @@ -0,0 +1,246 @@ +=begin +#Conekta API + +#Conekta sdk + +The version of the OpenAPI document: 2.1.0 +Contact: engineering@conekta.com +Generated by: https://openapi-generator.tech +Generator version: 7.5.0 + +=end + +require 'date' +require 'time' + +module Conekta + class PaymentMethodTokenRequest + # Type of payment method + attr_accessor :type + + # Token id that will be used to create a \"card\" type payment method. See the (subscriptions)[https://developers.conekta.com/v2.1.0/reference/createsubscription] tutorial for more information on how to tokenize cards. + attr_accessor :token_id + + # Attribute mapping from ruby-style variable name to JSON key. + def self.attribute_map + { + :'type' => :'type', + :'token_id' => :'token_id' + } + end + + # Returns all the JSON keys this model knows about + def self.acceptable_attributes + attribute_map.values + end + + # Attribute type mapping. + def self.openapi_types + { + :'type' => :'String', + :'token_id' => :'String' + } + end + + # List of attributes with nullable: true + def self.openapi_nullable + Set.new([ + ]) + end + + # List of class defined in allOf (OpenAPI v3) + def self.openapi_all_of + [ + :'CustomerPaymentMethodRequest' + ] + end + + # Initializes the object + # @param [Hash] attributes Model attributes in the form of hash + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `Conekta::PaymentMethodTokenRequest` initialize method" + end + + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + fail ArgumentError, "`#{k}` is not a valid attribute in `Conekta::PaymentMethodTokenRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect + end + h[k.to_sym] = v + } + + if attributes.key?(:'type') + self.type = attributes[:'type'] + else + self.type = nil + end + + if attributes.key?(:'token_id') + self.token_id = attributes[:'token_id'] + else + self.token_id = nil + end + end + + # Show invalid properties with the reasons. Usually used together with valid? + # @return Array for valid properties with the reasons + def list_invalid_properties + warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' + invalid_properties = Array.new + if @type.nil? + invalid_properties.push('invalid value for "type", type cannot be nil.') + end + + if @token_id.nil? + invalid_properties.push('invalid value for "token_id", token_id cannot be nil.') + end + + invalid_properties + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + def valid? + warn '[DEPRECATED] the `valid?` method is obsolete' + return false if @type.nil? + return false if @token_id.nil? + true + end + + # Checks equality by comparing each attribute. + # @param [Object] Object to be compared + def ==(o) + return true if self.equal?(o) + self.class == o.class && + type == o.type && + token_id == o.token_id + end + + # @see the `==` method + # @param [Object] Object to be compared + def eql?(o) + self == o + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + def hash + [type, token_id].hash + end + + # Builds the object from hash + # @param [Hash] attributes Model attributes in the form of hash + # @return [Object] Returns the model itself + def self.build_from_hash(attributes) + return nil unless attributes.is_a?(Hash) + attributes = attributes.transform_keys(&:to_sym) + transformed_hash = {} + openapi_types.each_pair do |key, type| + if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? + transformed_hash["#{key}"] = nil + elsif type =~ /\AArray<(.*)>/i + # check to ensure the input is an array given that the attribute + # is documented as an array but the input is not + if attributes[attribute_map[key]].is_a?(Array) + transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } + end + elsif !attributes[attribute_map[key]].nil? + transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) + end + end + new(transformed_hash) + end + + # Deserializes the data based on type + # @param string type Data type + # @param string value Value to be deserialized + # @return [Object] Deserialized data + def self._deserialize(type, value) + case type.to_sym + when :Time + Time.parse(value) + when :Date + Date.parse(value) + when :String + value.to_s + when :Integer + value.to_i + when :Float + value.to_f + when :Boolean + if value.to_s =~ /\A(true|t|yes|y|1)\z/i + true + else + false + end + when :Object + # generic object (usually a Hash), return directly + value + when /\AArray<(?.+)>\z/ + inner_type = Regexp.last_match[:inner_type] + value.map { |v| _deserialize(inner_type, v) } + when /\AHash<(?.+?), (?.+)>\z/ + k_type = Regexp.last_match[:k_type] + v_type = Regexp.last_match[:v_type] + {}.tap do |hash| + value.each do |k, v| + hash[_deserialize(k_type, k)] = _deserialize(v_type, v) + end + end + else # model + # models (e.g. Pet) or oneOf + klass = Conekta.const_get(type) + klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) + end + end + + # Returns the string representation of the object + # @return [String] String presentation of the object + def to_s + to_hash.to_s + end + + # to_body is an alias to to_hash (backward compatibility) + # @return [Hash] Returns the object in the form of hash + def to_body + to_hash + end + + # Returns the object in the form of hash + # @return [Hash] Returns the object in the form of hash + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + hash + end + + # Outputs non-array value in the form of hash + # For object, use to_hash. Otherwise, just return the value + # @param [Object] value Any valid value + # @return [Hash] Returns the value in the form of hash + def _to_hash(value) + if value.is_a?(Array) + value.compact.map { |v| _to_hash(v) } + elsif value.is_a?(Hash) + {}.tap do |hash| + value.each { |k, v| hash[k] = _to_hash(v) } + end + elsif value.respond_to? :to_hash + value.to_hash + else + value + end + end + + end + +end diff --git a/lib/conekta/models/subscription_response.rb b/lib/conekta/models/subscription_response.rb index 86e5bfd..9803aac 100644 --- a/lib/conekta/models/subscription_response.rb +++ b/lib/conekta/models/subscription_response.rb @@ -22,6 +22,9 @@ class SubscriptionResponse attr_accessor :canceled_at + # Reason for cancellation. This field appears when the subscription status is 'canceled'. + attr_accessor :canceled_reason + attr_accessor :card_id attr_accessor :charge_id @@ -56,6 +59,7 @@ def self.attribute_map :'billing_cycle_start' => :'billing_cycle_start', :'billing_cycle_end' => :'billing_cycle_end', :'canceled_at' => :'canceled_at', + :'canceled_reason' => :'canceled_reason', :'card_id' => :'card_id', :'charge_id' => :'charge_id', :'created_at' => :'created_at', @@ -84,6 +88,7 @@ def self.openapi_types :'billing_cycle_start' => :'Integer', :'billing_cycle_end' => :'Integer', :'canceled_at' => :'Integer', + :'canceled_reason' => :'String', :'card_id' => :'String', :'charge_id' => :'String', :'created_at' => :'Integer', @@ -141,6 +146,10 @@ def initialize(attributes = {}) self.canceled_at = attributes[:'canceled_at'] end + if attributes.key?(:'canceled_reason') + self.canceled_reason = attributes[:'canceled_reason'] + end + if attributes.key?(:'card_id') self.card_id = attributes[:'card_id'] end @@ -221,6 +230,7 @@ def ==(o) billing_cycle_start == o.billing_cycle_start && billing_cycle_end == o.billing_cycle_end && canceled_at == o.canceled_at && + canceled_reason == o.canceled_reason && card_id == o.card_id && charge_id == o.charge_id && created_at == o.created_at && @@ -246,7 +256,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [billing_cycle_start, billing_cycle_end, canceled_at, card_id, charge_id, created_at, customer_custom_reference, customer_id, id, last_billing_cycle_order_id, object, paused_at, plan_id, status, subscription_start, trial_start, trial_end].hash + [billing_cycle_start, billing_cycle_end, canceled_at, canceled_reason, card_id, charge_id, created_at, customer_custom_reference, customer_id, id, last_billing_cycle_order_id, object, paused_at, plan_id, status, subscription_start, trial_start, trial_end].hash end # Builds the object from hash diff --git a/lib/conekta/version.rb b/lib/conekta/version.rb index 6b551c1..be7c3f6 100644 --- a/lib/conekta/version.rb +++ b/lib/conekta/version.rb @@ -11,5 +11,5 @@ =end module Conekta - VERSION = '6.0.3' + VERSION = '6.0.4' end diff --git a/spec/api/charges_api_spec.rb b/spec/api/charges_api_spec.rb index af7ea0d..da8c00b 100644 --- a/spec/api/charges_api_spec.rb +++ b/spec/api/charges_api_spec.rb @@ -75,12 +75,16 @@ describe 'orders_create_charge test' do it 'card' do id = 'ord_2tVKxbhNzfUnGjnXG' + + payment_method_data = { + type: 'card', + token_id: 'ttest5214' + } + + payment_method = Conekta::ChargeRequestPaymentMethod.build(payment_method_data) charge_request = Conekta::ChargeRequest.new({ amount: 40000, - payment_method: Conekta::ChargeRequestPaymentMethod.new({ - type: 'card', - token_id: 'tok_2tVKyGpobEKAR3xVH' - }) + payment_method: payment_method }) response = @api_instance.orders_create_charge(id, charge_request) @@ -95,11 +99,13 @@ it 'cash' do id = "ord_2tVL8dT1Hm3y3YiaN" + payment_method_data = { + type: 'cash', + } + payment_method = Conekta::ChargeRequestPaymentMethod.build(payment_method_data) charge_request = Conekta::ChargeRequest.new({ amount: 40000, - payment_method: Conekta::ChargeRequestPaymentMethod.new({ - type: 'cash', - }) + payment_method: payment_method }) response = @api_instance.orders_create_charge(id,charge_request) @@ -117,11 +123,13 @@ end it 'spei' do id = "ord_2tVLUFrQBB4HKz1zj" + payment_method_data = { + type: 'spei', + } + payment_method = Conekta::ChargeRequestPaymentMethod.build(payment_method_data) charge_request = Conekta::ChargeRequest.new({ amount: 40000, - payment_method: Conekta::ChargeRequestPaymentMethod.new({ - type: 'spei', - }) + payment_method: payment_method }) response = @api_instance.orders_create_charge(id,charge_request) diff --git a/spec/api/customers_api_spec.rb b/spec/api/customers_api_spec.rb index c18c9c2..6713b43 100644 --- a/spec/api/customers_api_spec.rb +++ b/spec/api/customers_api_spec.rb @@ -265,11 +265,17 @@ def full_customer }) payment_sources = Array.new(1) + payment_method_data = { + type: 'card', + cvc: '123', + exp_month: '12', + exp_year: '2025', + name: 'John Doe', + number: '4242424242424242', + customer_ip_address: '127.0.0.1' + } payment_sources[0] = - Conekta::PaymentMethodCardRequest.new({ - type: 'card', - token_id: 'tok_2tXyExrU6U7yiaTto' - }) + Conekta::PaymentMethodCardRequest.new(payment_method_data) shipping_contacts = Array.new(1) shipping_contacts[0] = Conekta::CustomerShippingContacts.new({ address: Conekta::CustomerShippingContactsAddress.new({ diff --git a/spec/api/orders_api_spec.rb b/spec/api/orders_api_spec.rb index fb03bde..3f2e075 100644 --- a/spec/api/orders_api_spec.rb +++ b/spec/api/orders_api_spec.rb @@ -83,14 +83,14 @@ unit_price: 1555 }) ] + payment_method_data = { + expires_at: unix_timestamp, + type: 'cash' + } charges = Array.new(1) + payment_method = Conekta::ChargeRequestPaymentMethod.build(payment_method_data) charges[0] = Conekta::ChargeRequest.new({ amount: 1555, - payment_method: Conekta::ChargeRequestPaymentMethod.new( - { - expires_at: unix_timestamp, - type: 'cash' - } - ) + payment_method: Conekta::ChargeRequestPaymentMethod.build(payment_method_data) }) request = Conekta::OrderRequest.new( {