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,385 @@
|
|
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 'date'
|
14
|
+
|
15
|
+
module Wire4Client
|
16
|
+
# Objeto que contiene información de las cuenta SPEI/SPID reasignadas bajo un nuevo identificador de solicitud
|
17
|
+
class AccountReassigned
|
18
|
+
# Monto límite permitido registrado para la cuenta
|
19
|
+
attr_accessor :amount_limit
|
20
|
+
|
21
|
+
# La fecha/hora en la que se autorizo el registro del beneficiario desde el centro de autorización
|
22
|
+
attr_accessor :authorization_date
|
23
|
+
|
24
|
+
# El banco al cual pertenece la cuenta
|
25
|
+
attr_accessor :bank
|
26
|
+
|
27
|
+
# Cuenta del beneficiario, podría ser teléfono celular, TDD o cuenta CLABE
|
28
|
+
attr_accessor :beneficiary_account
|
29
|
+
|
30
|
+
# Código de moneda, este dato es opcional, al registrar una cuenta si no se cuenta con este valor se asignara MXP
|
31
|
+
attr_accessor :currency_code
|
32
|
+
|
33
|
+
# Lista de email's, este dato es opcional
|
34
|
+
attr_accessor :email
|
35
|
+
|
36
|
+
# Objeto que contiene el nombre de la institución, es mutuamente exclusivo con el objeto Person
|
37
|
+
attr_accessor :institution
|
38
|
+
|
39
|
+
# Tipo de relación con el propietario de la cuenta, para registrar una cuenta este valor se debe obtener del recurso relationships. <br> Nota: Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.
|
40
|
+
attr_accessor :kind_of_relationship
|
41
|
+
|
42
|
+
# Referencia numérica a utilizar cuando se realice una transferencia y no se especifique una referencia
|
43
|
+
attr_accessor :numeric_reference_spei
|
44
|
+
|
45
|
+
# Concepto de pago a utilizar cuando se realice una transferencia y no se especifique un concepto
|
46
|
+
attr_accessor :payment_concept_spei
|
47
|
+
|
48
|
+
# Objeto que contiene los datos de la persona propietaria de la cuenta, si se incluye este atributo, el atributo institution no debe estar presente
|
49
|
+
attr_accessor :person
|
50
|
+
|
51
|
+
# La fecha en la que se registro el beneficiario
|
52
|
+
attr_accessor :register_date
|
53
|
+
|
54
|
+
# Relación con el propietario de la cuenta, para registrar una cuenta este valor se debe obtener del recurso relationships. <br> Nota: Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.
|
55
|
+
attr_accessor :relationship
|
56
|
+
|
57
|
+
# Registro federal de contribuyentes de la persona o institución propietaria de la cuenta. <br> Nota: Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.
|
58
|
+
attr_accessor :rfc
|
59
|
+
|
60
|
+
# El estado (status) en el que se encuentra el registro del beneficiario
|
61
|
+
attr_accessor :status
|
62
|
+
|
63
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
64
|
+
def self.attribute_map
|
65
|
+
{
|
66
|
+
:'amount_limit' => :'amount_limit',
|
67
|
+
:'authorization_date' => :'authorization_date',
|
68
|
+
:'bank' => :'bank',
|
69
|
+
:'beneficiary_account' => :'beneficiary_account',
|
70
|
+
:'currency_code' => :'currency_code',
|
71
|
+
:'email' => :'email',
|
72
|
+
:'institution' => :'institution',
|
73
|
+
:'kind_of_relationship' => :'kind_of_relationship',
|
74
|
+
:'numeric_reference_spei' => :'numeric_reference_spei',
|
75
|
+
:'payment_concept_spei' => :'payment_concept_spei',
|
76
|
+
:'person' => :'person',
|
77
|
+
:'register_date' => :'register_date',
|
78
|
+
:'relationship' => :'relationship',
|
79
|
+
:'rfc' => :'rfc',
|
80
|
+
:'status' => :'status'
|
81
|
+
}
|
82
|
+
end
|
83
|
+
|
84
|
+
# Attribute type mapping.
|
85
|
+
def self.swagger_types
|
86
|
+
{
|
87
|
+
:'amount_limit' => :'Float',
|
88
|
+
:'authorization_date' => :'DateTime',
|
89
|
+
:'bank' => :'Institution',
|
90
|
+
:'beneficiary_account' => :'String',
|
91
|
+
:'currency_code' => :'String',
|
92
|
+
:'email' => :'Array<String>',
|
93
|
+
:'institution' => :'BeneficiaryInstitution',
|
94
|
+
:'kind_of_relationship' => :'String',
|
95
|
+
:'numeric_reference_spei' => :'String',
|
96
|
+
:'payment_concept_spei' => :'String',
|
97
|
+
:'person' => :'Person',
|
98
|
+
:'register_date' => :'DateTime',
|
99
|
+
:'relationship' => :'String',
|
100
|
+
:'rfc' => :'String',
|
101
|
+
:'status' => :'String'
|
102
|
+
}
|
103
|
+
end
|
104
|
+
|
105
|
+
# Initializes the object
|
106
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
107
|
+
def initialize(attributes = {})
|
108
|
+
return unless attributes.is_a?(Hash)
|
109
|
+
|
110
|
+
# convert string to symbol for hash key
|
111
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
112
|
+
|
113
|
+
if attributes.has_key?(:'amount_limit')
|
114
|
+
self.amount_limit = attributes[:'amount_limit']
|
115
|
+
end
|
116
|
+
|
117
|
+
if attributes.has_key?(:'authorization_date')
|
118
|
+
self.authorization_date = attributes[:'authorization_date']
|
119
|
+
end
|
120
|
+
|
121
|
+
if attributes.has_key?(:'bank')
|
122
|
+
self.bank = attributes[:'bank']
|
123
|
+
end
|
124
|
+
|
125
|
+
if attributes.has_key?(:'beneficiary_account')
|
126
|
+
self.beneficiary_account = attributes[:'beneficiary_account']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.has_key?(:'currency_code')
|
130
|
+
self.currency_code = attributes[:'currency_code']
|
131
|
+
end
|
132
|
+
|
133
|
+
if attributes.has_key?(:'email')
|
134
|
+
if (value = attributes[:'email']).is_a?(Array)
|
135
|
+
self.email = value
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
if attributes.has_key?(:'institution')
|
140
|
+
self.institution = attributes[:'institution']
|
141
|
+
end
|
142
|
+
|
143
|
+
if attributes.has_key?(:'kind_of_relationship')
|
144
|
+
self.kind_of_relationship = attributes[:'kind_of_relationship']
|
145
|
+
end
|
146
|
+
|
147
|
+
if attributes.has_key?(:'numeric_reference_spei')
|
148
|
+
self.numeric_reference_spei = attributes[:'numeric_reference_spei']
|
149
|
+
end
|
150
|
+
|
151
|
+
if attributes.has_key?(:'payment_concept_spei')
|
152
|
+
self.payment_concept_spei = attributes[:'payment_concept_spei']
|
153
|
+
end
|
154
|
+
|
155
|
+
if attributes.has_key?(:'person')
|
156
|
+
self.person = attributes[:'person']
|
157
|
+
end
|
158
|
+
|
159
|
+
if attributes.has_key?(:'register_date')
|
160
|
+
self.register_date = attributes[:'register_date']
|
161
|
+
end
|
162
|
+
|
163
|
+
if attributes.has_key?(:'relationship')
|
164
|
+
self.relationship = attributes[:'relationship']
|
165
|
+
end
|
166
|
+
|
167
|
+
if attributes.has_key?(:'rfc')
|
168
|
+
self.rfc = attributes[:'rfc']
|
169
|
+
end
|
170
|
+
|
171
|
+
if attributes.has_key?(:'status')
|
172
|
+
self.status = attributes[:'status']
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
177
|
+
# @return Array for valid properties with the reasons
|
178
|
+
def list_invalid_properties
|
179
|
+
invalid_properties = Array.new
|
180
|
+
if @amount_limit.nil?
|
181
|
+
invalid_properties.push('invalid value for "amount_limit", amount_limit cannot be nil.')
|
182
|
+
end
|
183
|
+
|
184
|
+
if @beneficiary_account.nil?
|
185
|
+
invalid_properties.push('invalid value for "beneficiary_account", beneficiary_account cannot be nil.')
|
186
|
+
end
|
187
|
+
|
188
|
+
if @kind_of_relationship.nil?
|
189
|
+
invalid_properties.push('invalid value for "kind_of_relationship", kind_of_relationship cannot be nil.')
|
190
|
+
end
|
191
|
+
|
192
|
+
if !@numeric_reference_spei.nil? && @numeric_reference_spei.to_s.length > 7
|
193
|
+
invalid_properties.push('invalid value for "numeric_reference_spei", the character length must be smaller than or equal to 7.')
|
194
|
+
end
|
195
|
+
|
196
|
+
if !@numeric_reference_spei.nil? && @numeric_reference_spei.to_s.length < 1
|
197
|
+
invalid_properties.push('invalid value for "numeric_reference_spei", the character length must be great than or equal to 1.')
|
198
|
+
end
|
199
|
+
|
200
|
+
if !@numeric_reference_spei.nil? && @numeric_reference_spei !~ Regexp.new(/[0-9][0-9]*/)
|
201
|
+
invalid_properties.push('invalid value for "numeric_reference_spei", must conform to the pattern /[0-9][0-9]*/.')
|
202
|
+
end
|
203
|
+
|
204
|
+
if @relationship.nil?
|
205
|
+
invalid_properties.push('invalid value for "relationship", relationship cannot be nil.')
|
206
|
+
end
|
207
|
+
|
208
|
+
if @rfc.nil?
|
209
|
+
invalid_properties.push('invalid value for "rfc", rfc cannot be nil.')
|
210
|
+
end
|
211
|
+
|
212
|
+
invalid_properties
|
213
|
+
end
|
214
|
+
|
215
|
+
# Check to see if the all the properties in the model are valid
|
216
|
+
# @return true if the model is valid
|
217
|
+
def valid?
|
218
|
+
return false if @amount_limit.nil?
|
219
|
+
return false if @beneficiary_account.nil?
|
220
|
+
return false if @kind_of_relationship.nil?
|
221
|
+
return false if !@numeric_reference_spei.nil? && @numeric_reference_spei.to_s.length > 7
|
222
|
+
return false if !@numeric_reference_spei.nil? && @numeric_reference_spei.to_s.length < 1
|
223
|
+
return false if !@numeric_reference_spei.nil? && @numeric_reference_spei !~ Regexp.new(/[0-9][0-9]*/)
|
224
|
+
return false if @relationship.nil?
|
225
|
+
return false if @rfc.nil?
|
226
|
+
true
|
227
|
+
end
|
228
|
+
|
229
|
+
# Custom attribute writer method with validation
|
230
|
+
# @param [Object] numeric_reference_spei Value to be assigned
|
231
|
+
def numeric_reference_spei=(numeric_reference_spei)
|
232
|
+
if !numeric_reference_spei.nil? && numeric_reference_spei.to_s.length > 7
|
233
|
+
fail ArgumentError, 'invalid value for "numeric_reference_spei", the character length must be smaller than or equal to 7.'
|
234
|
+
end
|
235
|
+
|
236
|
+
if !numeric_reference_spei.nil? && numeric_reference_spei.to_s.length < 1
|
237
|
+
fail ArgumentError, 'invalid value for "numeric_reference_spei", the character length must be great than or equal to 1.'
|
238
|
+
end
|
239
|
+
|
240
|
+
if !numeric_reference_spei.nil? && numeric_reference_spei !~ Regexp.new(/[0-9][0-9]*/)
|
241
|
+
fail ArgumentError, 'invalid value for "numeric_reference_spei", must conform to the pattern /[0-9][0-9]*/.'
|
242
|
+
end
|
243
|
+
|
244
|
+
@numeric_reference_spei = numeric_reference_spei
|
245
|
+
end
|
246
|
+
|
247
|
+
# Checks equality by comparing each attribute.
|
248
|
+
# @param [Object] Object to be compared
|
249
|
+
def ==(o)
|
250
|
+
return true if self.equal?(o)
|
251
|
+
self.class == o.class &&
|
252
|
+
amount_limit == o.amount_limit &&
|
253
|
+
authorization_date == o.authorization_date &&
|
254
|
+
bank == o.bank &&
|
255
|
+
beneficiary_account == o.beneficiary_account &&
|
256
|
+
currency_code == o.currency_code &&
|
257
|
+
email == o.email &&
|
258
|
+
institution == o.institution &&
|
259
|
+
kind_of_relationship == o.kind_of_relationship &&
|
260
|
+
numeric_reference_spei == o.numeric_reference_spei &&
|
261
|
+
payment_concept_spei == o.payment_concept_spei &&
|
262
|
+
person == o.person &&
|
263
|
+
register_date == o.register_date &&
|
264
|
+
relationship == o.relationship &&
|
265
|
+
rfc == o.rfc &&
|
266
|
+
status == o.status
|
267
|
+
end
|
268
|
+
|
269
|
+
# @see the `==` method
|
270
|
+
# @param [Object] Object to be compared
|
271
|
+
def eql?(o)
|
272
|
+
self == o
|
273
|
+
end
|
274
|
+
|
275
|
+
# Calculates hash code according to all attributes.
|
276
|
+
# @return [Fixnum] Hash code
|
277
|
+
def hash
|
278
|
+
[amount_limit, authorization_date, bank, beneficiary_account, currency_code, email, institution, kind_of_relationship, numeric_reference_spei, payment_concept_spei, person, register_date, relationship, rfc, status].hash
|
279
|
+
end
|
280
|
+
|
281
|
+
# Builds the object from hash
|
282
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
283
|
+
# @return [Object] Returns the model itself
|
284
|
+
def build_from_hash(attributes)
|
285
|
+
return nil unless attributes.is_a?(Hash)
|
286
|
+
self.class.swagger_types.each_pair do |key, type|
|
287
|
+
if type =~ /\AArray<(.*)>/i
|
288
|
+
# check to ensure the input is an array given that the the attribute
|
289
|
+
# is documented as an array but the input is not
|
290
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
291
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
292
|
+
end
|
293
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
294
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
295
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
296
|
+
end
|
297
|
+
|
298
|
+
self
|
299
|
+
end
|
300
|
+
|
301
|
+
# Deserializes the data based on type
|
302
|
+
# @param string type Data type
|
303
|
+
# @param string value Value to be deserialized
|
304
|
+
# @return [Object] Deserialized data
|
305
|
+
def _deserialize(type, value)
|
306
|
+
case type.to_sym
|
307
|
+
when :DateTime
|
308
|
+
DateTime.parse(value)
|
309
|
+
when :Date
|
310
|
+
Date.parse(value)
|
311
|
+
when :String
|
312
|
+
value.to_s
|
313
|
+
when :Integer
|
314
|
+
value.to_i
|
315
|
+
when :Float
|
316
|
+
value.to_f
|
317
|
+
when :BOOLEAN
|
318
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
319
|
+
true
|
320
|
+
else
|
321
|
+
false
|
322
|
+
end
|
323
|
+
when :Object
|
324
|
+
# generic object (usually a Hash), return directly
|
325
|
+
value
|
326
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
327
|
+
inner_type = Regexp.last_match[:inner_type]
|
328
|
+
value.map { |v| _deserialize(inner_type, v) }
|
329
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
330
|
+
k_type = Regexp.last_match[:k_type]
|
331
|
+
v_type = Regexp.last_match[:v_type]
|
332
|
+
{}.tap do |hash|
|
333
|
+
value.each do |k, v|
|
334
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
335
|
+
end
|
336
|
+
end
|
337
|
+
else # model
|
338
|
+
temp_model = Wire4Client.const_get(type).new
|
339
|
+
temp_model.build_from_hash(value)
|
340
|
+
end
|
341
|
+
end
|
342
|
+
|
343
|
+
# Returns the string representation of the object
|
344
|
+
# @return [String] String presentation of the object
|
345
|
+
def to_s
|
346
|
+
to_hash.to_s
|
347
|
+
end
|
348
|
+
|
349
|
+
# to_body is an alias to to_hash (backward compatibility)
|
350
|
+
# @return [Hash] Returns the object in the form of hash
|
351
|
+
def to_body
|
352
|
+
to_hash
|
353
|
+
end
|
354
|
+
|
355
|
+
# Returns the object in the form of hash
|
356
|
+
# @return [Hash] Returns the object in the form of hash
|
357
|
+
def to_hash
|
358
|
+
hash = {}
|
359
|
+
self.class.attribute_map.each_pair do |attr, param|
|
360
|
+
value = self.send(attr)
|
361
|
+
next if value.nil?
|
362
|
+
hash[param] = _to_hash(value)
|
363
|
+
end
|
364
|
+
hash
|
365
|
+
end
|
366
|
+
|
367
|
+
# Outputs non-array value in the form of hash
|
368
|
+
# For object, use to_hash. Otherwise, just return the value
|
369
|
+
# @param [Object] value Any valid value
|
370
|
+
# @return [Hash] Returns the value in the form of hash
|
371
|
+
def _to_hash(value)
|
372
|
+
if value.is_a?(Array)
|
373
|
+
value.compact.map { |v| _to_hash(v) }
|
374
|
+
elsif value.is_a?(Hash)
|
375
|
+
{}.tap do |hash|
|
376
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
377
|
+
end
|
378
|
+
elsif value.respond_to? :to_hash
|
379
|
+
value.to_hash
|
380
|
+
else
|
381
|
+
value
|
382
|
+
end
|
383
|
+
end
|
384
|
+
end
|
385
|
+
end
|
@@ -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,6 +18,9 @@ module Wire4Client
|
|
18
18
|
# Monto límite permitido registrado para la cuenta
|
19
19
|
attr_accessor :amount_limit
|
20
20
|
|
21
|
+
# La fecha/hora en la que se autorizo el registro del beneficiario desde el centro de autorización
|
22
|
+
attr_accessor :authorization_date
|
23
|
+
|
21
24
|
# El banco al cual pertenece la cuenta
|
22
25
|
attr_accessor :bank
|
23
26
|
|
@@ -30,7 +33,7 @@ module Wire4Client
|
|
30
33
|
# Objeto que contiene el nombre de la institución, es mutuamente exclusivo con el objeto Person
|
31
34
|
attr_accessor :institution
|
32
35
|
|
33
|
-
# Tipo de relación con el propietario de la cuenta, para registrar una cuenta este valor se debe obtener del recurso relationships
|
36
|
+
# Tipo de relación con el propietario de la cuenta, para registrar una cuenta este valor se debe obtener del recurso relationships. <br> Nota: Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.
|
34
37
|
attr_accessor :kind_of_relationship
|
35
38
|
|
36
39
|
# Referencia numérica a utilizar cuando se realice una transferencia y no se especifique una referencia
|
@@ -42,16 +45,23 @@ module Wire4Client
|
|
42
45
|
# Objeto que contiene los datos de la persona propietaria de la cuenta, si se incluye este atributo, el atributo institution no debe estar presente
|
43
46
|
attr_accessor :person
|
44
47
|
|
45
|
-
#
|
48
|
+
# La fecha en la que se registro el beneficiario
|
49
|
+
attr_accessor :register_date
|
50
|
+
|
51
|
+
# Relación con el propietario de la cuenta, para registrar una cuenta este valor se debe obtener del recurso relationships. <br> Nota: Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.
|
46
52
|
attr_accessor :relationship
|
47
53
|
|
48
|
-
# Registro federal de contribuyentes de la persona o institución propietaria de la cuenta
|
54
|
+
# Registro federal de contribuyentes de la persona o institución propietaria de la cuenta. <br> Nota: Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.
|
49
55
|
attr_accessor :rfc
|
50
56
|
|
57
|
+
# El estado (status) en el que se encuentra el registro del beneficiario
|
58
|
+
attr_accessor :status
|
59
|
+
|
51
60
|
# Attribute mapping from ruby-style variable name to JSON key.
|
52
61
|
def self.attribute_map
|
53
62
|
{
|
54
63
|
:'amount_limit' => :'amount_limit',
|
64
|
+
:'authorization_date' => :'authorization_date',
|
55
65
|
:'bank' => :'bank',
|
56
66
|
:'beneficiary_account' => :'beneficiary_account',
|
57
67
|
:'email' => :'email',
|
@@ -60,8 +70,10 @@ module Wire4Client
|
|
60
70
|
:'numeric_reference_spei' => :'numeric_reference_spei',
|
61
71
|
:'payment_concept_spei' => :'payment_concept_spei',
|
62
72
|
:'person' => :'person',
|
73
|
+
:'register_date' => :'register_date',
|
63
74
|
:'relationship' => :'relationship',
|
64
|
-
:'rfc' => :'rfc'
|
75
|
+
:'rfc' => :'rfc',
|
76
|
+
:'status' => :'status'
|
65
77
|
}
|
66
78
|
end
|
67
79
|
|
@@ -69,6 +81,7 @@ module Wire4Client
|
|
69
81
|
def self.swagger_types
|
70
82
|
{
|
71
83
|
:'amount_limit' => :'Float',
|
84
|
+
:'authorization_date' => :'DateTime',
|
72
85
|
:'bank' => :'Institution',
|
73
86
|
:'beneficiary_account' => :'String',
|
74
87
|
:'email' => :'Array<String>',
|
@@ -77,8 +90,10 @@ module Wire4Client
|
|
77
90
|
:'numeric_reference_spei' => :'String',
|
78
91
|
:'payment_concept_spei' => :'String',
|
79
92
|
:'person' => :'Person',
|
93
|
+
:'register_date' => :'DateTime',
|
80
94
|
:'relationship' => :'String',
|
81
|
-
:'rfc' => :'String'
|
95
|
+
:'rfc' => :'String',
|
96
|
+
:'status' => :'String'
|
82
97
|
}
|
83
98
|
end
|
84
99
|
|
@@ -94,6 +109,10 @@ module Wire4Client
|
|
94
109
|
self.amount_limit = attributes[:'amount_limit']
|
95
110
|
end
|
96
111
|
|
112
|
+
if attributes.has_key?(:'authorization_date')
|
113
|
+
self.authorization_date = attributes[:'authorization_date']
|
114
|
+
end
|
115
|
+
|
97
116
|
if attributes.has_key?(:'bank')
|
98
117
|
self.bank = attributes[:'bank']
|
99
118
|
end
|
@@ -128,6 +147,10 @@ module Wire4Client
|
|
128
147
|
self.person = attributes[:'person']
|
129
148
|
end
|
130
149
|
|
150
|
+
if attributes.has_key?(:'register_date')
|
151
|
+
self.register_date = attributes[:'register_date']
|
152
|
+
end
|
153
|
+
|
131
154
|
if attributes.has_key?(:'relationship')
|
132
155
|
self.relationship = attributes[:'relationship']
|
133
156
|
end
|
@@ -135,6 +158,10 @@ module Wire4Client
|
|
135
158
|
if attributes.has_key?(:'rfc')
|
136
159
|
self.rfc = attributes[:'rfc']
|
137
160
|
end
|
161
|
+
|
162
|
+
if attributes.has_key?(:'status')
|
163
|
+
self.status = attributes[:'status']
|
164
|
+
end
|
138
165
|
end
|
139
166
|
|
140
167
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -214,6 +241,7 @@ module Wire4Client
|
|
214
241
|
return true if self.equal?(o)
|
215
242
|
self.class == o.class &&
|
216
243
|
amount_limit == o.amount_limit &&
|
244
|
+
authorization_date == o.authorization_date &&
|
217
245
|
bank == o.bank &&
|
218
246
|
beneficiary_account == o.beneficiary_account &&
|
219
247
|
email == o.email &&
|
@@ -222,8 +250,10 @@ module Wire4Client
|
|
222
250
|
numeric_reference_spei == o.numeric_reference_spei &&
|
223
251
|
payment_concept_spei == o.payment_concept_spei &&
|
224
252
|
person == o.person &&
|
253
|
+
register_date == o.register_date &&
|
225
254
|
relationship == o.relationship &&
|
226
|
-
rfc == o.rfc
|
255
|
+
rfc == o.rfc &&
|
256
|
+
status == o.status
|
227
257
|
end
|
228
258
|
|
229
259
|
# @see the `==` method
|
@@ -235,7 +265,7 @@ module Wire4Client
|
|
235
265
|
# Calculates hash code according to all attributes.
|
236
266
|
# @return [Fixnum] Hash code
|
237
267
|
def hash
|
238
|
-
[amount_limit, bank, beneficiary_account, email, institution, kind_of_relationship, numeric_reference_spei, payment_concept_spei, person, relationship, rfc].hash
|
268
|
+
[amount_limit, authorization_date, bank, beneficiary_account, email, institution, kind_of_relationship, numeric_reference_spei, payment_concept_spei, person, register_date, relationship, rfc, status].hash
|
239
269
|
end
|
240
270
|
|
241
271
|
# Builds the object from hash
|