velopayments 2.11.73 → 2.14.90.pre.1
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/Gemfile.lock +1 -1
- data/Makefile +7 -1
- data/README.md +82 -26
- data/docs/Address.md +5 -5
- data/docs/AuthApi.md +65 -0
- data/docs/AuthResponse.md +25 -0
- data/docs/AutoTopUpConfig.md +21 -0
- data/docs/Company.md +3 -1
- data/docs/CreateIndividual.md +21 -0
- data/docs/CreatePayee.md +3 -25
- data/docs/CreatePayeeAddress.md +31 -0
- data/docs/CreatePayeesCSVRequest.md +17 -15
- data/docs/CreatePayoutRequest.md +1 -1
- data/docs/FundingManagerApi.md +180 -10
- data/docs/{FundingRequest.md → FundingRequestV1.md} +2 -2
- data/docs/{FundingRequest2.md → FundingRequestV2.md} +2 -2
- data/docs/FxSummaryV3.md +35 -0
- data/docs/{FxSummary.md → FxSummaryV4.md} +7 -7
- data/docs/GetFundingsResponseAllOf.md +17 -0
- data/docs/GetPaymentsForPayoutResponseV3.md +23 -0
- data/docs/GetPaymentsForPayoutResponseV3Page.md +25 -0
- data/docs/GetPaymentsForPayoutResponseV3Summary.md +33 -0
- data/docs/GetPaymentsForPayoutResponseV4.md +23 -0
- data/docs/GetPaymentsForPayoutResponseV4Summary.md +33 -0
- data/docs/GetPayoutsResponseV3.md +23 -0
- data/docs/GetPayoutsResponseV3Links.md +19 -0
- data/docs/GetPayoutsResponseV3Page.md +25 -0
- data/docs/GetPayoutsResponseV3Summary.md +25 -0
- data/docs/GetPayoutsResponseV4.md +23 -0
- data/docs/Individual.md +2 -2
- data/docs/{PaymentAuditCurrency.md → InvitationStatus.md} +2 -2
- data/docs/ListPaymentsResponse.md +4 -4
- data/docs/ListPaymentsResponsePage.md +25 -0
- data/docs/ListPaymentsResponseSummary.md +25 -0
- data/docs/ListSourceAccountResponse.md +2 -2
- data/docs/ListSourceAccountResponseLinks.md +19 -0
- data/docs/ListSourceAccountResponsePage.md +25 -0
- data/docs/ListSourceAccountResponseV2.md +21 -0
- data/docs/ListSourceAccountResponseV2Page.md +25 -0
- data/docs/Notifications.md +17 -0
- data/docs/PagedPayeeInvitationStatusResponse.md +21 -0
- data/docs/Payee.md +1 -3
- data/docs/PayeeDelta.md +29 -0
- data/docs/PayeeDeltaResponse.md +21 -0
- data/docs/PayeeDeltaResponseLinks.md +19 -0
- data/docs/PayeeDeltaResponsePage.md +25 -0
- data/docs/PayeeInvitationApi.md +68 -5
- data/docs/PayeeInvitationStatus.md +1 -1
- data/docs/PayeeInvitationStatusResponse.md +21 -0
- data/docs/PayeeResponse.md +3 -3
- data/docs/{GetPaymentsForPayoutResponseLinks.md → PayeeResponseLinks.md} +2 -2
- data/docs/{GetPaymentsForPayoutResponsePage.md → PayeeResponsePage.md} +2 -2
- data/docs/{GetPaymentsForPayoutResponseSummary.md → PayeeResponseSummary.md} +2 -2
- data/docs/PayeesApi.md +61 -0
- data/docs/PaymentAuditCurrencyV3.md +16 -0
- data/docs/PaymentAuditCurrencyV4.md +16 -0
- data/docs/PaymentAuditServiceApi.md +302 -6
- data/docs/PaymentEventResponseV3.md +39 -0
- data/docs/{PaymentEventResponse.md → PaymentEventResponseV4.md} +8 -8
- data/docs/PaymentInstruction.md +6 -6
- data/docs/PaymentResponseV3.md +81 -0
- data/docs/{PaymentResponse.md → PaymentResponseV4.md} +5 -5
- data/docs/PayorApplicationsApi.md +1 -1
- data/docs/PayorBrandingResponse.md +5 -5
- data/docs/PayorCreateApiKeyRequest.md +3 -3
- data/docs/PayorCreateApiKeyResponse.md +2 -2
- data/docs/PayorCreateApplicationRequest.md +2 -2
- data/docs/PayorEmailOptOutRequest.md +1 -1
- data/docs/PayorFundingBankDetailsUpdate.md +3 -3
- data/docs/PayorLinksResponse.md +19 -0
- data/docs/PayorLinksResponseLinks.md +23 -0
- data/docs/PayorLinksResponsePayors.md +23 -0
- data/docs/PayorRef.md +2 -2
- data/docs/{Payor.md → PayorV1.md} +15 -15
- data/docs/PayorV2.md +49 -0
- data/docs/PayorsApi.md +116 -6
- data/docs/PayoutHistoryApi.md +81 -2
- data/docs/{PayoutStatus.md → PayoutStatusV3.md} +2 -2
- data/docs/PayoutStatusV4.md +16 -0
- data/docs/PayoutSummaryAuditV3.md +41 -0
- data/docs/{PayoutSummaryAudit.md → PayoutSummaryAuditV4.md} +9 -7
- data/docs/PayoutSummaryResponse.md +4 -4
- data/docs/QuoteFxSummary.md +10 -10
- data/docs/RejectedPayment.md +10 -8
- data/docs/SetNotificationsRequest.md +17 -0
- data/docs/SourceAccount.md +3 -3
- data/docs/SourceAccountResponse.md +11 -9
- data/docs/SourceAccountResponseV2.md +45 -0
- data/docs/SourceAccountSummaryV3.md +21 -0
- data/docs/SourceAccountSummaryV4.md +21 -0
- data/docs/SubmitPayoutApi.md +2 -2
- data/docs/SupportedCountry.md +2 -2
- data/lib/velopayments.rb +58 -18
- data/lib/velopayments/api/auth_api.rb +88 -0
- data/lib/velopayments/api/countries_api.rb +35 -17
- data/lib/velopayments/api/currencies_api.rb +19 -10
- data/lib/velopayments/api/funding_manager_api.rb +323 -69
- data/lib/velopayments/api/get_payout_api.rb +20 -11
- data/lib/velopayments/api/instruct_payout_api.rb +21 -11
- data/lib/velopayments/api/payee_invitation_api.rb +150 -40
- data/lib/velopayments/api/payees_api.rb +130 -26
- data/lib/velopayments/api/payment_audit_service_api.rb +481 -55
- data/lib/velopayments/api/payor_applications_api.rb +40 -21
- data/lib/velopayments/api/payors_api.rb +209 -43
- data/lib/velopayments/api/payout_history_api.rb +141 -21
- data/lib/velopayments/api/quote_payout_api.rb +20 -11
- data/lib/velopayments/api/submit_payout_api.rb +22 -12
- data/lib/velopayments/api/withdraw_payout_api.rb +21 -11
- data/lib/velopayments/api_client.rb +3 -4
- data/lib/velopayments/api_error.rb +2 -2
- data/lib/velopayments/configuration.rb +7 -6
- data/lib/velopayments/models/address.rb +2 -2
- data/lib/velopayments/models/auth_response.rb +242 -0
- data/lib/velopayments/models/auto_top_up_config.rb +222 -0
- data/lib/velopayments/models/challenge.rb +2 -2
- data/lib/velopayments/models/company.rb +39 -6
- data/lib/velopayments/models/create_individual.rb +249 -0
- data/lib/velopayments/models/create_payee.rb +7 -109
- data/lib/velopayments/models/create_payee_address.rb +478 -0
- data/lib/velopayments/models/create_payees_csv_request.rb +268 -183
- data/lib/velopayments/models/create_payees_csv_response.rb +2 -2
- data/lib/velopayments/models/create_payees_request.rb +2 -2
- data/lib/velopayments/models/create_payment_channel.rb +9 -15
- data/lib/velopayments/models/create_payout_request.rb +2 -2
- data/lib/velopayments/models/failed_submission.rb +2 -2
- data/lib/velopayments/models/funding_audit.rb +2 -2
- data/lib/velopayments/models/funding_event.rb +2 -2
- data/lib/velopayments/models/funding_event_type.rb +2 -2
- data/lib/velopayments/models/{funding_request.rb → funding_request_v1.rb} +5 -5
- data/lib/velopayments/models/{funding_request2.rb → funding_request_v2.rb} +5 -5
- data/lib/velopayments/models/{fx_summary.rb → fx_summary_v3.rb} +7 -7
- data/lib/velopayments/models/fx_summary_v4.rb +363 -0
- data/lib/velopayments/models/get_fundings_response.rb +3 -2
- data/lib/velopayments/models/get_fundings_response_all_of.rb +196 -0
- data/lib/velopayments/models/get_payments_for_payout_response_v3.rb +228 -0
- data/lib/velopayments/models/get_payments_for_payout_response_v3_page.rb +232 -0
- data/lib/velopayments/models/get_payments_for_payout_response_v3_summary.rb +311 -0
- data/lib/velopayments/models/{get_payments_for_payout_response.rb → get_payments_for_payout_response_v4.rb} +9 -9
- data/lib/velopayments/models/get_payments_for_payout_response_v4_summary.rb +311 -0
- data/lib/velopayments/models/get_payout_statistics.rb +2 -2
- data/lib/velopayments/models/{get_payouts_response.rb → get_payouts_response_v3.rb} +9 -9
- data/lib/velopayments/models/{get_payments_for_payout_response_links.rb → get_payouts_response_v3_links.rb} +5 -5
- data/lib/velopayments/models/{get_payments_for_payout_response_page.rb → get_payouts_response_v3_page.rb} +5 -5
- data/lib/velopayments/models/{get_payments_for_payout_response_summary.rb → get_payouts_response_v3_summary.rb} +5 -5
- data/lib/velopayments/models/get_payouts_response_v4.rb +228 -0
- data/lib/velopayments/models/individual.rb +6 -4
- data/lib/velopayments/models/individual_name.rb +2 -2
- data/lib/velopayments/models/invitation_status.rb +37 -0
- data/lib/velopayments/models/invitation_status_response.rb +2 -2
- data/lib/velopayments/models/invite_payee_request.rb +2 -2
- data/lib/velopayments/models/language.rb +2 -2
- data/lib/velopayments/models/list_payments_response.rb +6 -6
- data/lib/velopayments/models/list_payments_response_page.rb +232 -0
- data/lib/velopayments/models/list_payments_response_summary.rb +232 -0
- data/lib/velopayments/models/list_source_account_response.rb +4 -4
- data/lib/velopayments/models/{social.rb → list_source_account_response_links.rb} +18 -27
- data/lib/velopayments/models/list_source_account_response_page.rb +232 -0
- data/lib/velopayments/models/list_source_account_response_v2.rb +219 -0
- data/lib/velopayments/models/list_source_account_response_v2_page.rb +232 -0
- data/lib/velopayments/models/marketing_opt_in.rb +2 -2
- data/lib/velopayments/models/notifications.rb +196 -0
- data/lib/velopayments/models/ofac_status.rb +2 -2
- data/lib/velopayments/models/onboarded_status.rb +2 -2
- data/lib/velopayments/models/paged_payee_invitation_status_response.rb +219 -0
- data/lib/velopayments/models/paged_response.rb +2 -2
- data/lib/velopayments/models/paged_response_page.rb +2 -2
- data/lib/velopayments/models/payee.rb +6 -15
- data/lib/velopayments/models/payee_delta.rb +288 -0
- data/lib/velopayments/models/payee_delta_response.rb +219 -0
- data/lib/velopayments/models/payee_delta_response_links.rb +205 -0
- data/lib/velopayments/models/payee_delta_response_page.rb +232 -0
- data/lib/velopayments/models/payee_invitation_status.rb +2 -2
- data/lib/velopayments/models/payee_invitation_status_response.rb +224 -0
- data/lib/velopayments/models/payee_response.rb +5 -5
- data/lib/velopayments/models/payee_response_links.rb +205 -0
- data/lib/velopayments/models/payee_response_page.rb +232 -0
- data/lib/velopayments/models/payee_response_summary.rb +232 -0
- data/lib/velopayments/models/payee_type.rb +2 -2
- data/lib/velopayments/models/{payment_audit_currency.rb → payment_audit_currency_v3.rb} +5 -5
- data/lib/velopayments/models/payment_audit_currency_v4.rb +37 -0
- data/lib/velopayments/models/payment_channel.rb +2 -2
- data/lib/velopayments/models/payment_channel_country.rb +2 -2
- data/lib/velopayments/models/payment_channel_rule.rb +2 -2
- data/lib/velopayments/models/payment_channel_rules_response.rb +2 -2
- data/lib/velopayments/models/{payment_event_response.rb → payment_event_response_v3.rb} +9 -9
- data/lib/velopayments/models/payment_event_response_v4.rb +351 -0
- data/lib/velopayments/models/payment_instruction.rb +2 -2
- data/lib/velopayments/models/{payment_response.rb → payment_response_v3.rb} +8 -8
- data/lib/velopayments/models/payment_response_v4.rb +587 -0
- data/lib/velopayments/models/payor_branding_response.rb +2 -2
- data/lib/velopayments/models/payor_create_api_key_request.rb +2 -2
- data/lib/velopayments/models/payor_create_api_key_response.rb +2 -2
- data/lib/velopayments/models/payor_create_application_request.rb +2 -2
- data/lib/velopayments/models/payor_email_opt_out_request.rb +7 -2
- data/lib/velopayments/models/payor_funding_bank_details_update.rb +2 -2
- data/lib/velopayments/models/payor_links_response.rb +210 -0
- data/lib/velopayments/models/payor_links_response_links.rb +277 -0
- data/lib/velopayments/models/payor_links_response_payors.rb +267 -0
- data/lib/velopayments/models/payor_logo_request.rb +2 -2
- data/lib/velopayments/models/payor_ref.rb +2 -2
- data/lib/velopayments/models/{payor.rb → payor_v1.rb} +6 -6
- data/lib/velopayments/models/payor_v2.rb +405 -0
- data/lib/velopayments/models/{payout_status.rb → payout_status_v3.rb} +5 -5
- data/lib/velopayments/models/payout_status_v4.rb +43 -0
- data/lib/velopayments/models/{payout_summary_audit.rb → payout_summary_audit_v3.rb} +18 -9
- data/lib/velopayments/models/payout_summary_audit_v4.rb +323 -0
- data/lib/velopayments/models/payout_summary_response.rb +2 -2
- data/lib/velopayments/models/query_batch_response.rb +2 -2
- data/lib/velopayments/models/quote_fx_summary.rb +4 -4
- data/lib/velopayments/models/quote_response.rb +2 -2
- data/lib/velopayments/models/rejected_payment.rb +37 -34
- data/lib/velopayments/models/set_notifications_request.rb +230 -0
- data/lib/velopayments/models/source_account.rb +2 -2
- data/lib/velopayments/models/source_account_response.rb +16 -7
- data/lib/velopayments/models/source_account_response_v2.rb +403 -0
- data/lib/velopayments/models/{source_account_summary.rb → source_account_summary_v3.rb} +7 -7
- data/lib/velopayments/models/source_account_summary_v4.rb +224 -0
- data/lib/velopayments/models/supported_countries_response.rb +2 -2
- data/lib/velopayments/models/supported_country.rb +36 -2
- data/lib/velopayments/models/supported_currency.rb +2 -2
- data/lib/velopayments/models/supported_currency_response.rb +2 -2
- data/lib/velopayments/version.rb +3 -3
- data/oa3-config.json +1 -1
- data/spec/api/auth_api_spec.rb +48 -0
- data/spec/api/countries_api_spec.rb +2 -2
- data/spec/api/currencies_api_spec.rb +2 -2
- data/spec/api/funding_manager_api_spec.rb +45 -4
- data/spec/api/get_payout_api_spec.rb +2 -2
- data/spec/api/instruct_payout_api_spec.rb +2 -2
- data/spec/api/payee_invitation_api_spec.rb +20 -4
- data/spec/api/payees_api_spec.rb +17 -2
- data/spec/api/payment_audit_service_api_spec.rb +91 -5
- data/spec/api/payor_applications_api_spec.rb +3 -3
- data/spec/api/payors_api_spec.rb +31 -6
- data/spec/api/payout_history_api_spec.rb +27 -3
- data/spec/api/quote_payout_api_spec.rb +2 -2
- data/spec/api/submit_payout_api_spec.rb +3 -3
- data/spec/api/withdraw_payout_api_spec.rb +2 -2
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/address_spec.rb +2 -2
- data/spec/models/auth_response_spec.rb +65 -0
- data/spec/models/{social_spec.rb → auto_top_up_config_spec.rb} +11 -11
- data/spec/models/challenge_spec.rb +2 -2
- data/spec/models/company_spec.rb +8 -2
- data/spec/models/create_individual_spec.rb +53 -0
- data/spec/models/create_payee_address_spec.rb +83 -0
- data/spec/models/create_payee_spec.rb +2 -68
- data/spec/models/create_payees_csv_request_spec.rb +26 -16
- data/spec/models/create_payees_csv_response_spec.rb +2 -2
- data/spec/models/create_payees_request_spec.rb +2 -2
- data/spec/models/create_payment_channel_spec.rb +6 -2
- data/spec/models/create_payout_request_spec.rb +2 -2
- data/spec/models/failed_submission_spec.rb +2 -2
- data/spec/models/funding_audit_spec.rb +2 -2
- data/spec/models/funding_event_spec.rb +2 -2
- data/spec/models/funding_event_type_spec.rb +2 -2
- data/spec/models/{funding_request2_spec.rb → funding_request_v1_spec.rb} +8 -8
- data/spec/models/{funding_request_spec.rb → funding_request_v2_spec.rb} +8 -8
- data/spec/models/{fx_summary_spec.rb → fx_summary_v3_spec.rb} +8 -8
- data/spec/models/fx_summary_v4_spec.rb +103 -0
- data/spec/models/get_fundings_response_all_of_spec.rb +41 -0
- data/spec/models/get_fundings_response_spec.rb +2 -2
- data/spec/models/{get_payments_for_payout_response_page_spec.rb → get_payments_for_payout_response_v3_page_spec.rb} +8 -8
- data/spec/models/{get_payments_for_payout_response_spec.rb → get_payments_for_payout_response_v3_spec.rb} +8 -8
- data/spec/models/get_payments_for_payout_response_v3_summary_spec.rb +93 -0
- data/spec/models/get_payments_for_payout_response_v4_spec.rb +59 -0
- data/spec/models/get_payments_for_payout_response_v4_summary_spec.rb +93 -0
- data/spec/models/get_payout_statistics_spec.rb +2 -2
- data/spec/models/get_payouts_response_v3_links_spec.rb +47 -0
- data/spec/models/get_payouts_response_v3_page_spec.rb +65 -0
- data/spec/models/{get_payouts_response_spec.rb → get_payouts_response_v3_spec.rb} +8 -8
- data/spec/models/{get_payments_for_payout_response_summary_spec.rb → get_payouts_response_v3_summary_spec.rb} +8 -8
- data/spec/models/get_payouts_response_v4_spec.rb +59 -0
- data/spec/models/individual_name_spec.rb +2 -2
- data/spec/models/individual_spec.rb +2 -2
- data/spec/models/invitation_status_response_spec.rb +2 -2
- data/spec/models/invitation_status_spec.rb +35 -0
- data/spec/models/invite_payee_request_spec.rb +2 -2
- data/spec/models/language_spec.rb +2 -2
- data/spec/models/list_payments_response_page_spec.rb +65 -0
- data/spec/models/list_payments_response_spec.rb +2 -2
- data/spec/models/list_payments_response_summary_spec.rb +65 -0
- data/spec/models/{get_payments_for_payout_response_links_spec.rb → list_source_account_response_links_spec.rb} +8 -8
- data/spec/models/list_source_account_response_page_spec.rb +65 -0
- data/spec/models/list_source_account_response_spec.rb +2 -2
- data/spec/models/list_source_account_response_v2_page_spec.rb +65 -0
- data/spec/models/list_source_account_response_v2_spec.rb +53 -0
- data/spec/models/marketing_opt_in_spec.rb +2 -2
- data/spec/models/notifications_spec.rb +41 -0
- data/spec/models/ofac_status_spec.rb +2 -2
- data/spec/models/onboarded_status_spec.rb +2 -2
- data/spec/models/paged_payee_invitation_status_response_spec.rb +53 -0
- data/spec/models/paged_response_page_spec.rb +2 -2
- data/spec/models/paged_response_spec.rb +2 -2
- data/spec/models/payee_delta_response_links_spec.rb +47 -0
- data/spec/models/payee_delta_response_page_spec.rb +65 -0
- data/spec/models/payee_delta_response_spec.rb +53 -0
- data/spec/models/payee_delta_spec.rb +77 -0
- data/spec/models/payee_invitation_status_response_spec.rb +53 -0
- data/spec/models/payee_invitation_status_spec.rb +2 -2
- data/spec/models/payee_response_links_spec.rb +47 -0
- data/spec/models/payee_response_page_spec.rb +65 -0
- data/spec/models/payee_response_spec.rb +2 -2
- data/spec/models/payee_response_summary_spec.rb +65 -0
- data/spec/models/payee_spec.rb +2 -8
- data/spec/models/payee_type_spec.rb +2 -2
- data/spec/models/{payment_audit_currency_spec.rb → payment_audit_currency_v3_spec.rb} +8 -8
- data/spec/models/payment_audit_currency_v4_spec.rb +35 -0
- data/spec/models/payment_channel_country_spec.rb +2 -2
- data/spec/models/payment_channel_rule_spec.rb +2 -2
- data/spec/models/payment_channel_rules_response_spec.rb +2 -2
- data/spec/models/payment_channel_spec.rb +2 -2
- data/spec/models/{payment_event_response_spec.rb → payment_event_response_v3_spec.rb} +8 -8
- data/spec/models/payment_event_response_v4_spec.rb +111 -0
- data/spec/models/payment_instruction_spec.rb +2 -2
- data/spec/models/{payment_response_spec.rb → payment_response_v3_spec.rb} +8 -8
- data/spec/models/payment_response_v4_spec.rb +241 -0
- data/spec/models/payor_branding_response_spec.rb +2 -2
- data/spec/models/payor_create_api_key_request_spec.rb +2 -2
- data/spec/models/payor_create_api_key_response_spec.rb +2 -2
- data/spec/models/payor_create_application_request_spec.rb +2 -2
- data/spec/models/payor_email_opt_out_request_spec.rb +2 -2
- data/spec/models/payor_funding_bank_details_update_spec.rb +2 -2
- data/spec/models/payor_links_response_links_spec.rb +63 -0
- data/spec/models/payor_links_response_payors_spec.rb +63 -0
- data/spec/models/payor_links_response_spec.rb +47 -0
- data/spec/models/payor_logo_request_spec.rb +2 -2
- data/spec/models/payor_ref_spec.rb +2 -2
- data/spec/models/{payor_spec.rb → payor_v1_spec.rb} +8 -8
- data/spec/models/payor_v2_spec.rb +145 -0
- data/spec/models/{payout_status_spec.rb → payout_status_v3_spec.rb} +8 -8
- data/spec/models/payout_status_v4_spec.rb +35 -0
- data/spec/models/{payout_summary_audit_spec.rb → payout_summary_audit_v3_spec.rb} +14 -8
- data/spec/models/payout_summary_audit_v4_spec.rb +113 -0
- data/spec/models/payout_summary_response_spec.rb +2 -2
- data/spec/models/query_batch_response_spec.rb +2 -2
- data/spec/models/quote_fx_summary_spec.rb +2 -2
- data/spec/models/quote_response_spec.rb +2 -2
- data/spec/models/rejected_payment_spec.rb +8 -6
- data/spec/models/set_notifications_request_spec.rb +41 -0
- data/spec/models/source_account_response_spec.rb +8 -2
- data/spec/models/source_account_response_v2_spec.rb +129 -0
- data/spec/models/source_account_spec.rb +2 -2
- data/spec/models/{source_account_summary_spec.rb → source_account_summary_v3_spec.rb} +8 -8
- data/spec/models/source_account_summary_v4_spec.rb +53 -0
- data/spec/models/supported_countries_response_spec.rb +2 -2
- data/spec/models/supported_country_spec.rb +10 -2
- data/spec/models/supported_currency_response_spec.rb +2 -2
- data/spec/models/supported_currency_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -2
- data/velopayments-2.11.73.gem +0 -0
- data/velopayments-2.14.90.gem +0 -0
- data/velopayments.gemspec +2 -2
- metadata +230 -68
- data/docs/GetPaymentsForPayoutResponse.md +0 -23
- data/docs/GetPayoutsResponse.md +0 -23
- data/docs/Social.md +0 -21
- data/docs/SourceAccountSummary.md +0 -21
@@ -0,0 +1,16 @@
|
|
1
|
+
# VeloPayments::PaymentAuditCurrencyV3
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
|
8
|
+
## Code Sample
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'VeloPayments'
|
12
|
+
|
13
|
+
instance = VeloPayments::PaymentAuditCurrencyV3.new()
|
14
|
+
```
|
15
|
+
|
16
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# VeloPayments::PaymentAuditCurrencyV4
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
|
8
|
+
## Code Sample
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'VeloPayments'
|
12
|
+
|
13
|
+
instance = VeloPayments::PaymentAuditCurrencyV4.new()
|
14
|
+
```
|
15
|
+
|
16
|
+
|
@@ -7,9 +7,13 @@ Method | HTTP request | Description
|
|
7
7
|
[**export_transactions_csv**](PaymentAuditServiceApi.md#export_transactions_csv) | **GET** /v4/paymentaudit/transactions | Export Transactions
|
8
8
|
[**get_fundings**](PaymentAuditServiceApi.md#get_fundings) | **GET** /v1/paymentaudit/fundings | Get Fundings for Payor
|
9
9
|
[**get_payment_details**](PaymentAuditServiceApi.md#get_payment_details) | **GET** /v3/paymentaudit/payments/{paymentId} | Get Payment
|
10
|
+
[**get_payment_details_v4**](PaymentAuditServiceApi.md#get_payment_details_v4) | **GET** /v4/paymentaudit/payments/{paymentId} | Get Payment
|
10
11
|
[**get_payments_for_payout**](PaymentAuditServiceApi.md#get_payments_for_payout) | **GET** /v3/paymentaudit/payouts/{payoutId} | Get Payments for Payout
|
12
|
+
[**get_payments_for_payout_v4**](PaymentAuditServiceApi.md#get_payments_for_payout_v4) | **GET** /v4/paymentaudit/payouts/{payoutId} | Get Payments for Payout
|
11
13
|
[**get_payouts_for_payor**](PaymentAuditServiceApi.md#get_payouts_for_payor) | **GET** /v3/paymentaudit/payouts | Get Payouts for Payor
|
14
|
+
[**get_payouts_for_payor_v4**](PaymentAuditServiceApi.md#get_payouts_for_payor_v4) | **GET** /v4/paymentaudit/payouts | Get Payouts for Payor
|
12
15
|
[**list_payments_audit**](PaymentAuditServiceApi.md#list_payments_audit) | **GET** /v3/paymentaudit/payments | Get List of Payments
|
16
|
+
[**list_payments_audit_v4**](PaymentAuditServiceApi.md#list_payments_audit_v4) | **GET** /v4/paymentaudit/payments | Get List of Payments
|
13
17
|
|
14
18
|
|
15
19
|
|
@@ -133,7 +137,7 @@ Name | Type | Description | Notes
|
|
133
137
|
|
134
138
|
## get_payment_details
|
135
139
|
|
136
|
-
>
|
140
|
+
> PaymentResponseV3 get_payment_details(payment_id, opts)
|
137
141
|
|
138
142
|
Get Payment
|
139
143
|
|
@@ -175,7 +179,63 @@ Name | Type | Description | Notes
|
|
175
179
|
|
176
180
|
### Return type
|
177
181
|
|
178
|
-
[**
|
182
|
+
[**PaymentResponseV3**](PaymentResponseV3.md)
|
183
|
+
|
184
|
+
### Authorization
|
185
|
+
|
186
|
+
[OAuth2](../README.md#OAuth2)
|
187
|
+
|
188
|
+
### HTTP request headers
|
189
|
+
|
190
|
+
- **Content-Type**: Not defined
|
191
|
+
- **Accept**: application/json
|
192
|
+
|
193
|
+
|
194
|
+
## get_payment_details_v4
|
195
|
+
|
196
|
+
> PaymentResponseV4 get_payment_details_v4(payment_id, opts)
|
197
|
+
|
198
|
+
Get Payment
|
199
|
+
|
200
|
+
Get the payment with the given id. This contains the payment history.
|
201
|
+
|
202
|
+
### Example
|
203
|
+
|
204
|
+
```ruby
|
205
|
+
# load the gem
|
206
|
+
require 'velopayments'
|
207
|
+
# setup authorization
|
208
|
+
VeloPayments.configure do |config|
|
209
|
+
# Configure OAuth2 access token for authorization: OAuth2
|
210
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
211
|
+
end
|
212
|
+
|
213
|
+
api_instance = VeloPayments::PaymentAuditServiceApi.new
|
214
|
+
payment_id = 'payment_id_example' # String | Payment Id
|
215
|
+
opts = {
|
216
|
+
sensitive: true # Boolean | Optional. If omitted or set to false, any Personal Identifiable Information (PII) values are returned masked. If set to true, and you have permission, the PII values will be returned as their original unmasked values.
|
217
|
+
}
|
218
|
+
|
219
|
+
begin
|
220
|
+
#Get Payment
|
221
|
+
result = api_instance.get_payment_details_v4(payment_id, opts)
|
222
|
+
p result
|
223
|
+
rescue VeloPayments::ApiError => e
|
224
|
+
puts "Exception when calling PaymentAuditServiceApi->get_payment_details_v4: #{e}"
|
225
|
+
end
|
226
|
+
```
|
227
|
+
|
228
|
+
### Parameters
|
229
|
+
|
230
|
+
|
231
|
+
Name | Type | Description | Notes
|
232
|
+
------------- | ------------- | ------------- | -------------
|
233
|
+
**payment_id** | [**String**](.md)| Payment Id |
|
234
|
+
**sensitive** | **Boolean**| Optional. If omitted or set to false, any Personal Identifiable Information (PII) values are returned masked. If set to true, and you have permission, the PII values will be returned as their original unmasked values. | [optional]
|
235
|
+
|
236
|
+
### Return type
|
237
|
+
|
238
|
+
[**PaymentResponseV4**](PaymentResponseV4.md)
|
179
239
|
|
180
240
|
### Authorization
|
181
241
|
|
@@ -189,7 +249,7 @@ Name | Type | Description | Notes
|
|
189
249
|
|
190
250
|
## get_payments_for_payout
|
191
251
|
|
192
|
-
>
|
252
|
+
> GetPaymentsForPayoutResponseV3 get_payments_for_payout(payout_id, opts)
|
193
253
|
|
194
254
|
Get Payments for Payout
|
195
255
|
|
@@ -253,7 +313,85 @@ Name | Type | Description | Notes
|
|
253
313
|
|
254
314
|
### Return type
|
255
315
|
|
256
|
-
[**
|
316
|
+
[**GetPaymentsForPayoutResponseV3**](GetPaymentsForPayoutResponseV3.md)
|
317
|
+
|
318
|
+
### Authorization
|
319
|
+
|
320
|
+
[OAuth2](../README.md#OAuth2)
|
321
|
+
|
322
|
+
### HTTP request headers
|
323
|
+
|
324
|
+
- **Content-Type**: Not defined
|
325
|
+
- **Accept**: application/json
|
326
|
+
|
327
|
+
|
328
|
+
## get_payments_for_payout_v4
|
329
|
+
|
330
|
+
> GetPaymentsForPayoutResponseV4 get_payments_for_payout_v4(payout_id, opts)
|
331
|
+
|
332
|
+
Get Payments for Payout
|
333
|
+
|
334
|
+
Get List of payments for Payout, allowing for RETURNED status
|
335
|
+
|
336
|
+
### Example
|
337
|
+
|
338
|
+
```ruby
|
339
|
+
# load the gem
|
340
|
+
require 'velopayments'
|
341
|
+
# setup authorization
|
342
|
+
VeloPayments.configure do |config|
|
343
|
+
# Configure OAuth2 access token for authorization: OAuth2
|
344
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
345
|
+
end
|
346
|
+
|
347
|
+
api_instance = VeloPayments::PaymentAuditServiceApi.new
|
348
|
+
payout_id = 'payout_id_example' # String | The id (UUID) of the payout.
|
349
|
+
opts = {
|
350
|
+
remote_id: 'remote_id_example', # String | The remote id of the payees.
|
351
|
+
status: 'status_example', # String | Payment Status
|
352
|
+
source_amount_from: 56, # Integer | The source amount from range filter. Filters for sourceAmount >= sourceAmountFrom
|
353
|
+
source_amount_to: 56, # Integer | The source amount to range filter. Filters for sourceAmount ⇐ sourceAmountTo
|
354
|
+
payment_amount_from: 56, # Integer | The payment amount from range filter. Filters for paymentAmount >= paymentAmountFrom
|
355
|
+
payment_amount_to: 56, # Integer | The payment amount to range filter. Filters for paymentAmount ⇐ paymentAmountTo
|
356
|
+
submitted_date_from: Date.parse('2013-10-20'), # Date | The submitted date from range filter. Format is yyyy-MM-dd.
|
357
|
+
submitted_date_to: Date.parse('2013-10-20'), # Date | The submitted date to range filter. Format is yyyy-MM-dd.
|
358
|
+
page: 1, # Integer | Page number. Default is 1.
|
359
|
+
page_size: 25, # Integer | Page size. Default is 25. Max allowable is 100.
|
360
|
+
sort: 'sort_example', # String | List of sort fields (e.g. ?sort=submittedDateTime:asc,status:asc). Default is sort by remoteId The supported sort fields are: sourceAmount, sourceCurrency, paymentAmount, paymentCurrency, routingNumber, accountNumber, remoteId, submittedDateTime and status
|
361
|
+
sensitive: true # Boolean | Optional. If omitted or set to false, any Personal Identifiable Information (PII) values are returned masked. If set to true, and you have permission, the PII values will be returned as their original unmasked values.
|
362
|
+
}
|
363
|
+
|
364
|
+
begin
|
365
|
+
#Get Payments for Payout
|
366
|
+
result = api_instance.get_payments_for_payout_v4(payout_id, opts)
|
367
|
+
p result
|
368
|
+
rescue VeloPayments::ApiError => e
|
369
|
+
puts "Exception when calling PaymentAuditServiceApi->get_payments_for_payout_v4: #{e}"
|
370
|
+
end
|
371
|
+
```
|
372
|
+
|
373
|
+
### Parameters
|
374
|
+
|
375
|
+
|
376
|
+
Name | Type | Description | Notes
|
377
|
+
------------- | ------------- | ------------- | -------------
|
378
|
+
**payout_id** | [**String**](.md)| The id (UUID) of the payout. |
|
379
|
+
**remote_id** | **String**| The remote id of the payees. | [optional]
|
380
|
+
**status** | **String**| Payment Status | [optional]
|
381
|
+
**source_amount_from** | **Integer**| The source amount from range filter. Filters for sourceAmount >= sourceAmountFrom | [optional]
|
382
|
+
**source_amount_to** | **Integer**| The source amount to range filter. Filters for sourceAmount ⇐ sourceAmountTo | [optional]
|
383
|
+
**payment_amount_from** | **Integer**| The payment amount from range filter. Filters for paymentAmount >= paymentAmountFrom | [optional]
|
384
|
+
**payment_amount_to** | **Integer**| The payment amount to range filter. Filters for paymentAmount ⇐ paymentAmountTo | [optional]
|
385
|
+
**submitted_date_from** | **Date**| The submitted date from range filter. Format is yyyy-MM-dd. | [optional]
|
386
|
+
**submitted_date_to** | **Date**| The submitted date to range filter. Format is yyyy-MM-dd. | [optional]
|
387
|
+
**page** | **Integer**| Page number. Default is 1. | [optional] [default to 1]
|
388
|
+
**page_size** | **Integer**| Page size. Default is 25. Max allowable is 100. | [optional] [default to 25]
|
389
|
+
**sort** | **String**| List of sort fields (e.g. ?sort=submittedDateTime:asc,status:asc). Default is sort by remoteId The supported sort fields are: sourceAmount, sourceCurrency, paymentAmount, paymentCurrency, routingNumber, accountNumber, remoteId, submittedDateTime and status | [optional]
|
390
|
+
**sensitive** | **Boolean**| Optional. If omitted or set to false, any Personal Identifiable Information (PII) values are returned masked. If set to true, and you have permission, the PII values will be returned as their original unmasked values. | [optional]
|
391
|
+
|
392
|
+
### Return type
|
393
|
+
|
394
|
+
[**GetPaymentsForPayoutResponseV4**](GetPaymentsForPayoutResponseV4.md)
|
257
395
|
|
258
396
|
### Authorization
|
259
397
|
|
@@ -267,7 +405,7 @@ Name | Type | Description | Notes
|
|
267
405
|
|
268
406
|
## get_payouts_for_payor
|
269
407
|
|
270
|
-
>
|
408
|
+
> GetPayoutsResponseV3 get_payouts_for_payor(payor_id, opts)
|
271
409
|
|
272
410
|
Get Payouts for Payor
|
273
411
|
|
@@ -321,7 +459,75 @@ Name | Type | Description | Notes
|
|
321
459
|
|
322
460
|
### Return type
|
323
461
|
|
324
|
-
[**
|
462
|
+
[**GetPayoutsResponseV3**](GetPayoutsResponseV3.md)
|
463
|
+
|
464
|
+
### Authorization
|
465
|
+
|
466
|
+
[OAuth2](../README.md#OAuth2)
|
467
|
+
|
468
|
+
### HTTP request headers
|
469
|
+
|
470
|
+
- **Content-Type**: Not defined
|
471
|
+
- **Accept**: application/json
|
472
|
+
|
473
|
+
|
474
|
+
## get_payouts_for_payor_v4
|
475
|
+
|
476
|
+
> GetPayoutsResponseV4 get_payouts_for_payor_v4(payor_id, opts)
|
477
|
+
|
478
|
+
Get Payouts for Payor
|
479
|
+
|
480
|
+
Get List of payouts for payor
|
481
|
+
|
482
|
+
### Example
|
483
|
+
|
484
|
+
```ruby
|
485
|
+
# load the gem
|
486
|
+
require 'velopayments'
|
487
|
+
# setup authorization
|
488
|
+
VeloPayments.configure do |config|
|
489
|
+
# Configure OAuth2 access token for authorization: OAuth2
|
490
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
491
|
+
end
|
492
|
+
|
493
|
+
api_instance = VeloPayments::PaymentAuditServiceApi.new
|
494
|
+
payor_id = 'payor_id_example' # String | The account owner Payor ID
|
495
|
+
opts = {
|
496
|
+
payout_memo: 'payout_memo_example', # String | Payout Memo filter - case insensitive sub-string match
|
497
|
+
status: 'status_example', # String | Payout Status
|
498
|
+
submitted_date_from: Date.parse('2013-10-20'), # Date | The submitted date from range filter. Format is yyyy-MM-dd.
|
499
|
+
submitted_date_to: Date.parse('2013-10-20'), # Date | The submitted date to range filter. Format is yyyy-MM-dd.
|
500
|
+
page: 1, # Integer | Page number. Default is 1.
|
501
|
+
page_size: 25, # Integer | Page size. Default is 25. Max allowable is 100.
|
502
|
+
sort: 'sort_example' # String | List of sort fields (e.g. ?sort=submittedDateTime:asc,instructedDateTime:asc,status:asc) Default is submittedDateTime:asc The supported sort fields are: submittedDateTime, instructedDateTime, status.
|
503
|
+
}
|
504
|
+
|
505
|
+
begin
|
506
|
+
#Get Payouts for Payor
|
507
|
+
result = api_instance.get_payouts_for_payor_v4(payor_id, opts)
|
508
|
+
p result
|
509
|
+
rescue VeloPayments::ApiError => e
|
510
|
+
puts "Exception when calling PaymentAuditServiceApi->get_payouts_for_payor_v4: #{e}"
|
511
|
+
end
|
512
|
+
```
|
513
|
+
|
514
|
+
### Parameters
|
515
|
+
|
516
|
+
|
517
|
+
Name | Type | Description | Notes
|
518
|
+
------------- | ------------- | ------------- | -------------
|
519
|
+
**payor_id** | [**String**](.md)| The account owner Payor ID |
|
520
|
+
**payout_memo** | **String**| Payout Memo filter - case insensitive sub-string match | [optional]
|
521
|
+
**status** | **String**| Payout Status | [optional]
|
522
|
+
**submitted_date_from** | **Date**| The submitted date from range filter. Format is yyyy-MM-dd. | [optional]
|
523
|
+
**submitted_date_to** | **Date**| The submitted date to range filter. Format is yyyy-MM-dd. | [optional]
|
524
|
+
**page** | **Integer**| Page number. Default is 1. | [optional] [default to 1]
|
525
|
+
**page_size** | **Integer**| Page size. Default is 25. Max allowable is 100. | [optional] [default to 25]
|
526
|
+
**sort** | **String**| List of sort fields (e.g. ?sort=submittedDateTime:asc,instructedDateTime:asc,status:asc) Default is submittedDateTime:asc The supported sort fields are: submittedDateTime, instructedDateTime, status. | [optional]
|
527
|
+
|
528
|
+
### Return type
|
529
|
+
|
530
|
+
[**GetPayoutsResponseV4**](GetPayoutsResponseV4.md)
|
325
531
|
|
326
532
|
### Authorization
|
327
533
|
|
@@ -422,3 +628,93 @@ Name | Type | Description | Notes
|
|
422
628
|
- **Content-Type**: Not defined
|
423
629
|
- **Accept**: application/json
|
424
630
|
|
631
|
+
|
632
|
+
## list_payments_audit_v4
|
633
|
+
|
634
|
+
> ListPaymentsResponse list_payments_audit_v4(opts)
|
635
|
+
|
636
|
+
Get List of Payments
|
637
|
+
|
638
|
+
Get payments for the given payor Id
|
639
|
+
|
640
|
+
### Example
|
641
|
+
|
642
|
+
```ruby
|
643
|
+
# load the gem
|
644
|
+
require 'velopayments'
|
645
|
+
# setup authorization
|
646
|
+
VeloPayments.configure do |config|
|
647
|
+
# Configure OAuth2 access token for authorization: OAuth2
|
648
|
+
config.access_token = 'YOUR ACCESS TOKEN'
|
649
|
+
end
|
650
|
+
|
651
|
+
api_instance = VeloPayments::PaymentAuditServiceApi.new
|
652
|
+
opts = {
|
653
|
+
payee_id: 'payee_id_example', # String | The UUID of the payee.
|
654
|
+
payor_id: 'payor_id_example', # String | The account owner Payor Id. Required for external users.
|
655
|
+
payor_name: 'payor_name_example', # String | The payor’s name. This filters via a case insensitive substring match.
|
656
|
+
remote_id: 'remote_id_example', # String | The remote id of the payees.
|
657
|
+
status: 'status_example', # String | Payment Status
|
658
|
+
source_account_name: 'source_account_name_example', # String | The source account name filter. This filters via a case insensitive substring match.
|
659
|
+
source_amount_from: 56, # Integer | The source amount from range filter. Filters for sourceAmount >= sourceAmountFrom
|
660
|
+
source_amount_to: 56, # Integer | The source amount to range filter. Filters for sourceAmount ⇐ sourceAmountTo
|
661
|
+
source_currency: 'source_currency_example', # String | The source currency filter. Filters based on an exact match on the currency.
|
662
|
+
payment_amount_from: 56, # Integer | The payment amount from range filter. Filters for paymentAmount >= paymentAmountFrom
|
663
|
+
payment_amount_to: 56, # Integer | The payment amount to range filter. Filters for paymentAmount ⇐ paymentAmountTo
|
664
|
+
payment_currency: 'payment_currency_example', # String | The source currency filter. Filters based on an exact match on the currency.
|
665
|
+
submitted_date_from: Date.parse('2013-10-20'), # Date | The submitted date from range filter. Format is yyyy-MM-dd.
|
666
|
+
submitted_date_to: Date.parse('2013-10-20'), # Date | The submitted date to range filter. Format is yyyy-MM-dd.
|
667
|
+
payment_memo: 'payment_memo_example', # String | The payment memo filter. This filters via a case insensitive substring match.
|
668
|
+
page: 1, # Integer | Page number. Default is 1.
|
669
|
+
page_size: 25, # Integer | Page size. Default is 25. Max allowable is 100.
|
670
|
+
sort: 'sort_example', # String | List of sort fields (e.g. ?sort=submittedDateTime:asc,status:asc). Default is sort by remoteId The supported sort fields are: sourceAmount, sourceCurrency, paymentAmount, paymentCurrency, routingNumber, accountNumber, remoteId, submittedDateTime and status
|
671
|
+
sensitive: true # Boolean | Optional. If omitted or set to false, any Personal Identifiable Information (PII) values are returned masked. If set to true, and you have permission, the PII values will be returned as their original unmasked values.
|
672
|
+
}
|
673
|
+
|
674
|
+
begin
|
675
|
+
#Get List of Payments
|
676
|
+
result = api_instance.list_payments_audit_v4(opts)
|
677
|
+
p result
|
678
|
+
rescue VeloPayments::ApiError => e
|
679
|
+
puts "Exception when calling PaymentAuditServiceApi->list_payments_audit_v4: #{e}"
|
680
|
+
end
|
681
|
+
```
|
682
|
+
|
683
|
+
### Parameters
|
684
|
+
|
685
|
+
|
686
|
+
Name | Type | Description | Notes
|
687
|
+
------------- | ------------- | ------------- | -------------
|
688
|
+
**payee_id** | [**String**](.md)| The UUID of the payee. | [optional]
|
689
|
+
**payor_id** | [**String**](.md)| The account owner Payor Id. Required for external users. | [optional]
|
690
|
+
**payor_name** | **String**| The payor’s name. This filters via a case insensitive substring match. | [optional]
|
691
|
+
**remote_id** | **String**| The remote id of the payees. | [optional]
|
692
|
+
**status** | **String**| Payment Status | [optional]
|
693
|
+
**source_account_name** | **String**| The source account name filter. This filters via a case insensitive substring match. | [optional]
|
694
|
+
**source_amount_from** | **Integer**| The source amount from range filter. Filters for sourceAmount >= sourceAmountFrom | [optional]
|
695
|
+
**source_amount_to** | **Integer**| The source amount to range filter. Filters for sourceAmount ⇐ sourceAmountTo | [optional]
|
696
|
+
**source_currency** | **String**| The source currency filter. Filters based on an exact match on the currency. | [optional]
|
697
|
+
**payment_amount_from** | **Integer**| The payment amount from range filter. Filters for paymentAmount >= paymentAmountFrom | [optional]
|
698
|
+
**payment_amount_to** | **Integer**| The payment amount to range filter. Filters for paymentAmount ⇐ paymentAmountTo | [optional]
|
699
|
+
**payment_currency** | **String**| The source currency filter. Filters based on an exact match on the currency. | [optional]
|
700
|
+
**submitted_date_from** | **Date**| The submitted date from range filter. Format is yyyy-MM-dd. | [optional]
|
701
|
+
**submitted_date_to** | **Date**| The submitted date to range filter. Format is yyyy-MM-dd. | [optional]
|
702
|
+
**payment_memo** | **String**| The payment memo filter. This filters via a case insensitive substring match. | [optional]
|
703
|
+
**page** | **Integer**| Page number. Default is 1. | [optional] [default to 1]
|
704
|
+
**page_size** | **Integer**| Page size. Default is 25. Max allowable is 100. | [optional] [default to 25]
|
705
|
+
**sort** | **String**| List of sort fields (e.g. ?sort=submittedDateTime:asc,status:asc). Default is sort by remoteId The supported sort fields are: sourceAmount, sourceCurrency, paymentAmount, paymentCurrency, routingNumber, accountNumber, remoteId, submittedDateTime and status | [optional]
|
706
|
+
**sensitive** | **Boolean**| Optional. If omitted or set to false, any Personal Identifiable Information (PII) values are returned masked. If set to true, and you have permission, the PII values will be returned as their original unmasked values. | [optional]
|
707
|
+
|
708
|
+
### Return type
|
709
|
+
|
710
|
+
[**ListPaymentsResponse**](ListPaymentsResponse.md)
|
711
|
+
|
712
|
+
### Authorization
|
713
|
+
|
714
|
+
[OAuth2](../README.md#OAuth2)
|
715
|
+
|
716
|
+
### HTTP request headers
|
717
|
+
|
718
|
+
- **Content-Type**: Not defined
|
719
|
+
- **Accept**: application/json
|
720
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# VeloPayments::PaymentEventResponseV3
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**event_id** | **String** | The id of the event. |
|
8
|
+
**event_date_time** | **DateTime** | The date/time at which the event occurred. |
|
9
|
+
**event_type** | **String** | The type of the event. |
|
10
|
+
**source_currency** | [**PaymentAuditCurrencyV3**](PaymentAuditCurrencyV3.md) | | [optional]
|
11
|
+
**source_amount** | **Integer** | The source amount exposed by the event. | [optional]
|
12
|
+
**payment_currency** | [**PaymentAuditCurrencyV3**](PaymentAuditCurrencyV3.md) | | [optional]
|
13
|
+
**payment_amount** | **Integer** | The destination amount exposed by the event. | [optional]
|
14
|
+
**account_number** | **String** | The account number attached to the event. | [optional]
|
15
|
+
**routing_number** | **String** | The routing number attached to the event. | [optional]
|
16
|
+
**iban** | **String** | | [optional]
|
17
|
+
**account_name** | **String** | | [optional]
|
18
|
+
**principal** | **String** | | [optional]
|
19
|
+
|
20
|
+
## Code Sample
|
21
|
+
|
22
|
+
```ruby
|
23
|
+
require 'VeloPayments'
|
24
|
+
|
25
|
+
instance = VeloPayments::PaymentEventResponseV3.new(event_id: null,
|
26
|
+
event_date_time: null,
|
27
|
+
event_type: null,
|
28
|
+
source_currency: null,
|
29
|
+
source_amount: 1299,
|
30
|
+
payment_currency: null,
|
31
|
+
payment_amount: 1299,
|
32
|
+
account_number: 123123123,
|
33
|
+
routing_number: 123123123,
|
34
|
+
iban: DE89 3704 0044 0532 0130 00,
|
35
|
+
account_name: My account,
|
36
|
+
principal: Prinicple example)
|
37
|
+
```
|
38
|
+
|
39
|
+
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# VeloPayments::
|
1
|
+
# VeloPayments::PaymentEventResponseV4
|
2
2
|
|
3
3
|
## Properties
|
4
4
|
|
@@ -7,10 +7,10 @@ Name | Type | Description | Notes
|
|
7
7
|
**event_id** | **String** | The id of the event. |
|
8
8
|
**event_date_time** | **DateTime** | The date/time at which the event occurred. |
|
9
9
|
**event_type** | **String** | The type of the event. |
|
10
|
-
**source_currency** | [**
|
11
|
-
**source_amount** | **
|
12
|
-
**payment_currency** | [**
|
13
|
-
**payment_amount** | **
|
10
|
+
**source_currency** | [**PaymentAuditCurrencyV4**](PaymentAuditCurrencyV4.md) | | [optional]
|
11
|
+
**source_amount** | **Integer** | The source amount exposed by the event. | [optional]
|
12
|
+
**payment_currency** | [**PaymentAuditCurrencyV4**](PaymentAuditCurrencyV4.md) | | [optional]
|
13
|
+
**payment_amount** | **Integer** | The destination amount exposed by the event. | [optional]
|
14
14
|
**account_number** | **String** | The account number attached to the event. | [optional]
|
15
15
|
**routing_number** | **String** | The routing number attached to the event. | [optional]
|
16
16
|
**iban** | **String** | | [optional]
|
@@ -22,13 +22,13 @@ Name | Type | Description | Notes
|
|
22
22
|
```ruby
|
23
23
|
require 'VeloPayments'
|
24
24
|
|
25
|
-
instance = VeloPayments::
|
25
|
+
instance = VeloPayments::PaymentEventResponseV4.new(event_id: null,
|
26
26
|
event_date_time: null,
|
27
27
|
event_type: null,
|
28
28
|
source_currency: null,
|
29
|
-
source_amount:
|
29
|
+
source_amount: 1299,
|
30
30
|
payment_currency: null,
|
31
|
-
payment_amount:
|
31
|
+
payment_amount: 1299,
|
32
32
|
account_number: null,
|
33
33
|
routing_number: null,
|
34
34
|
iban: null,
|