wire4_client 0.0.1.pre.SNAPSHOT → 0.0.9.pre.TEST
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.
- checksums.yaml +4 -4
- data/README.md +84 -44
- data/docs/Account.md +3 -3
- data/docs/AccountDetail.md +13 -0
- data/docs/AccountReassigned.md +22 -0
- data/docs/AccountResponse.md +6 -3
- data/docs/AccountSpid.md +2 -2
- data/docs/AddressCompany.md +17 -0
- data/docs/AmountRequest.md +2 -0
- data/docs/AuthorizationTransactionGroup.md +9 -0
- data/docs/AuthorizedBeneficiariesResponse.md +10 -0
- data/docs/AuthorizedUsers.md +13 -0
- data/docs/AutorizacinDeDepsitosApi.md +113 -0
- data/docs/BeneficiariesQueryRegisterStatus.md +13 -0
- data/docs/BillingTransaction.md +1 -1
- data/docs/CertificateRequest.md +11 -0
- data/docs/CodiCodeQrResponseDTO.md +17 -0
- data/docs/CodiCodeRequestDTO.md +14 -0
- data/docs/CodiOperationResponseDTO.md +14 -0
- data/docs/CodiOperationsFiltersRequestDTO.md +15 -0
- data/docs/CompanyRegistered.md +13 -0
- data/docs/CompanyRequested.md +11 -0
- data/docs/Compay.md +11 -0
- data/docs/ComprobanteElectrnicoDePagoCEPApi.md +6 -8
- data/docs/ConfigurationsLimits.md +9 -0
- data/docs/ContactoApi.md +6 -8
- data/docs/ContractDetailRequest.md +11 -0
- data/docs/ContractDetailResponse.md +9 -0
- data/docs/ContractsDetailsApi.md +222 -0
- data/docs/CuentasDeBeneficiariosSPEIApi.md +163 -54
- data/docs/CuentasDeBeneficiariosSPIDApi.md +73 -8
- data/docs/Deposit.md +1 -0
- data/docs/DepositAuthorizationRequest.md +10 -0
- data/docs/DepositantesApi.md +12 -16
- data/docs/DepositsAuthorizationResponse.md +10 -0
- data/docs/DetailedErrorResponse.md +10 -0
- data/docs/EmpresasCoDiApi.md +107 -0
- data/docs/FacturasApi.md +12 -16
- data/docs/InstitucionesApi.md +10 -9
- data/docs/Item.md +10 -0
- data/docs/LmitesDeMontosApi.md +112 -0
- data/docs/MessageAccountBeneficiary.md +2 -2
- data/docs/MessageCEP.md +9 -9
- data/docs/MessageCodiAction.md +19 -0
- data/docs/MessageConfigurationsLimits.md +8 -0
- data/docs/MessageDepositAuthorizationRequest.md +27 -0
- data/docs/MessageDepositReceived.md +1 -0
- data/docs/MessagePayment.md +3 -1
- data/docs/MessagePaymentStatePending.md +23 -0
- data/docs/MessageRequestChanged.md +9 -0
- data/docs/MessageSalesPoint.md +10 -0
- data/docs/MessageSubscription.md +6 -5
- data/docs/MessageUserAuthorized.md +14 -0
- data/docs/MessageWebHook.md +2 -2
- data/docs/OperacionesCoDiApi.md +68 -0
- data/docs/Operations.md +17 -0
- data/docs/PagerResponseDto.md +13 -0
- data/docs/Payment.md +4 -2
- data/docs/PaymentCODI.md +13 -0
- data/docs/PaymentRequestCodiResponseDTO.md +18 -0
- data/docs/PaymentsRequestId.md +13 -0
- data/docs/PeticionesDePagoPorCoDiApi.md +116 -0
- data/docs/PreMonexAuthorization.md +11 -0
- data/docs/PuntosDeVentaCoDiApi.md +113 -0
- data/docs/SaldoApi.md +6 -8
- data/docs/SalesPoint.md +10 -0
- data/docs/SalesPointFound.md +14 -0
- data/docs/SalesPointRequest.md +11 -0
- data/docs/SalesPointRespose.md +11 -0
- data/docs/SpidBeneficiariesResponse.md +8 -0
- data/docs/SpidBeneficiaryResponse.md +20 -0
- data/docs/SuscripcionesApi.md +32 -38
- data/docs/TransactionErrorCode.md +10 -0
- data/docs/TransactionOutgoing.md +2 -1
- data/docs/TransferenciasSPEIApi.md +136 -32
- data/docs/TransferenciasSPIDApi.md +12 -16
- data/docs/UpdateConfigurationsRequestDTO.md +8 -0
- data/docs/UrlsRedirect.md +9 -0
- data/docs/UserCompany.md +16 -0
- data/docs/WebHookDepositAuthorizationRequest.md +9 -0
- data/docs/WebHookDepositAuthorizationResponse.md +13 -0
- data/docs/Webhook.md +13 -0
- data/docs/WebhooksApi.md +22 -25
- data/lib/wire4_client.rb +56 -2
- data/lib/wire4_client/api/autorizacin_de_depsitos_api.rb +173 -0
- data/lib/wire4_client/api/comprobante_electrnico_de_pago_cep_api.rb +12 -5
- data/lib/wire4_client/api/contacto_api.rb +12 -5
- data/lib/wire4_client/api/contracts_details_api.rb +301 -0
- data/lib/wire4_client/api/cuentas_de_beneficiarios_spei_api.rb +262 -33
- data/lib/wire4_client/api/cuentas_de_beneficiarios_spid_api.rb +104 -5
- data/lib/wire4_client/api/depositantes_api.rb +23 -9
- data/lib/wire4_client/api/empresas_co_di_api.rb +137 -0
- data/lib/wire4_client/api/facturas_api.rb +23 -9
- data/lib/wire4_client/api/instituciones_api.rb +12 -5
- data/lib/wire4_client/api/lmites_de_montos_api.rb +160 -0
- data/lib/wire4_client/api/operaciones_co_di_api.rb +92 -0
- data/lib/wire4_client/api/peticiones_de_pago_por_co_di_api.rb +178 -0
- data/lib/wire4_client/api/puntos_de_venta_co_di_api.rb +151 -0
- data/lib/wire4_client/api/saldo_api.rb +12 -5
- data/lib/wire4_client/api/suscripciones_api.rb +48 -27
- data/lib/wire4_client/api/transferencias_spei_api.rb +204 -17
- data/lib/wire4_client/api/transferencias_spid_api.rb +23 -9
- data/lib/wire4_client/api/webhooks_api.rb +34 -13
- data/lib/wire4_client/api_client.rb +1 -2
- data/lib/wire4_client/api_error.rb +1 -1
- data/lib/wire4_client/configuration.rb +1 -22
- data/lib/wire4_client/models/account.rb +4 -4
- data/lib/wire4_client/models/account_detail.rb +239 -0
- data/lib/wire4_client/models/account_reassigned.rb +385 -0
- data/lib/wire4_client/models/account_request.rb +1 -1
- data/lib/wire4_client/models/account_response.rb +38 -8
- data/lib/wire4_client/models/account_spid.rb +3 -3
- data/lib/wire4_client/models/address_company.rb +275 -0
- data/lib/wire4_client/models/amount_request.rb +91 -5
- data/lib/wire4_client/models/authorization_transaction_group.rb +207 -0
- data/lib/wire4_client/models/authorized_beneficiaries_response.rb +206 -0
- data/lib/wire4_client/models/authorized_users.rb +235 -0
- data/lib/wire4_client/models/balance.rb +1 -1
- data/lib/wire4_client/models/balance_list_response.rb +1 -1
- data/lib/wire4_client/models/beneficiaries_query_register_status.rb +270 -0
- data/lib/wire4_client/models/beneficiaries_response.rb +1 -1
- data/lib/wire4_client/models/beneficiary_institution.rb +1 -1
- data/lib/wire4_client/models/billing.rb +1 -1
- data/lib/wire4_client/models/billing_transaction.rb +2 -2
- data/lib/wire4_client/models/cep_response.rb +1 -1
- data/lib/wire4_client/models/cep_search_banxico.rb +1 -1
- data/lib/wire4_client/models/certificate_request.rb +248 -0
- data/lib/wire4_client/models/codi_code_qr_response_dto.rb +320 -0
- data/lib/wire4_client/models/codi_code_request_dto.rb +402 -0
- data/lib/wire4_client/models/{timestamp.rb → codi_operation_response_dto.rb} +53 -72
- data/lib/wire4_client/models/codi_operations_filters_request_dto.rb +336 -0
- data/lib/wire4_client/models/company_registered.rb +235 -0
- data/lib/wire4_client/models/company_requested.rb +215 -0
- data/lib/wire4_client/models/compay.rb +215 -0
- data/lib/wire4_client/models/configurations_limits.rb +197 -0
- data/lib/wire4_client/models/contact_request.rb +1 -1
- data/lib/wire4_client/models/contract_detail_request.rb +247 -0
- data/lib/wire4_client/models/contract_detail_response.rb +194 -0
- data/lib/wire4_client/models/deposit.rb +12 -2
- data/lib/wire4_client/models/deposit_authorization_request.rb +205 -0
- data/lib/wire4_client/models/depositant.rb +1 -1
- data/lib/wire4_client/models/depositants_register.rb +1 -1
- data/lib/wire4_client/models/depositants_response.rb +1 -1
- data/lib/wire4_client/models/deposits_authorization_response.rb +205 -0
- data/lib/wire4_client/models/detailed_error_response.rb +203 -0
- data/lib/wire4_client/models/error_response.rb +1 -1
- data/lib/wire4_client/models/get_depositants.rb +1 -1
- data/lib/wire4_client/models/institution.rb +1 -1
- data/lib/wire4_client/models/institutions_list.rb +1 -1
- data/lib/wire4_client/models/item.rb +205 -0
- data/lib/wire4_client/models/message_account_beneficiary.rb +3 -3
- data/lib/wire4_client/models/message_cep.rb +11 -11
- data/lib/wire4_client/models/message_codi_action.rb +295 -0
- data/lib/wire4_client/models/message_configurations_limits.rb +187 -0
- data/lib/wire4_client/models/message_deposit_authorization_request.rb +375 -0
- data/lib/wire4_client/models/message_deposit_received.rb +13 -3
- data/lib/wire4_client/models/message_institution.rb +1 -1
- data/lib/wire4_client/models/message_payment.rb +24 -3
- data/lib/wire4_client/models/message_payment_state_pending.rb +335 -0
- data/lib/wire4_client/models/message_request_changed.rb +229 -0
- data/lib/wire4_client/models/message_sales_point.rb +205 -0
- data/lib/wire4_client/models/message_subscription.rb +18 -8
- data/lib/wire4_client/models/message_user_authorized.rb +245 -0
- data/lib/wire4_client/models/message_web_hook.rb +3 -3
- data/lib/wire4_client/models/operations.rb +321 -0
- data/lib/wire4_client/models/pager_response_dto.rb +236 -0
- data/lib/wire4_client/models/payment.rb +24 -4
- data/lib/wire4_client/models/payment_codi.rb +269 -0
- data/lib/wire4_client/models/payment_request_codi_response_dto.rb +287 -0
- data/lib/wire4_client/models/payments_request_id.rb +236 -0
- data/lib/wire4_client/models/person.rb +1 -1
- data/lib/wire4_client/models/pre_enrollment_data.rb +1 -1
- data/lib/wire4_client/models/pre_enrollment_response.rb +1 -1
- data/lib/wire4_client/models/pre_monex_authorization.rb +291 -0
- data/lib/wire4_client/models/relationship.rb +1 -1
- data/lib/wire4_client/models/relationships_response.rb +1 -1
- data/lib/wire4_client/models/sales_point.rb +205 -0
- data/lib/wire4_client/models/sales_point_found.rb +279 -0
- data/lib/wire4_client/models/sales_point_request.rb +254 -0
- data/lib/wire4_client/models/sales_point_respose.rb +215 -0
- data/lib/wire4_client/models/spid_beneficiaries_response.rb +186 -0
- data/lib/wire4_client/models/spid_beneficiary_response.rb +365 -0
- data/lib/wire4_client/models/spid_classification_dto.rb +1 -1
- data/lib/wire4_client/models/spid_classifications_response_dto.rb +1 -1
- data/lib/wire4_client/models/token_required_response.rb +1 -1
- data/lib/wire4_client/models/transaction_error_code.rb +201 -0
- data/lib/wire4_client/models/transaction_outgoing.rb +13 -3
- data/lib/wire4_client/models/transaction_outgoing_spid.rb +1 -1
- data/lib/wire4_client/models/transactions_outgoing_register.rb +1 -1
- data/lib/wire4_client/models/update_configurations_request_dto.rb +192 -0
- data/lib/wire4_client/models/urls_redirect.rb +205 -0
- data/lib/wire4_client/models/user_company.rb +269 -0
- data/lib/wire4_client/models/web_hook_deposit_authorization_request.rb +195 -0
- data/lib/wire4_client/models/web_hook_deposit_authorization_response.rb +237 -0
- data/lib/wire4_client/models/webhook.rb +271 -0
- data/lib/wire4_client/models/webhook_request.rb +1 -1
- data/lib/wire4_client/models/webhook_response.rb +1 -1
- data/lib/wire4_client/models/webhooks_list.rb +1 -1
- data/lib/wire4_client/version.rb +2 -2
- data/spec/api/autorizacin_de_depsitos_api_spec.rb +62 -0
- data/spec/api/comprobante_electrnico_de_pago_cep_api_spec.rb +2 -1
- data/spec/api/contacto_api_spec.rb +2 -1
- data/spec/api/contracts_details_api_spec.rb +90 -0
- data/spec/api/cuentas_de_beneficiarios_spei_api_spec.rb +44 -4
- data/spec/api/cuentas_de_beneficiarios_spid_api_spec.rb +22 -1
- data/spec/api/depositantes_api_spec.rb +3 -1
- data/spec/api/empresas_co_di_api_spec.rb +60 -0
- data/spec/api/facturas_api_spec.rb +3 -1
- data/spec/api/instituciones_api_spec.rb +2 -1
- data/spec/api/lmites_de_montos_api_spec.rb +62 -0
- data/spec/api/operaciones_co_di_api_spec.rb +52 -0
- data/spec/api/peticiones_de_pago_por_co_di_api_spec.rb +63 -0
- data/spec/api/puntos_de_venta_co_di_api_spec.rb +62 -0
- data/spec/api/saldo_api_spec.rb +2 -1
- data/spec/api/suscripciones_api_spec.rb +11 -8
- data/spec/api/transferencias_spei_api_spec.rb +34 -1
- data/spec/api/transferencias_spid_api_spec.rb +3 -1
- data/spec/api/webhooks_api_spec.rb +4 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/account_detail_spec.rb +71 -0
- data/spec/models/account_reassigned_spec.rb +125 -0
- data/spec/models/account_request_spec.rb +1 -1
- data/spec/models/account_response_spec.rb +19 -1
- data/spec/models/account_spec.rb +1 -1
- data/spec/models/account_spid_spec.rb +1 -1
- data/spec/models/{timestamp_spec.rb → address_company_spec.rb} +17 -17
- data/spec/models/amount_request_spec.rb +13 -1
- data/spec/models/authorization_transaction_group_spec.rb +47 -0
- data/spec/models/authorized_beneficiaries_response_spec.rb +53 -0
- data/spec/models/authorized_users_spec.rb +71 -0
- data/spec/models/balance_list_response_spec.rb +1 -1
- data/spec/models/balance_spec.rb +1 -1
- data/spec/models/beneficiaries_query_register_status_spec.rb +75 -0
- data/spec/models/beneficiaries_response_spec.rb +1 -1
- data/spec/models/beneficiary_institution_spec.rb +1 -1
- data/spec/models/billing_spec.rb +1 -1
- data/spec/models/billing_transaction_spec.rb +1 -1
- data/spec/models/cep_response_spec.rb +1 -1
- data/spec/models/cep_search_banxico_spec.rb +1 -1
- data/spec/models/certificate_request_spec.rb +59 -0
- data/spec/models/codi_code_qr_response_dto_spec.rb +103 -0
- data/spec/models/codi_code_request_dto_spec.rb +81 -0
- data/spec/models/codi_operation_response_dto_spec.rb +77 -0
- data/spec/models/codi_operations_filters_request_dto_spec.rb +87 -0
- data/spec/models/company_registered_spec.rb +71 -0
- data/spec/models/company_requested_spec.rb +59 -0
- data/spec/models/compay_spec.rb +59 -0
- data/spec/models/configurations_limits_spec.rb +47 -0
- data/spec/models/contact_request_spec.rb +1 -1
- data/spec/models/contract_detail_request_spec.rb +59 -0
- data/spec/models/contract_detail_response_spec.rb +47 -0
- data/spec/models/deposit_authorization_request_spec.rb +53 -0
- data/spec/models/deposit_spec.rb +7 -1
- data/spec/models/depositant_spec.rb +1 -1
- data/spec/models/depositants_register_spec.rb +1 -1
- data/spec/models/depositants_response_spec.rb +1 -1
- data/spec/models/deposits_authorization_response_spec.rb +53 -0
- data/spec/models/detailed_error_response_spec.rb +53 -0
- data/spec/models/error_response_spec.rb +1 -1
- data/spec/models/get_depositants_spec.rb +1 -1
- data/spec/models/institution_spec.rb +1 -1
- data/spec/models/institutions_list_spec.rb +1 -1
- data/spec/models/item_spec.rb +53 -0
- data/spec/models/message_account_beneficiary_spec.rb +1 -1
- data/spec/models/message_cep_spec.rb +1 -1
- data/spec/models/message_codi_action_spec.rb +107 -0
- data/spec/models/message_configurations_limits_spec.rb +41 -0
- data/spec/models/message_deposit_authorization_request_spec.rb +155 -0
- data/spec/models/message_deposit_received_spec.rb +7 -1
- data/spec/models/message_institution_spec.rb +1 -1
- data/spec/models/message_payment_spec.rb +13 -1
- data/spec/models/message_payment_state_pending_spec.rb +131 -0
- data/spec/models/message_request_changed_spec.rb +51 -0
- data/spec/models/message_sales_point_spec.rb +53 -0
- data/spec/models/message_subscription_spec.rb +7 -1
- data/spec/models/message_user_authorized_spec.rb +77 -0
- data/spec/models/message_web_hook_spec.rb +1 -1
- data/spec/models/operations_spec.rb +103 -0
- data/spec/models/pager_response_dto_spec.rb +71 -0
- data/spec/models/payment_codi_spec.rb +75 -0
- data/spec/models/payment_request_codi_response_dto_spec.rb +101 -0
- data/spec/models/payment_spec.rb +13 -1
- data/spec/models/payments_request_id_spec.rb +71 -0
- data/spec/models/person_spec.rb +1 -1
- data/spec/models/pre_enrollment_data_spec.rb +1 -1
- data/spec/models/pre_enrollment_response_spec.rb +1 -1
- data/spec/models/pre_monex_authorization_spec.rb +59 -0
- data/spec/models/relationship_spec.rb +1 -1
- data/spec/models/relationships_response_spec.rb +1 -1
- data/spec/models/sales_point_found_spec.rb +81 -0
- data/spec/models/sales_point_request_spec.rb +59 -0
- data/spec/models/sales_point_respose_spec.rb +59 -0
- data/spec/models/sales_point_spec.rb +53 -0
- data/spec/models/spid_beneficiaries_response_spec.rb +41 -0
- data/spec/models/spid_beneficiary_response_spec.rb +113 -0
- data/spec/models/spid_classification_dto_spec.rb +1 -1
- data/spec/models/spid_classifications_response_dto_spec.rb +1 -1
- data/spec/models/token_required_response_spec.rb +1 -1
- data/spec/models/transaction_error_code_spec.rb +53 -0
- data/spec/models/transaction_outgoing_spec.rb +7 -1
- data/spec/models/transaction_outgoing_spid_spec.rb +1 -1
- data/spec/models/transactions_outgoing_register_spec.rb +1 -1
- data/spec/models/update_configurations_request_dto_spec.rb +41 -0
- data/spec/models/urls_redirect_spec.rb +47 -0
- data/spec/models/user_company_spec.rb +89 -0
- data/spec/models/web_hook_deposit_authorization_request_spec.rb +47 -0
- data/spec/models/web_hook_deposit_authorization_response_spec.rb +71 -0
- data/spec/models/webhook_request_spec.rb +1 -1
- data/spec/models/webhook_response_spec.rb +1 -1
- data/spec/models/webhook_spec.rb +75 -0
- data/spec/models/webhooks_list_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/wire4_client-1.0.9.gem +0 -0
- data/wire4_client.gemspec +2 -2
- metadata +267 -51
- data/Gemfile.lock +0 -69
- data/docs/Timestamp.md +0 -17
@@ -0,0 +1,9 @@
|
|
1
|
+
# Wire4Client::WebHookDepositAuthorizationRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**name** | **String** | Nombre del webhook. | [optional]
|
7
|
+
**url** | **String** | URL a la cual Wire4 enviará las notificaciones cuando un evento ocurra. | [optional]
|
8
|
+
|
9
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# Wire4Client::WebHookDepositAuthorizationResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**events** | **Array<String>** | Tipo de evento manejado por el webhook, para mas referencia sobre los tipos de eventos soportados, revise la siguiente liga: https://developers.wire4.mx/#section/Eventos. | [optional]
|
7
|
+
**name** | **String** | Nombre del webhook. | [optional]
|
8
|
+
**secret** | **String** | Llave con la cual se debe de identificar que el webhook fue enviado por Wire4, para mayor información revisar la guía de notificaciones (https://wire4.mx/#/guides/notificaciones), en la sección de \"Comprobación de firmas de Webhook\". | [optional]
|
9
|
+
**status** | **String** | Estatus en el que se encuentra el webhook. | [optional]
|
10
|
+
**url** | **String** | URL a la cual Wire4 enviará las notificaciones cuando un evento ocurra. | [optional]
|
11
|
+
**wh_uuid** | **String** | Identificador del webhook. | [optional]
|
12
|
+
|
13
|
+
|
data/docs/Webhook.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Wire4Client::Webhook
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**events** | **Array<String>** | Tipo de evento manejado por el webhook, para mas referencia sobre los tipos de eventos soportados, revise la siguiente liga: https://developers.wire4.mx/#section/Eventos. | [optional]
|
7
|
+
**name** | **String** | Nombre del webhook. | [optional]
|
8
|
+
**secret** | **String** | Llave con la cual se debe de identificar que el webhook fue enviado por Wire4, para mayor información revisar la guía de notificaciones (https://wire4.mx/#/guides/notificaciones), en la sección de \"Comprobación de firmas de Webhook\". | [optional]
|
9
|
+
**status** | **String** | Estatus en el que se encuentra el webhook. | [optional]
|
10
|
+
**url** | **String** | URL a la cual Wire4 enviará las notificaciones cuando un evento ocurra. | [optional]
|
11
|
+
**wh_id** | **String** | Identificador del webhook. | [optional]
|
12
|
+
|
13
|
+
|
data/docs/WebhooksApi.md
CHANGED
@@ -10,7 +10,7 @@ Method | HTTP request | Description
|
|
10
10
|
|
11
11
|
|
12
12
|
# **get_webhook**
|
13
|
-
> WebhookResponse get_webhook(id)
|
13
|
+
> WebhookResponse get_webhook(authorization, id)
|
14
14
|
|
15
15
|
Consulta de Webhook
|
16
16
|
|
@@ -20,20 +20,17 @@ Obtiene un webhook registrado en la plataforma mediante su identificador.
|
|
20
20
|
```ruby
|
21
21
|
# load the gem
|
22
22
|
require 'wire4_client'
|
23
|
-
# setup authorization
|
24
|
-
Wire4Client.configure do |config|
|
25
|
-
# Configure OAuth2 access token for authorization: wire4_aut_app
|
26
|
-
config.access_token = 'YOUR ACCESS TOKEN'
|
27
|
-
end
|
28
23
|
|
29
24
|
api_instance = Wire4Client::WebhooksApi.new
|
30
25
|
|
26
|
+
authorization = 'authorization_example' # String | Header para token
|
27
|
+
|
31
28
|
id = 'id_example' # String | Identificador del webhook
|
32
29
|
|
33
30
|
|
34
31
|
begin
|
35
32
|
#Consulta de Webhook
|
36
|
-
result = api_instance.get_webhook(id)
|
33
|
+
result = api_instance.get_webhook(authorization, id)
|
37
34
|
p result
|
38
35
|
rescue Wire4Client::ApiError => e
|
39
36
|
puts "Exception when calling WebhooksApi->get_webhook: #{e}"
|
@@ -44,6 +41,7 @@ end
|
|
44
41
|
|
45
42
|
Name | Type | Description | Notes
|
46
43
|
------------- | ------------- | ------------- | -------------
|
44
|
+
**authorization** | **String**| Header para token |
|
47
45
|
**id** | **String**| Identificador del webhook |
|
48
46
|
|
49
47
|
### Return type
|
@@ -52,7 +50,7 @@ Name | Type | Description | Notes
|
|
52
50
|
|
53
51
|
### Authorization
|
54
52
|
|
55
|
-
|
53
|
+
No authorization required
|
56
54
|
|
57
55
|
### HTTP request headers
|
58
56
|
|
@@ -62,7 +60,7 @@ Name | Type | Description | Notes
|
|
62
60
|
|
63
61
|
|
64
62
|
# **get_webhooks**
|
65
|
-
> WebhooksList get_webhooks
|
63
|
+
> WebhooksList get_webhooks(authorization)
|
66
64
|
|
67
65
|
Consulta de Webhooks
|
68
66
|
|
@@ -72,17 +70,15 @@ Obtiene los webhooks registrados en la plataforma que tengan estatus 'ACTIVE' e
|
|
72
70
|
```ruby
|
73
71
|
# load the gem
|
74
72
|
require 'wire4_client'
|
75
|
-
# setup authorization
|
76
|
-
Wire4Client.configure do |config|
|
77
|
-
# Configure OAuth2 access token for authorization: wire4_aut_app
|
78
|
-
config.access_token = 'YOUR ACCESS TOKEN'
|
79
|
-
end
|
80
73
|
|
81
74
|
api_instance = Wire4Client::WebhooksApi.new
|
82
75
|
|
76
|
+
authorization = 'authorization_example' # String | Header para token
|
77
|
+
|
78
|
+
|
83
79
|
begin
|
84
80
|
#Consulta de Webhooks
|
85
|
-
result = api_instance.get_webhooks
|
81
|
+
result = api_instance.get_webhooks(authorization)
|
86
82
|
p result
|
87
83
|
rescue Wire4Client::ApiError => e
|
88
84
|
puts "Exception when calling WebhooksApi->get_webhooks: #{e}"
|
@@ -90,7 +86,10 @@ end
|
|
90
86
|
```
|
91
87
|
|
92
88
|
### Parameters
|
93
|
-
|
89
|
+
|
90
|
+
Name | Type | Description | Notes
|
91
|
+
------------- | ------------- | ------------- | -------------
|
92
|
+
**authorization** | **String**| Header para token |
|
94
93
|
|
95
94
|
### Return type
|
96
95
|
|
@@ -98,7 +97,7 @@ This endpoint does not need any parameter.
|
|
98
97
|
|
99
98
|
### Authorization
|
100
99
|
|
101
|
-
|
100
|
+
No authorization required
|
102
101
|
|
103
102
|
### HTTP request headers
|
104
103
|
|
@@ -108,7 +107,7 @@ This endpoint does not need any parameter.
|
|
108
107
|
|
109
108
|
|
110
109
|
# **register_webhook**
|
111
|
-
> WebhookResponse register_webhook(webhook_request)
|
110
|
+
> WebhookResponse register_webhook(authorization, webhook_request)
|
112
111
|
|
113
112
|
Alta de Webhook
|
114
113
|
|
@@ -118,20 +117,17 @@ Registra un webhook en la plataforma para su uso como notificador de eventos cua
|
|
118
117
|
```ruby
|
119
118
|
# load the gem
|
120
119
|
require 'wire4_client'
|
121
|
-
# setup authorization
|
122
|
-
Wire4Client.configure do |config|
|
123
|
-
# Configure OAuth2 access token for authorization: wire4_aut_app
|
124
|
-
config.access_token = 'YOUR ACCESS TOKEN'
|
125
|
-
end
|
126
120
|
|
127
121
|
api_instance = Wire4Client::WebhooksApi.new
|
128
122
|
|
123
|
+
authorization = 'authorization_example' # String | Header para token
|
124
|
+
|
129
125
|
webhook_request = Wire4Client::WebhookRequest.new # WebhookRequest | Información para registrar un Webhook
|
130
126
|
|
131
127
|
|
132
128
|
begin
|
133
129
|
#Alta de Webhook
|
134
|
-
result = api_instance.register_webhook(webhook_request)
|
130
|
+
result = api_instance.register_webhook(authorization, webhook_request)
|
135
131
|
p result
|
136
132
|
rescue Wire4Client::ApiError => e
|
137
133
|
puts "Exception when calling WebhooksApi->register_webhook: #{e}"
|
@@ -142,6 +138,7 @@ end
|
|
142
138
|
|
143
139
|
Name | Type | Description | Notes
|
144
140
|
------------- | ------------- | ------------- | -------------
|
141
|
+
**authorization** | **String**| Header para token |
|
145
142
|
**webhook_request** | [**WebhookRequest**](WebhookRequest.md)| Información para registrar un Webhook |
|
146
143
|
|
147
144
|
### Return type
|
@@ -150,7 +147,7 @@ Name | Type | Description | Notes
|
|
150
147
|
|
151
148
|
### Authorization
|
152
149
|
|
153
|
-
|
150
|
+
No authorization required
|
154
151
|
|
155
152
|
### HTTP request headers
|
156
153
|
|
data/lib/wire4_client.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
=begin
|
2
2
|
#Wire4RestAPI
|
3
3
|
|
4
|
-
#Referencia de
|
4
|
+
# # Referencia de API La API de Wire4 está organizada en torno a REST.
|
5
5
|
|
6
6
|
OpenAPI spec version: 1.0.0
|
7
7
|
|
@@ -18,59 +18,113 @@ require 'wire4_client/configuration'
|
|
18
18
|
|
19
19
|
# Models
|
20
20
|
require 'wire4_client/models/account'
|
21
|
+
require 'wire4_client/models/account_detail'
|
22
|
+
require 'wire4_client/models/account_reassigned'
|
21
23
|
require 'wire4_client/models/account_request'
|
22
24
|
require 'wire4_client/models/account_response'
|
23
25
|
require 'wire4_client/models/account_spid'
|
26
|
+
require 'wire4_client/models/address_company'
|
24
27
|
require 'wire4_client/models/amount_request'
|
28
|
+
require 'wire4_client/models/authorization_transaction_group'
|
29
|
+
require 'wire4_client/models/authorized_beneficiaries_response'
|
30
|
+
require 'wire4_client/models/authorized_users'
|
25
31
|
require 'wire4_client/models/balance'
|
26
32
|
require 'wire4_client/models/balance_list_response'
|
33
|
+
require 'wire4_client/models/beneficiaries_query_register_status'
|
27
34
|
require 'wire4_client/models/beneficiaries_response'
|
28
35
|
require 'wire4_client/models/beneficiary_institution'
|
29
36
|
require 'wire4_client/models/billing'
|
30
37
|
require 'wire4_client/models/billing_transaction'
|
31
38
|
require 'wire4_client/models/cep_response'
|
32
39
|
require 'wire4_client/models/cep_search_banxico'
|
40
|
+
require 'wire4_client/models/certificate_request'
|
41
|
+
require 'wire4_client/models/codi_code_qr_response_dto'
|
42
|
+
require 'wire4_client/models/codi_code_request_dto'
|
43
|
+
require 'wire4_client/models/codi_operation_response_dto'
|
44
|
+
require 'wire4_client/models/codi_operations_filters_request_dto'
|
45
|
+
require 'wire4_client/models/company_registered'
|
46
|
+
require 'wire4_client/models/company_requested'
|
47
|
+
require 'wire4_client/models/compay'
|
48
|
+
require 'wire4_client/models/configurations_limits'
|
33
49
|
require 'wire4_client/models/contact_request'
|
50
|
+
require 'wire4_client/models/contract_detail_request'
|
51
|
+
require 'wire4_client/models/contract_detail_response'
|
34
52
|
require 'wire4_client/models/deposit'
|
53
|
+
require 'wire4_client/models/deposit_authorization_request'
|
35
54
|
require 'wire4_client/models/depositant'
|
36
55
|
require 'wire4_client/models/depositants_register'
|
37
56
|
require 'wire4_client/models/depositants_response'
|
57
|
+
require 'wire4_client/models/deposits_authorization_response'
|
58
|
+
require 'wire4_client/models/detailed_error_response'
|
38
59
|
require 'wire4_client/models/error_response'
|
39
60
|
require 'wire4_client/models/get_depositants'
|
40
61
|
require 'wire4_client/models/institution'
|
41
62
|
require 'wire4_client/models/institutions_list'
|
63
|
+
require 'wire4_client/models/item'
|
42
64
|
require 'wire4_client/models/message_account_beneficiary'
|
43
65
|
require 'wire4_client/models/message_cep'
|
66
|
+
require 'wire4_client/models/message_codi_action'
|
67
|
+
require 'wire4_client/models/message_configurations_limits'
|
68
|
+
require 'wire4_client/models/message_deposit_authorization_request'
|
44
69
|
require 'wire4_client/models/message_deposit_received'
|
45
70
|
require 'wire4_client/models/message_institution'
|
46
71
|
require 'wire4_client/models/message_payment'
|
72
|
+
require 'wire4_client/models/message_payment_state_pending'
|
73
|
+
require 'wire4_client/models/message_request_changed'
|
74
|
+
require 'wire4_client/models/message_sales_point'
|
47
75
|
require 'wire4_client/models/message_subscription'
|
76
|
+
require 'wire4_client/models/message_user_authorized'
|
48
77
|
require 'wire4_client/models/message_web_hook'
|
78
|
+
require 'wire4_client/models/operations'
|
79
|
+
require 'wire4_client/models/pager_response_dto'
|
49
80
|
require 'wire4_client/models/payment'
|
81
|
+
require 'wire4_client/models/payment_codi'
|
82
|
+
require 'wire4_client/models/payment_request_codi_response_dto'
|
83
|
+
require 'wire4_client/models/payments_request_id'
|
50
84
|
require 'wire4_client/models/person'
|
51
85
|
require 'wire4_client/models/pre_enrollment_data'
|
52
86
|
require 'wire4_client/models/pre_enrollment_response'
|
87
|
+
require 'wire4_client/models/pre_monex_authorization'
|
53
88
|
require 'wire4_client/models/relationship'
|
54
89
|
require 'wire4_client/models/relationships_response'
|
90
|
+
require 'wire4_client/models/sales_point'
|
91
|
+
require 'wire4_client/models/sales_point_found'
|
92
|
+
require 'wire4_client/models/sales_point_request'
|
93
|
+
require 'wire4_client/models/sales_point_respose'
|
94
|
+
require 'wire4_client/models/spid_beneficiaries_response'
|
95
|
+
require 'wire4_client/models/spid_beneficiary_response'
|
55
96
|
require 'wire4_client/models/spid_classification_dto'
|
56
97
|
require 'wire4_client/models/spid_classifications_response_dto'
|
57
|
-
require 'wire4_client/models/timestamp'
|
58
98
|
require 'wire4_client/models/token_required_response'
|
99
|
+
require 'wire4_client/models/transaction_error_code'
|
59
100
|
require 'wire4_client/models/transaction_outgoing'
|
60
101
|
require 'wire4_client/models/transaction_outgoing_spid'
|
61
102
|
require 'wire4_client/models/transactions_outgoing_register'
|
103
|
+
require 'wire4_client/models/update_configurations_request_dto'
|
104
|
+
require 'wire4_client/models/urls_redirect'
|
105
|
+
require 'wire4_client/models/user_company'
|
106
|
+
require 'wire4_client/models/web_hook_deposit_authorization_request'
|
107
|
+
require 'wire4_client/models/web_hook_deposit_authorization_response'
|
108
|
+
require 'wire4_client/models/webhook'
|
62
109
|
require 'wire4_client/models/webhook_request'
|
63
110
|
require 'wire4_client/models/webhook_response'
|
64
111
|
require 'wire4_client/models/webhooks_list'
|
65
112
|
|
66
113
|
# APIs
|
114
|
+
require 'wire4_client/api/autorizacin_de_depsitos_api'
|
67
115
|
require 'wire4_client/api/comprobante_electrnico_de_pago_cep_api'
|
68
116
|
require 'wire4_client/api/contacto_api'
|
117
|
+
require 'wire4_client/api/contracts_details_api'
|
69
118
|
require 'wire4_client/api/cuentas_de_beneficiarios_spei_api'
|
70
119
|
require 'wire4_client/api/cuentas_de_beneficiarios_spid_api'
|
71
120
|
require 'wire4_client/api/depositantes_api'
|
121
|
+
require 'wire4_client/api/empresas_co_di_api'
|
72
122
|
require 'wire4_client/api/facturas_api'
|
73
123
|
require 'wire4_client/api/instituciones_api'
|
124
|
+
require 'wire4_client/api/lmites_de_montos_api'
|
125
|
+
require 'wire4_client/api/operaciones_co_di_api'
|
126
|
+
require 'wire4_client/api/peticiones_de_pago_por_co_di_api'
|
127
|
+
require 'wire4_client/api/puntos_de_venta_co_di_api'
|
74
128
|
require 'wire4_client/api/saldo_api'
|
75
129
|
require 'wire4_client/api/suscripciones_api'
|
76
130
|
require 'wire4_client/api/transferencias_spei_api'
|
@@ -0,0 +1,173 @@
|
|
1
|
+
=begin
|
2
|
+
#Wire4RestAPI
|
3
|
+
|
4
|
+
# # Referencia de API La API de Wire4 está organizada en torno a REST.
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.10
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'uri'
|
14
|
+
|
15
|
+
module Wire4Client
|
16
|
+
class AutorizacinDeDepsitosApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Consulta autorización de depósitos
|
23
|
+
# Obtiene la información de la autorización de depósitos del contrato relacionado a la subscripción.
|
24
|
+
# @param authorization Header para token
|
25
|
+
# @param subscription El identificador de la suscripción a esta API
|
26
|
+
# @param [Hash] opts the optional parameters
|
27
|
+
# @return [DepositsAuthorizationResponse]
|
28
|
+
def get_deposit_auth_configurations(authorization, subscription, opts = {})
|
29
|
+
data, _status_code, _headers = get_deposit_auth_configurations_with_http_info(authorization, subscription, opts)
|
30
|
+
data
|
31
|
+
end
|
32
|
+
|
33
|
+
# Consulta autorización de depósitos
|
34
|
+
# Obtiene la información de la autorización de depósitos del contrato relacionado a la subscripción.
|
35
|
+
# @param authorization Header para token
|
36
|
+
# @param subscription El identificador de la suscripción a esta API
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [Array<(DepositsAuthorizationResponse, Fixnum, Hash)>] DepositsAuthorizationResponse data, response status code and response headers
|
39
|
+
def get_deposit_auth_configurations_with_http_info(authorization, subscription, opts = {})
|
40
|
+
if @api_client.config.debugging
|
41
|
+
@api_client.config.logger.debug 'Calling API: AutorizacinDeDepsitosApi.get_deposit_auth_configurations ...'
|
42
|
+
end
|
43
|
+
# verify the required parameter 'authorization' is set
|
44
|
+
if @api_client.config.client_side_validation && authorization.nil?
|
45
|
+
fail ArgumentError, "Missing the required parameter 'authorization' when calling AutorizacinDeDepsitosApi.get_deposit_auth_configurations"
|
46
|
+
end
|
47
|
+
# verify the required parameter 'subscription' is set
|
48
|
+
if @api_client.config.client_side_validation && subscription.nil?
|
49
|
+
fail ArgumentError, "Missing the required parameter 'subscription' when calling AutorizacinDeDepsitosApi.get_deposit_auth_configurations"
|
50
|
+
end
|
51
|
+
if @api_client.config.client_side_validation && subscription.to_s.length > 36
|
52
|
+
fail ArgumentError, 'invalid value for "subscription" when calling AutorizacinDeDepsitosApi.get_deposit_auth_configurations, the character length must be smaller than or equal to 36.'
|
53
|
+
end
|
54
|
+
|
55
|
+
if @api_client.config.client_side_validation && subscription.to_s.length < 36
|
56
|
+
fail ArgumentError, 'invalid value for "subscription" when calling AutorizacinDeDepsitosApi.get_deposit_auth_configurations, the character length must be great than or equal to 36.'
|
57
|
+
end
|
58
|
+
|
59
|
+
if @api_client.config.client_side_validation && subscription !~ Regexp.new(/[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[34][A-Fa-f0-9]{3}-[89ab][A-Fa-f0-9]{3}-[A-Fa-f0-9]{12}$/)
|
60
|
+
fail ArgumentError, "invalid value for 'subscription' when calling AutorizacinDeDepsitosApi.get_deposit_auth_configurations, must conform to the pattern /[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[34][A-Fa-f0-9]{3}-[89ab][A-Fa-f0-9]{3}-[A-Fa-f0-9]{12}$/."
|
61
|
+
end
|
62
|
+
|
63
|
+
# resource path
|
64
|
+
local_var_path = '/subscriptions/{subscription}/configurations/deposit-authorization'.sub('{' + 'subscription' + '}', subscription.to_s)
|
65
|
+
|
66
|
+
# query parameters
|
67
|
+
query_params = {}
|
68
|
+
|
69
|
+
# header parameters
|
70
|
+
header_params = {}
|
71
|
+
# HTTP header 'Accept' (if needed)
|
72
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
73
|
+
header_params[:'Authorization'] = authorization
|
74
|
+
|
75
|
+
# form parameters
|
76
|
+
form_params = {}
|
77
|
+
|
78
|
+
# http body (model)
|
79
|
+
post_body = nil
|
80
|
+
auth_names = []
|
81
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
82
|
+
:header_params => header_params,
|
83
|
+
:query_params => query_params,
|
84
|
+
:form_params => form_params,
|
85
|
+
:body => post_body,
|
86
|
+
:auth_names => auth_names,
|
87
|
+
:return_type => 'DepositsAuthorizationResponse')
|
88
|
+
if @api_client.config.debugging
|
89
|
+
@api_client.config.logger.debug "API called: AutorizacinDeDepsitosApi#get_deposit_auth_configurations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
90
|
+
end
|
91
|
+
return data, status_code, headers
|
92
|
+
end
|
93
|
+
# Des/Habilitar autorización de depósitos
|
94
|
+
# Des/Habilitar autorización de depósitos, devuelve la información final de la autorización de depósitos del contrato relacionado a la subscripción al terminar.
|
95
|
+
# @param authorization Header para token
|
96
|
+
# @param register Deposit Authorization info
|
97
|
+
# @param subscription El identificador de la suscripción a esta API
|
98
|
+
# @param [Hash] opts the optional parameters
|
99
|
+
# @return [DepositsAuthorizationResponse]
|
100
|
+
def put_deposit_auth_configurations(authorization, register, subscription, opts = {})
|
101
|
+
data, _status_code, _headers = put_deposit_auth_configurations_with_http_info(authorization, register, subscription, opts)
|
102
|
+
data
|
103
|
+
end
|
104
|
+
|
105
|
+
# Des/Habilitar autorización de depósitos
|
106
|
+
# Des/Habilitar autorización de depósitos, devuelve la información final de la autorización de depósitos del contrato relacionado a la subscripción al terminar.
|
107
|
+
# @param authorization Header para token
|
108
|
+
# @param register Deposit Authorization info
|
109
|
+
# @param subscription El identificador de la suscripción a esta API
|
110
|
+
# @param [Hash] opts the optional parameters
|
111
|
+
# @return [Array<(DepositsAuthorizationResponse, Fixnum, Hash)>] DepositsAuthorizationResponse data, response status code and response headers
|
112
|
+
def put_deposit_auth_configurations_with_http_info(authorization, register, subscription, opts = {})
|
113
|
+
if @api_client.config.debugging
|
114
|
+
@api_client.config.logger.debug 'Calling API: AutorizacinDeDepsitosApi.put_deposit_auth_configurations ...'
|
115
|
+
end
|
116
|
+
# verify the required parameter 'authorization' is set
|
117
|
+
if @api_client.config.client_side_validation && authorization.nil?
|
118
|
+
fail ArgumentError, "Missing the required parameter 'authorization' when calling AutorizacinDeDepsitosApi.put_deposit_auth_configurations"
|
119
|
+
end
|
120
|
+
# verify the required parameter 'register' is set
|
121
|
+
if @api_client.config.client_side_validation && register.nil?
|
122
|
+
fail ArgumentError, "Missing the required parameter 'register' when calling AutorizacinDeDepsitosApi.put_deposit_auth_configurations"
|
123
|
+
end
|
124
|
+
# verify the required parameter 'subscription' is set
|
125
|
+
if @api_client.config.client_side_validation && subscription.nil?
|
126
|
+
fail ArgumentError, "Missing the required parameter 'subscription' when calling AutorizacinDeDepsitosApi.put_deposit_auth_configurations"
|
127
|
+
end
|
128
|
+
if @api_client.config.client_side_validation && subscription.to_s.length > 36
|
129
|
+
fail ArgumentError, 'invalid value for "subscription" when calling AutorizacinDeDepsitosApi.put_deposit_auth_configurations, the character length must be smaller than or equal to 36.'
|
130
|
+
end
|
131
|
+
|
132
|
+
if @api_client.config.client_side_validation && subscription.to_s.length < 36
|
133
|
+
fail ArgumentError, 'invalid value for "subscription" when calling AutorizacinDeDepsitosApi.put_deposit_auth_configurations, the character length must be great than or equal to 36.'
|
134
|
+
end
|
135
|
+
|
136
|
+
if @api_client.config.client_side_validation && subscription !~ Regexp.new(/[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[34][A-Fa-f0-9]{3}-[89ab][A-Fa-f0-9]{3}-[A-Fa-f0-9]{12}$/)
|
137
|
+
fail ArgumentError, "invalid value for 'subscription' when calling AutorizacinDeDepsitosApi.put_deposit_auth_configurations, must conform to the pattern /[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[34][A-Fa-f0-9]{3}-[89ab][A-Fa-f0-9]{3}-[A-Fa-f0-9]{12}$/."
|
138
|
+
end
|
139
|
+
|
140
|
+
# resource path
|
141
|
+
local_var_path = '/subscriptions/{subscription}/configurations/deposit-authorization'.sub('{' + 'subscription' + '}', subscription.to_s)
|
142
|
+
|
143
|
+
# query parameters
|
144
|
+
query_params = {}
|
145
|
+
|
146
|
+
# header parameters
|
147
|
+
header_params = {}
|
148
|
+
# HTTP header 'Accept' (if needed)
|
149
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
150
|
+
# HTTP header 'Content-Type'
|
151
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
152
|
+
header_params[:'Authorization'] = authorization
|
153
|
+
|
154
|
+
# form parameters
|
155
|
+
form_params = {}
|
156
|
+
|
157
|
+
# http body (model)
|
158
|
+
post_body = @api_client.object_to_http_body(register)
|
159
|
+
auth_names = []
|
160
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
161
|
+
:header_params => header_params,
|
162
|
+
:query_params => query_params,
|
163
|
+
:form_params => form_params,
|
164
|
+
:body => post_body,
|
165
|
+
:auth_names => auth_names,
|
166
|
+
:return_type => 'DepositsAuthorizationResponse')
|
167
|
+
if @api_client.config.debugging
|
168
|
+
@api_client.config.logger.debug "API called: AutorizacinDeDepsitosApi#put_deposit_auth_configurations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
169
|
+
end
|
170
|
+
return data, status_code, headers
|
171
|
+
end
|
172
|
+
end
|
173
|
+
end
|