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
@@ -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
|
|
@@ -20,20 +20,26 @@ module Wire4Client
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
# Información de instituciones bancarias.
|
23
|
+
# @param authorization Header para token
|
23
24
|
# @param [Hash] opts the optional parameters
|
24
25
|
# @return [InstitutionsList]
|
25
|
-
def get_all_institutions_using_get(opts = {})
|
26
|
-
data, _status_code, _headers = get_all_institutions_using_get_with_http_info(opts)
|
26
|
+
def get_all_institutions_using_get(authorization, opts = {})
|
27
|
+
data, _status_code, _headers = get_all_institutions_using_get_with_http_info(authorization, opts)
|
27
28
|
data
|
28
29
|
end
|
29
30
|
|
30
31
|
# Información de instituciones bancarias.
|
32
|
+
# @param authorization Header para token
|
31
33
|
# @param [Hash] opts the optional parameters
|
32
34
|
# @return [Array<(InstitutionsList, Fixnum, Hash)>] InstitutionsList data, response status code and response headers
|
33
|
-
def get_all_institutions_using_get_with_http_info(opts = {})
|
35
|
+
def get_all_institutions_using_get_with_http_info(authorization, opts = {})
|
34
36
|
if @api_client.config.debugging
|
35
37
|
@api_client.config.logger.debug 'Calling API: InstitucionesApi.get_all_institutions_using_get ...'
|
36
38
|
end
|
39
|
+
# verify the required parameter 'authorization' is set
|
40
|
+
if @api_client.config.client_side_validation && authorization.nil?
|
41
|
+
fail ArgumentError, "Missing the required parameter 'authorization' when calling InstitucionesApi.get_all_institutions_using_get"
|
42
|
+
end
|
37
43
|
# resource path
|
38
44
|
local_var_path = '/institutions'
|
39
45
|
|
@@ -44,13 +50,14 @@ module Wire4Client
|
|
44
50
|
header_params = {}
|
45
51
|
# HTTP header 'Accept' (if needed)
|
46
52
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
53
|
+
header_params[:'Authorization'] = authorization
|
47
54
|
|
48
55
|
# form parameters
|
49
56
|
form_params = {}
|
50
57
|
|
51
58
|
# http body (model)
|
52
59
|
post_body = nil
|
53
|
-
auth_names = [
|
60
|
+
auth_names = []
|
54
61
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
55
62
|
:header_params => header_params,
|
56
63
|
:query_params => query_params,
|
@@ -0,0 +1,160 @@
|
|
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 LmitesDeMontosApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Consulta las configuraciones para el contrato asocaido al enrolamiento en la aplicación
|
23
|
+
# Consulta las configuraciones para el contrato asocaido al enrolamiento en la aplicación.
|
24
|
+
# @param authorization Header para token
|
25
|
+
# @param suscription Identificador de la suscripción a esta API
|
26
|
+
# @param [Hash] opts the optional parameters
|
27
|
+
# @return [MessageConfigurationsLimits]
|
28
|
+
def obtain_configurations_limits(authorization, suscription, opts = {})
|
29
|
+
data, _status_code, _headers = obtain_configurations_limits_with_http_info(authorization, suscription, opts)
|
30
|
+
data
|
31
|
+
end
|
32
|
+
|
33
|
+
# Consulta las configuraciones para el contrato asocaido al enrolamiento en la aplicación
|
34
|
+
# Consulta las configuraciones para el contrato asocaido al enrolamiento en la aplicación.
|
35
|
+
# @param authorization Header para token
|
36
|
+
# @param suscription Identificador de la suscripción a esta API
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [Array<(MessageConfigurationsLimits, Fixnum, Hash)>] MessageConfigurationsLimits data, response status code and response headers
|
39
|
+
def obtain_configurations_limits_with_http_info(authorization, suscription, opts = {})
|
40
|
+
if @api_client.config.debugging
|
41
|
+
@api_client.config.logger.debug 'Calling API: LmitesDeMontosApi.obtain_configurations_limits ...'
|
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 LmitesDeMontosApi.obtain_configurations_limits"
|
46
|
+
end
|
47
|
+
# verify the required parameter 'suscription' is set
|
48
|
+
if @api_client.config.client_side_validation && suscription.nil?
|
49
|
+
fail ArgumentError, "Missing the required parameter 'suscription' when calling LmitesDeMontosApi.obtain_configurations_limits"
|
50
|
+
end
|
51
|
+
if @api_client.config.client_side_validation && suscription.to_s.length > 36
|
52
|
+
fail ArgumentError, 'invalid value for "suscription" when calling LmitesDeMontosApi.obtain_configurations_limits, the character length must be smaller than or equal to 36.'
|
53
|
+
end
|
54
|
+
|
55
|
+
if @api_client.config.client_side_validation && suscription.to_s.length < 36
|
56
|
+
fail ArgumentError, 'invalid value for "suscription" when calling LmitesDeMontosApi.obtain_configurations_limits, the character length must be great than or equal to 36.'
|
57
|
+
end
|
58
|
+
|
59
|
+
if @api_client.config.client_side_validation && suscription !~ 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 'suscription' when calling LmitesDeMontosApi.obtain_configurations_limits, 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/{suscription}/configurations'.sub('{' + 'suscription' + '}', suscription.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 => 'MessageConfigurationsLimits')
|
88
|
+
if @api_client.config.debugging
|
89
|
+
@api_client.config.logger.debug "API called: LmitesDeMontosApi#obtain_configurations_limits\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
90
|
+
end
|
91
|
+
return data, status_code, headers
|
92
|
+
end
|
93
|
+
# Actualiza las configuraciones por subscripción
|
94
|
+
# Actualiza las configuraciones de un contrato asociado a una subscripción
|
95
|
+
# @param authorization Header para token
|
96
|
+
# @param suscription suscription
|
97
|
+
# @param update_configurations_resquest_dto updateConfigurationsResquestDTO
|
98
|
+
# @param [Hash] opts the optional parameters
|
99
|
+
# @return [nil]
|
100
|
+
def update_configurations(authorization, suscription, update_configurations_resquest_dto, opts = {})
|
101
|
+
update_configurations_with_http_info(authorization, suscription, update_configurations_resquest_dto, opts)
|
102
|
+
nil
|
103
|
+
end
|
104
|
+
|
105
|
+
# Actualiza las configuraciones por subscripción
|
106
|
+
# Actualiza las configuraciones de un contrato asociado a una subscripción
|
107
|
+
# @param authorization Header para token
|
108
|
+
# @param suscription suscription
|
109
|
+
# @param update_configurations_resquest_dto updateConfigurationsResquestDTO
|
110
|
+
# @param [Hash] opts the optional parameters
|
111
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
112
|
+
def update_configurations_with_http_info(authorization, suscription, update_configurations_resquest_dto, opts = {})
|
113
|
+
if @api_client.config.debugging
|
114
|
+
@api_client.config.logger.debug 'Calling API: LmitesDeMontosApi.update_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 LmitesDeMontosApi.update_configurations"
|
119
|
+
end
|
120
|
+
# verify the required parameter 'suscription' is set
|
121
|
+
if @api_client.config.client_side_validation && suscription.nil?
|
122
|
+
fail ArgumentError, "Missing the required parameter 'suscription' when calling LmitesDeMontosApi.update_configurations"
|
123
|
+
end
|
124
|
+
# verify the required parameter 'update_configurations_resquest_dto' is set
|
125
|
+
if @api_client.config.client_side_validation && update_configurations_resquest_dto.nil?
|
126
|
+
fail ArgumentError, "Missing the required parameter 'update_configurations_resquest_dto' when calling LmitesDeMontosApi.update_configurations"
|
127
|
+
end
|
128
|
+
# resource path
|
129
|
+
local_var_path = '/subscriptions/{suscription}/configurations'.sub('{' + 'suscription' + '}', suscription.to_s)
|
130
|
+
|
131
|
+
# query parameters
|
132
|
+
query_params = {}
|
133
|
+
|
134
|
+
# header parameters
|
135
|
+
header_params = {}
|
136
|
+
# HTTP header 'Accept' (if needed)
|
137
|
+
header_params['Accept'] = @api_client.select_header_accept(['*/*'])
|
138
|
+
# HTTP header 'Content-Type'
|
139
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
140
|
+
header_params[:'Authorization'] = authorization
|
141
|
+
|
142
|
+
# form parameters
|
143
|
+
form_params = {}
|
144
|
+
|
145
|
+
# http body (model)
|
146
|
+
post_body = @api_client.object_to_http_body(update_configurations_resquest_dto)
|
147
|
+
auth_names = []
|
148
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
149
|
+
:header_params => header_params,
|
150
|
+
:query_params => query_params,
|
151
|
+
:form_params => form_params,
|
152
|
+
:body => post_body,
|
153
|
+
:auth_names => auth_names)
|
154
|
+
if @api_client.config.debugging
|
155
|
+
@api_client.config.logger.debug "API called: LmitesDeMontosApi#update_configurations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
156
|
+
end
|
157
|
+
return data, status_code, headers
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
@@ -0,0 +1,92 @@
|
|
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 OperacionesCoDiApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Obtiene las operaciones generadas a partir de peticiones de pago CoDi® de forma paginada, pudiendo aplicar filtros
|
23
|
+
# Obtiene las operaciones generadas a partir de peticiones de pago CoDi® de forma paginada, pudiendo aplicar filtros
|
24
|
+
# @param authorization Header para token
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @option opts [String] :company_id Identificador de empresa CoDi
|
27
|
+
# @option opts [String] :page Número de pago (default to 0)
|
28
|
+
# @option opts [CodiOperationsFiltersRequestDTO] :request_filters Filtros de busqueda
|
29
|
+
# @option opts [String] :sales_point_id Identificador del punto de venta
|
30
|
+
# @option opts [String] :size Tamaño de pagina (default to 20)
|
31
|
+
# @return [PagerResponseDto]
|
32
|
+
def consult_codi_operations(authorization, opts = {})
|
33
|
+
data, _status_code, _headers = consult_codi_operations_with_http_info(authorization, opts)
|
34
|
+
data
|
35
|
+
end
|
36
|
+
|
37
|
+
# Obtiene las operaciones generadas a partir de peticiones de pago CoDi® de forma paginada, pudiendo aplicar filtros
|
38
|
+
# Obtiene las operaciones generadas a partir de peticiones de pago CoDi® de forma paginada, pudiendo aplicar filtros
|
39
|
+
# @param authorization Header para token
|
40
|
+
# @param [Hash] opts the optional parameters
|
41
|
+
# @option opts [String] :company_id Identificador de empresa CoDi
|
42
|
+
# @option opts [String] :page Número de pago
|
43
|
+
# @option opts [CodiOperationsFiltersRequestDTO] :request_filters Filtros de busqueda
|
44
|
+
# @option opts [String] :sales_point_id Identificador del punto de venta
|
45
|
+
# @option opts [String] :size Tamaño de pagina
|
46
|
+
# @return [Array<(PagerResponseDto, Fixnum, Hash)>] PagerResponseDto data, response status code and response headers
|
47
|
+
def consult_codi_operations_with_http_info(authorization, opts = {})
|
48
|
+
if @api_client.config.debugging
|
49
|
+
@api_client.config.logger.debug 'Calling API: OperacionesCoDiApi.consult_codi_operations ...'
|
50
|
+
end
|
51
|
+
# verify the required parameter 'authorization' is set
|
52
|
+
if @api_client.config.client_side_validation && authorization.nil?
|
53
|
+
fail ArgumentError, "Missing the required parameter 'authorization' when calling OperacionesCoDiApi.consult_codi_operations"
|
54
|
+
end
|
55
|
+
# resource path
|
56
|
+
local_var_path = '/codi/charges'
|
57
|
+
|
58
|
+
# query parameters
|
59
|
+
query_params = {}
|
60
|
+
query_params[:'company_id'] = opts[:'company_id'] if !opts[:'company_id'].nil?
|
61
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
62
|
+
query_params[:'sales_point_id'] = opts[:'sales_point_id'] if !opts[:'sales_point_id'].nil?
|
63
|
+
query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
|
64
|
+
|
65
|
+
# header parameters
|
66
|
+
header_params = {}
|
67
|
+
# HTTP header 'Accept' (if needed)
|
68
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
69
|
+
# HTTP header 'Content-Type'
|
70
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
71
|
+
header_params[:'Authorization'] = authorization
|
72
|
+
|
73
|
+
# form parameters
|
74
|
+
form_params = {}
|
75
|
+
|
76
|
+
# http body (model)
|
77
|
+
post_body = @api_client.object_to_http_body(opts[:'request_filters'])
|
78
|
+
auth_names = []
|
79
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
80
|
+
:header_params => header_params,
|
81
|
+
:query_params => query_params,
|
82
|
+
:form_params => form_params,
|
83
|
+
:body => post_body,
|
84
|
+
:auth_names => auth_names,
|
85
|
+
:return_type => 'PagerResponseDto')
|
86
|
+
if @api_client.config.debugging
|
87
|
+
@api_client.config.logger.debug "API called: OperacionesCoDiApi#consult_codi_operations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
88
|
+
end
|
89
|
+
return data, status_code, headers
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
@@ -0,0 +1,178 @@
|
|
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 PeticionesDePagoPorCoDiApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Obtiene la información de una petición de pago CODI® por orderId para un punto de venta
|
23
|
+
# Obtiene la información de una petición de pago CODI® por orderId para un punto de venta
|
24
|
+
# @param authorization Header para token
|
25
|
+
# @param order_id Identificador del pago CODI®
|
26
|
+
# @param sales_point_id Identificador del punto de venta
|
27
|
+
# @param [Hash] opts the optional parameters
|
28
|
+
# @return [PaymentRequestCodiResponseDTO]
|
29
|
+
def consult_codi_request_by_order_id(authorization, order_id, sales_point_id, opts = {})
|
30
|
+
data, _status_code, _headers = consult_codi_request_by_order_id_with_http_info(authorization, order_id, sales_point_id, opts)
|
31
|
+
data
|
32
|
+
end
|
33
|
+
|
34
|
+
# Obtiene la información de una petición de pago CODI® por orderId para un punto de venta
|
35
|
+
# Obtiene la información de una petición de pago CODI® por orderId para un punto de venta
|
36
|
+
# @param authorization Header para token
|
37
|
+
# @param order_id Identificador del pago CODI®
|
38
|
+
# @param sales_point_id Identificador del punto de venta
|
39
|
+
# @param [Hash] opts the optional parameters
|
40
|
+
# @return [Array<(PaymentRequestCodiResponseDTO, Fixnum, Hash)>] PaymentRequestCodiResponseDTO data, response status code and response headers
|
41
|
+
def consult_codi_request_by_order_id_with_http_info(authorization, order_id, sales_point_id, opts = {})
|
42
|
+
if @api_client.config.debugging
|
43
|
+
@api_client.config.logger.debug 'Calling API: PeticionesDePagoPorCoDiApi.consult_codi_request_by_order_id ...'
|
44
|
+
end
|
45
|
+
# verify the required parameter 'authorization' is set
|
46
|
+
if @api_client.config.client_side_validation && authorization.nil?
|
47
|
+
fail ArgumentError, "Missing the required parameter 'authorization' when calling PeticionesDePagoPorCoDiApi.consult_codi_request_by_order_id"
|
48
|
+
end
|
49
|
+
# verify the required parameter 'order_id' is set
|
50
|
+
if @api_client.config.client_side_validation && order_id.nil?
|
51
|
+
fail ArgumentError, "Missing the required parameter 'order_id' when calling PeticionesDePagoPorCoDiApi.consult_codi_request_by_order_id"
|
52
|
+
end
|
53
|
+
# verify the required parameter 'sales_point_id' is set
|
54
|
+
if @api_client.config.client_side_validation && sales_point_id.nil?
|
55
|
+
fail ArgumentError, "Missing the required parameter 'sales_point_id' when calling PeticionesDePagoPorCoDiApi.consult_codi_request_by_order_id"
|
56
|
+
end
|
57
|
+
if @api_client.config.client_side_validation && sales_point_id.to_s.length > 36
|
58
|
+
fail ArgumentError, 'invalid value for "sales_point_id" when calling PeticionesDePagoPorCoDiApi.consult_codi_request_by_order_id, the character length must be smaller than or equal to 36.'
|
59
|
+
end
|
60
|
+
|
61
|
+
if @api_client.config.client_side_validation && sales_point_id.to_s.length < 36
|
62
|
+
fail ArgumentError, 'invalid value for "sales_point_id" when calling PeticionesDePagoPorCoDiApi.consult_codi_request_by_order_id, the character length must be great than or equal to 36.'
|
63
|
+
end
|
64
|
+
|
65
|
+
# resource path
|
66
|
+
local_var_path = '/codi/sales-point/charges'
|
67
|
+
|
68
|
+
# query parameters
|
69
|
+
query_params = {}
|
70
|
+
query_params[:'orderId'] = order_id
|
71
|
+
query_params[:'salesPointId'] = sales_point_id
|
72
|
+
|
73
|
+
# header parameters
|
74
|
+
header_params = {}
|
75
|
+
# HTTP header 'Accept' (if needed)
|
76
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
77
|
+
header_params[:'Authorization'] = authorization
|
78
|
+
|
79
|
+
# form parameters
|
80
|
+
form_params = {}
|
81
|
+
|
82
|
+
# http body (model)
|
83
|
+
post_body = nil
|
84
|
+
auth_names = []
|
85
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
86
|
+
:header_params => header_params,
|
87
|
+
:query_params => query_params,
|
88
|
+
:form_params => form_params,
|
89
|
+
:body => post_body,
|
90
|
+
:auth_names => auth_names,
|
91
|
+
:return_type => 'PaymentRequestCodiResponseDTO')
|
92
|
+
if @api_client.config.debugging
|
93
|
+
@api_client.config.logger.debug "API called: PeticionesDePagoPorCoDiApi#consult_codi_request_by_order_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
94
|
+
end
|
95
|
+
return data, status_code, headers
|
96
|
+
end
|
97
|
+
# Genera un código QR para un pago mediante CODI®
|
98
|
+
# Genera un código QR solicitado por un punto de venta para un pago mediante CODI®
|
99
|
+
# @param authorization Header para token
|
100
|
+
# @param codi_info Información del pago CODI®
|
101
|
+
# @param sales_point_id Identificador del punto de venta
|
102
|
+
# @param [Hash] opts the optional parameters
|
103
|
+
# @return [CodiCodeQrResponseDTO]
|
104
|
+
def generate_codi_code_qr(authorization, codi_info, sales_point_id, opts = {})
|
105
|
+
data, _status_code, _headers = generate_codi_code_qr_with_http_info(authorization, codi_info, sales_point_id, opts)
|
106
|
+
data
|
107
|
+
end
|
108
|
+
|
109
|
+
# Genera un código QR para un pago mediante CODI®
|
110
|
+
# Genera un código QR solicitado por un punto de venta para un pago mediante CODI®
|
111
|
+
# @param authorization Header para token
|
112
|
+
# @param codi_info Información del pago CODI®
|
113
|
+
# @param sales_point_id Identificador del punto de venta
|
114
|
+
# @param [Hash] opts the optional parameters
|
115
|
+
# @return [Array<(CodiCodeQrResponseDTO, Fixnum, Hash)>] CodiCodeQrResponseDTO data, response status code and response headers
|
116
|
+
def generate_codi_code_qr_with_http_info(authorization, codi_info, sales_point_id, opts = {})
|
117
|
+
if @api_client.config.debugging
|
118
|
+
@api_client.config.logger.debug 'Calling API: PeticionesDePagoPorCoDiApi.generate_codi_code_qr ...'
|
119
|
+
end
|
120
|
+
# verify the required parameter 'authorization' is set
|
121
|
+
if @api_client.config.client_side_validation && authorization.nil?
|
122
|
+
fail ArgumentError, "Missing the required parameter 'authorization' when calling PeticionesDePagoPorCoDiApi.generate_codi_code_qr"
|
123
|
+
end
|
124
|
+
# verify the required parameter 'codi_info' is set
|
125
|
+
if @api_client.config.client_side_validation && codi_info.nil?
|
126
|
+
fail ArgumentError, "Missing the required parameter 'codi_info' when calling PeticionesDePagoPorCoDiApi.generate_codi_code_qr"
|
127
|
+
end
|
128
|
+
# verify the required parameter 'sales_point_id' is set
|
129
|
+
if @api_client.config.client_side_validation && sales_point_id.nil?
|
130
|
+
fail ArgumentError, "Missing the required parameter 'sales_point_id' when calling PeticionesDePagoPorCoDiApi.generate_codi_code_qr"
|
131
|
+
end
|
132
|
+
if @api_client.config.client_side_validation && sales_point_id.to_s.length > 36
|
133
|
+
fail ArgumentError, 'invalid value for "sales_point_id" when calling PeticionesDePagoPorCoDiApi.generate_codi_code_qr, the character length must be smaller than or equal to 36.'
|
134
|
+
end
|
135
|
+
|
136
|
+
if @api_client.config.client_side_validation && sales_point_id.to_s.length < 36
|
137
|
+
fail ArgumentError, 'invalid value for "sales_point_id" when calling PeticionesDePagoPorCoDiApi.generate_codi_code_qr, the character length must be great than or equal to 36.'
|
138
|
+
end
|
139
|
+
|
140
|
+
if @api_client.config.client_side_validation && sales_point_id !~ 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}$/)
|
141
|
+
fail ArgumentError, "invalid value for 'sales_point_id' when calling PeticionesDePagoPorCoDiApi.generate_codi_code_qr, 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}$/."
|
142
|
+
end
|
143
|
+
|
144
|
+
# resource path
|
145
|
+
local_var_path = '/codi/sales-point/charges'
|
146
|
+
|
147
|
+
# query parameters
|
148
|
+
query_params = {}
|
149
|
+
query_params[:'salesPointId'] = sales_point_id
|
150
|
+
|
151
|
+
# header parameters
|
152
|
+
header_params = {}
|
153
|
+
# HTTP header 'Accept' (if needed)
|
154
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
155
|
+
# HTTP header 'Content-Type'
|
156
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
157
|
+
header_params[:'Authorization'] = authorization
|
158
|
+
|
159
|
+
# form parameters
|
160
|
+
form_params = {}
|
161
|
+
|
162
|
+
# http body (model)
|
163
|
+
post_body = @api_client.object_to_http_body(codi_info)
|
164
|
+
auth_names = []
|
165
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
166
|
+
:header_params => header_params,
|
167
|
+
:query_params => query_params,
|
168
|
+
:form_params => form_params,
|
169
|
+
:body => post_body,
|
170
|
+
:auth_names => auth_names,
|
171
|
+
:return_type => 'CodiCodeQrResponseDTO')
|
172
|
+
if @api_client.config.debugging
|
173
|
+
@api_client.config.logger.debug "API called: PeticionesDePagoPorCoDiApi#generate_codi_code_qr\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
174
|
+
end
|
175
|
+
return data, status_code, headers
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|