increase 0.3.2 → 1.0.0
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/.ignore +2 -0
- data/CHANGELOG.md +807 -56
- data/README.md +213 -254
- data/SECURITY.md +3 -0
- data/lib/increase/client.rb +287 -43
- data/lib/increase/errors.rb +223 -63
- data/lib/increase/file_part.rb +55 -0
- data/lib/increase/internal/page.rb +86 -0
- data/lib/increase/internal/transport/base_client.rb +555 -0
- data/lib/increase/internal/transport/pooled_net_requester.rb +209 -0
- data/lib/increase/internal/type/array_of.rb +162 -0
- data/lib/increase/internal/type/base_model.rb +484 -0
- data/lib/increase/internal/type/base_page.rb +55 -0
- data/lib/increase/internal/type/boolean.rb +71 -0
- data/lib/increase/internal/type/converter.rb +292 -0
- data/lib/increase/internal/type/enum.rb +123 -0
- data/lib/increase/internal/type/file_input.rb +103 -0
- data/lib/increase/internal/type/hash_of.rb +182 -0
- data/lib/increase/internal/type/request_parameters.rb +42 -0
- data/lib/increase/internal/type/union.rb +230 -0
- data/lib/increase/internal/type/unknown.rb +75 -0
- data/lib/increase/internal/util.rb +914 -0
- data/lib/increase/internal.rb +20 -0
- data/lib/increase/models/account.rb +224 -0
- data/lib/increase/models/account_balance_params.rb +22 -0
- data/lib/increase/models/account_close_params.rb +14 -0
- data/lib/increase/models/account_create_params.rb +51 -0
- data/lib/increase/models/account_list_params.rb +155 -0
- data/lib/increase/models/account_number.rb +209 -0
- data/lib/increase/models/account_number_create_params.rb +121 -0
- data/lib/increase/models/account_number_list_params.rb +183 -0
- data/lib/increase/models/account_number_retrieve_params.rb +14 -0
- data/lib/increase/models/account_number_update_params.rb +131 -0
- data/lib/increase/models/account_retrieve_params.rb +14 -0
- data/lib/increase/models/account_statement.rb +105 -0
- data/lib/increase/models/account_statement_list_params.rb +92 -0
- data/lib/increase/models/account_statement_retrieve_params.rb +14 -0
- data/lib/increase/models/account_transfer.rb +389 -0
- data/lib/increase/models/account_transfer_approve_params.rb +14 -0
- data/lib/increase/models/account_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/account_transfer_create_params.rb +58 -0
- data/lib/increase/models/account_transfer_list_params.rb +102 -0
- data/lib/increase/models/account_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/account_update_params.rb +22 -0
- data/lib/increase/models/ach_prenotification.rb +562 -0
- data/lib/increase/models/ach_prenotification_create_params.rb +160 -0
- data/lib/increase/models/ach_prenotification_list_params.rb +94 -0
- data/lib/increase/models/ach_prenotification_retrieve_params.rb +14 -0
- data/lib/increase/models/ach_transfer.rb +1481 -0
- data/lib/increase/models/ach_transfer_approve_params.rb +14 -0
- data/lib/increase/models/ach_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/ach_transfer_create_params.rb +430 -0
- data/lib/increase/models/ach_transfer_list_params.rb +168 -0
- data/lib/increase/models/ach_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/balance_lookup.rb +63 -0
- data/lib/increase/models/bookkeeping_account.rb +104 -0
- data/lib/increase/models/bookkeeping_account_balance_params.rb +22 -0
- data/lib/increase/models/bookkeeping_account_create_params.rb +60 -0
- data/lib/increase/models/bookkeeping_account_list_params.rb +45 -0
- data/lib/increase/models/bookkeeping_account_update_params.rb +22 -0
- data/lib/increase/models/bookkeeping_balance_lookup.rb +54 -0
- data/lib/increase/models/bookkeeping_entry.rb +79 -0
- data/lib/increase/models/bookkeeping_entry_list_params.rb +42 -0
- data/lib/increase/models/bookkeeping_entry_retrieve_params.rb +14 -0
- data/lib/increase/models/bookkeeping_entry_set.rb +116 -0
- data/lib/increase/models/bookkeeping_entry_set_create_params.rb +67 -0
- data/lib/increase/models/bookkeeping_entry_set_list_params.rb +53 -0
- data/lib/increase/models/bookkeeping_entry_set_retrieve_params.rb +14 -0
- data/lib/increase/models/card.rb +243 -0
- data/lib/increase/models/card_create_params.rb +145 -0
- data/lib/increase/models/card_details.rb +78 -0
- data/lib/increase/models/card_details_params.rb +14 -0
- data/lib/increase/models/card_dispute.rb +302 -0
- data/lib/increase/models/card_dispute_create_params.rb +45 -0
- data/lib/increase/models/card_dispute_list_params.rb +144 -0
- data/lib/increase/models/card_dispute_retrieve_params.rb +14 -0
- data/lib/increase/models/card_list_params.rb +142 -0
- data/lib/increase/models/card_payment.rb +6511 -0
- data/lib/increase/models/card_payment_list_params.rb +99 -0
- data/lib/increase/models/card_payment_retrieve_params.rb +14 -0
- data/lib/increase/models/card_purchase_supplement.rb +452 -0
- data/lib/increase/models/card_purchase_supplement_list_params.rb +93 -0
- data/lib/increase/models/card_purchase_supplement_retrieve_params.rb +14 -0
- data/lib/increase/models/card_retrieve_params.rb +14 -0
- data/lib/increase/models/card_update_params.rb +158 -0
- data/lib/increase/models/check_deposit.rb +807 -0
- data/lib/increase/models/check_deposit_create_params.rb +57 -0
- data/lib/increase/models/check_deposit_list_params.rb +102 -0
- data/lib/increase/models/check_deposit_retrieve_params.rb +14 -0
- data/lib/increase/models/check_transfer.rb +983 -0
- data/lib/increase/models/check_transfer_approve_params.rb +14 -0
- data/lib/increase/models/check_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/check_transfer_create_params.rb +324 -0
- data/lib/increase/models/check_transfer_list_params.rb +166 -0
- data/lib/increase/models/check_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/check_transfer_stop_payment_params.rb +39 -0
- data/lib/increase/models/declined_transaction.rb +1779 -0
- data/lib/increase/models/declined_transaction_list_params.rb +153 -0
- data/lib/increase/models/declined_transaction_retrieve_params.rb +14 -0
- data/lib/increase/models/digital_card_profile.rb +197 -0
- data/lib/increase/models/digital_card_profile_archive_params.rb +14 -0
- data/lib/increase/models/digital_card_profile_clone_params.rb +115 -0
- data/lib/increase/models/digital_card_profile_create_params.rb +115 -0
- data/lib/increase/models/digital_card_profile_list_params.rb +91 -0
- data/lib/increase/models/digital_card_profile_retrieve_params.rb +14 -0
- data/lib/increase/models/digital_wallet_token.rb +281 -0
- data/lib/increase/models/digital_wallet_token_list_params.rb +91 -0
- data/lib/increase/models/digital_wallet_token_retrieve_params.rb +14 -0
- data/lib/increase/models/document.rb +135 -0
- data/lib/increase/models/document_create_params.rb +62 -0
- data/lib/increase/models/document_list_params.rb +149 -0
- data/lib/increase/models/document_retrieve_params.rb +14 -0
- data/lib/increase/models/entity.rb +1476 -0
- data/lib/increase/models/entity_archive_beneficial_owner_params.rb +26 -0
- data/lib/increase/models/entity_archive_params.rb +14 -0
- data/lib/increase/models/entity_confirm_params.rb +26 -0
- data/lib/increase/models/entity_create_beneficial_owner_params.rb +412 -0
- data/lib/increase/models/entity_create_params.rb +2318 -0
- data/lib/increase/models/entity_list_params.rb +135 -0
- data/lib/increase/models/entity_retrieve_params.rb +14 -0
- data/lib/increase/models/entity_supplemental_document.rb +72 -0
- data/lib/increase/models/entity_update_address_params.rb +76 -0
- data/lib/increase/models/entity_update_beneficial_owner_address_params.rb +95 -0
- data/lib/increase/models/entity_update_industry_code_params.rb +28 -0
- data/lib/increase/models/event.rb +363 -0
- data/lib/increase/models/event_list_params.rb +395 -0
- data/lib/increase/models/event_retrieve_params.rb +14 -0
- data/lib/increase/models/event_subscription.rb +408 -0
- data/lib/increase/models/event_subscription_create_params.rb +334 -0
- data/lib/increase/models/event_subscription_list_params.rb +45 -0
- data/lib/increase/models/event_subscription_retrieve_params.rb +14 -0
- data/lib/increase/models/event_subscription_update_params.rb +39 -0
- data/lib/increase/models/export.rb +152 -0
- data/lib/increase/models/export_create_params.rb +444 -0
- data/lib/increase/models/export_list_params.rb +188 -0
- data/lib/increase/models/export_retrieve_params.rb +14 -0
- data/lib/increase/models/external_account.rb +166 -0
- data/lib/increase/models/external_account_create_params.rb +92 -0
- data/lib/increase/models/external_account_list_params.rb +93 -0
- data/lib/increase/models/external_account_retrieve_params.rb +14 -0
- data/lib/increase/models/external_account_update_params.rb +91 -0
- data/lib/increase/models/file.rb +213 -0
- data/lib/increase/models/file_create_params.rb +99 -0
- data/lib/increase/models/file_link.rb +90 -0
- data/lib/increase/models/file_link_create_params.rb +34 -0
- data/lib/increase/models/file_list_params.rb +203 -0
- data/lib/increase/models/file_retrieve_params.rb +14 -0
- data/lib/increase/models/group.rb +104 -0
- data/lib/increase/models/group_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_ach_transfer.rb +1095 -0
- data/lib/increase/models/inbound_ach_transfer_create_notification_of_change_params.rb +30 -0
- data/lib/increase/models/inbound_ach_transfer_decline_params.rb +69 -0
- data/lib/increase/models/inbound_ach_transfer_list_params.rb +145 -0
- data/lib/increase/models/inbound_ach_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_ach_transfer_transfer_return_params.rb +67 -0
- data/lib/increase/models/inbound_check_deposit.rb +391 -0
- data/lib/increase/models/inbound_check_deposit_decline_params.rb +14 -0
- data/lib/increase/models/inbound_check_deposit_list_params.rb +100 -0
- data/lib/increase/models/inbound_check_deposit_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_check_deposit_return_params.rb +45 -0
- data/lib/increase/models/inbound_mail_item.rb +132 -0
- data/lib/increase/models/inbound_mail_item_list_params.rb +91 -0
- data/lib/increase/models/inbound_mail_item_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +290 -0
- data/lib/increase/models/inbound_real_time_payments_transfer_list_params.rb +102 -0
- data/lib/increase/models/inbound_real_time_payments_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_wire_drawdown_request.rb +221 -0
- data/lib/increase/models/inbound_wire_drawdown_request_list_params.rb +34 -0
- data/lib/increase/models/inbound_wire_drawdown_request_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_wire_transfer.rb +307 -0
- data/lib/increase/models/inbound_wire_transfer_list_params.rb +145 -0
- data/lib/increase/models/inbound_wire_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_wire_transfer_reverse_params.rb +36 -0
- data/lib/increase/models/intrafi_account_enrollment.rb +121 -0
- data/lib/increase/models/intrafi_account_enrollment_create_params.rb +30 -0
- data/lib/increase/models/intrafi_account_enrollment_list_params.rb +102 -0
- data/lib/increase/models/intrafi_account_enrollment_retrieve_params.rb +14 -0
- data/lib/increase/models/intrafi_account_enrollment_unenroll_params.rb +14 -0
- data/lib/increase/models/intrafi_balance.rb +180 -0
- data/lib/increase/models/intrafi_balance_intrafi_balance_params.rb +14 -0
- data/lib/increase/models/intrafi_exclusion.rb +134 -0
- data/lib/increase/models/intrafi_exclusion_archive_params.rb +14 -0
- data/lib/increase/models/intrafi_exclusion_create_params.rb +30 -0
- data/lib/increase/models/intrafi_exclusion_list_params.rb +53 -0
- data/lib/increase/models/intrafi_exclusion_retrieve_params.rb +14 -0
- data/lib/increase/models/lockbox.rb +182 -0
- data/lib/increase/models/lockbox_create_params.rb +38 -0
- data/lib/increase/models/lockbox_list_params.rb +102 -0
- data/lib/increase/models/lockbox_retrieve_params.rb +14 -0
- data/lib/increase/models/lockbox_update_params.rb +52 -0
- data/lib/increase/models/oauth_application.rb +106 -0
- data/lib/increase/models/oauth_application_list_params.rb +122 -0
- data/lib/increase/models/oauth_application_retrieve_params.rb +14 -0
- data/lib/increase/models/oauth_connection.rb +104 -0
- data/lib/increase/models/oauth_connection_list_params.rb +83 -0
- data/lib/increase/models/oauth_connection_retrieve_params.rb +14 -0
- data/lib/increase/models/oauth_token.rb +67 -0
- data/lib/increase/models/oauth_token_create_params.rb +78 -0
- data/lib/increase/models/pending_transaction.rb +1747 -0
- data/lib/increase/models/pending_transaction_create_params.rb +43 -0
- data/lib/increase/models/pending_transaction_list_params.rb +212 -0
- data/lib/increase/models/pending_transaction_release_params.rb +14 -0
- data/lib/increase/models/pending_transaction_retrieve_params.rb +14 -0
- data/lib/increase/models/physical_card.rb +433 -0
- data/lib/increase/models/physical_card_create_params.rb +185 -0
- data/lib/increase/models/physical_card_list_params.rb +102 -0
- data/lib/increase/models/physical_card_profile.rb +182 -0
- data/lib/increase/models/physical_card_profile_archive_params.rb +14 -0
- data/lib/increase/models/physical_card_profile_clone_params.rb +85 -0
- data/lib/increase/models/physical_card_profile_create_params.rb +93 -0
- data/lib/increase/models/physical_card_profile_list_params.rb +97 -0
- data/lib/increase/models/physical_card_profile_retrieve_params.rb +14 -0
- data/lib/increase/models/physical_card_retrieve_params.rb +14 -0
- data/lib/increase/models/physical_card_update_params.rb +39 -0
- data/lib/increase/models/program.rb +126 -0
- data/lib/increase/models/program_list_params.rb +34 -0
- data/lib/increase/models/program_retrieve_params.rb +14 -0
- data/lib/increase/models/real_time_decision.rb +1303 -0
- data/lib/increase/models/real_time_decision_action_params.rb +351 -0
- data/lib/increase/models/real_time_decision_retrieve_params.rb +14 -0
- data/lib/increase/models/real_time_payments_transfer.rb +622 -0
- data/lib/increase/models/real_time_payments_transfer_approve_params.rb +14 -0
- data/lib/increase/models/real_time_payments_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +112 -0
- data/lib/increase/models/real_time_payments_transfer_list_params.rb +169 -0
- data/lib/increase/models/real_time_payments_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/routing_number_list_params.rb +42 -0
- data/lib/increase/models/routing_number_list_response.rb +125 -0
- data/lib/increase/models/simulations/account_statement_create_params.rb +24 -0
- data/lib/increase/models/simulations/account_transfer_complete_params.rb +16 -0
- data/lib/increase/models/simulations/ach_transfer_acknowledge_params.rb +16 -0
- data/lib/increase/models/simulations/ach_transfer_create_notification_of_change_params.rb +104 -0
- data/lib/increase/models/simulations/ach_transfer_return_params.rb +250 -0
- data/lib/increase/models/simulations/ach_transfer_settle_params.rb +16 -0
- data/lib/increase/models/simulations/ach_transfer_submit_params.rb +16 -0
- data/lib/increase/models/simulations/card_authorization_create_params.rb +309 -0
- data/lib/increase/models/simulations/card_authorization_create_response.rb +59 -0
- data/lib/increase/models/simulations/card_authorization_expiration_create_params.rb +24 -0
- data/lib/increase/models/simulations/card_dispute_action_params.rb +55 -0
- data/lib/increase/models/simulations/card_fuel_confirmation_create_params.rb +37 -0
- data/lib/increase/models/simulations/card_increment_create_params.rb +46 -0
- data/lib/increase/models/simulations/card_refund_create_params.rb +28 -0
- data/lib/increase/models/simulations/card_reversal_create_params.rb +36 -0
- data/lib/increase/models/simulations/card_settlement_create_params.rb +45 -0
- data/lib/increase/models/simulations/check_deposit_reject_params.rb +16 -0
- data/lib/increase/models/simulations/check_deposit_return_params.rb +16 -0
- data/lib/increase/models/simulations/check_deposit_submit_params.rb +16 -0
- data/lib/increase/models/simulations/check_transfer_mail_params.rb +16 -0
- data/lib/increase/models/simulations/digital_wallet_token_request_create_params.rb +24 -0
- data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +83 -0
- data/lib/increase/models/simulations/document_create_params.rb +24 -0
- data/lib/increase/models/simulations/inbound_ach_transfer_create_params.rb +241 -0
- data/lib/increase/models/simulations/inbound_check_deposit_create_params.rb +40 -0
- data/lib/increase/models/simulations/inbound_funds_hold_release_params.rb +16 -0
- data/lib/increase/models/simulations/inbound_funds_hold_release_response.rb +161 -0
- data/lib/increase/models/simulations/inbound_mail_item_create_params.rb +44 -0
- data/lib/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rb +77 -0
- data/lib/increase/models/simulations/inbound_wire_drawdown_request_create_params.rb +186 -0
- data/lib/increase/models/simulations/inbound_wire_transfer_create_params.rb +171 -0
- data/lib/increase/models/simulations/interest_payment_create_params.rb +59 -0
- data/lib/increase/models/simulations/physical_card_advance_shipment_params.rb +57 -0
- data/lib/increase/models/simulations/physical_card_tracking_updates_params.rb +81 -0
- data/lib/increase/models/simulations/program_create_params.rb +32 -0
- data/lib/increase/models/simulations/real_time_payments_transfer_complete_params.rb +113 -0
- data/lib/increase/models/simulations/wire_transfer_reverse_params.rb +16 -0
- data/lib/increase/models/simulations/wire_transfer_submit_params.rb +16 -0
- data/lib/increase/models/supplemental_document_create_params.rb +30 -0
- data/lib/increase/models/supplemental_document_list_params.rb +53 -0
- data/lib/increase/models/transaction.rb +5823 -0
- data/lib/increase/models/transaction_list_params.rb +226 -0
- data/lib/increase/models/transaction_retrieve_params.rb +14 -0
- data/lib/increase/models/wire_drawdown_request.rb +249 -0
- data/lib/increase/models/wire_drawdown_request_create_params.rb +129 -0
- data/lib/increase/models/wire_drawdown_request_list_params.rb +91 -0
- data/lib/increase/models/wire_drawdown_request_retrieve_params.rb +14 -0
- data/lib/increase/models/wire_transfer.rb +677 -0
- data/lib/increase/models/wire_transfer_approve_params.rb +14 -0
- data/lib/increase/models/wire_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/wire_transfer_create_params.rb +151 -0
- data/lib/increase/models/wire_transfer_list_params.rb +110 -0
- data/lib/increase/models/wire_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models.rb +483 -0
- data/lib/increase/request_options.rb +77 -0
- data/lib/increase/resources/account_numbers.rb +130 -13
- data/lib/increase/resources/account_statements.rb +60 -9
- data/lib/increase/resources/account_transfers.rb +135 -15
- data/lib/increase/resources/accounts.rb +168 -15
- data/lib/increase/resources/ach_prenotifications.rb +109 -11
- data/lib/increase/resources/ach_transfers.rb +167 -15
- data/lib/increase/resources/bookkeeping_accounts.rb +120 -0
- data/lib/increase/resources/bookkeeping_entries.rb +64 -0
- data/lib/increase/resources/bookkeeping_entry_sets.rb +95 -0
- data/lib/increase/resources/card_disputes.rb +91 -11
- data/lib/increase/resources/card_payments.rb +68 -0
- data/lib/increase/resources/card_purchase_supplements.rb +66 -0
- data/lib/increase/resources/cards.rb +146 -15
- data/lib/increase/resources/check_deposits.rb +95 -11
- data/lib/increase/resources/check_transfers.rb +167 -17
- data/lib/increase/resources/declined_transactions.rb +64 -9
- data/lib/increase/resources/digital_card_profiles.rb +164 -0
- data/lib/increase/resources/digital_wallet_tokens.rb +60 -9
- data/lib/increase/resources/documents.rb +89 -10
- data/lib/increase/resources/entities.rb +293 -14
- data/lib/increase/resources/event_subscriptions.rb +113 -13
- data/lib/increase/resources/events.rb +62 -9
- data/lib/increase/resources/exports.rb +109 -0
- data/lib/increase/resources/external_accounts.rb +125 -13
- data/lib/increase/resources/file_links.rb +41 -0
- data/lib/increase/resources/files.rb +94 -11
- data/lib/increase/resources/groups.rb +26 -7
- data/lib/increase/resources/inbound_ach_transfers.rb +154 -0
- data/lib/increase/resources/inbound_check_deposits.rb +112 -0
- data/lib/increase/resources/inbound_mail_items.rb +66 -0
- data/lib/increase/resources/inbound_real_time_payments_transfers.rb +68 -0
- data/lib/increase/resources/inbound_wire_drawdown_requests.rb +56 -9
- data/lib/increase/resources/inbound_wire_transfers.rb +94 -0
- data/lib/increase/resources/intrafi_account_enrollments.rb +112 -0
- data/lib/increase/resources/intrafi_balances.rb +36 -0
- data/lib/increase/resources/intrafi_exclusions.rb +113 -0
- data/lib/increase/resources/lockboxes.rb +122 -0
- data/lib/increase/resources/oauth_applications.rb +66 -0
- data/lib/increase/resources/oauth_connections.rb +60 -9
- data/lib/increase/resources/oauth_tokens.rb +47 -0
- data/lib/increase/resources/pending_transactions.rb +122 -10
- data/lib/increase/resources/physical_card_profiles.rb +156 -0
- data/lib/increase/resources/physical_cards.rb +123 -0
- data/lib/increase/resources/programs.rb +62 -0
- data/lib/increase/resources/real_time_decisions.rb +63 -9
- data/lib/increase/resources/real_time_payments_transfers.rb +157 -0
- data/lib/increase/resources/routing_numbers.rb +41 -7
- data/lib/increase/resources/simulations/account_statements.rb +39 -0
- data/lib/increase/resources/simulations/account_transfers.rb +39 -0
- data/lib/increase/resources/simulations/ach_transfers.rb +151 -0
- data/lib/increase/resources/simulations/card_authorization_expirations.rb +38 -0
- data/lib/increase/resources/simulations/card_authorizations.rb +79 -0
- data/lib/increase/resources/simulations/card_disputes.rb +45 -0
- data/lib/increase/resources/simulations/card_fuel_confirmations.rb +46 -0
- data/lib/increase/resources/simulations/card_increments.rb +46 -0
- data/lib/increase/resources/simulations/card_refunds.rb +42 -0
- data/lib/increase/resources/simulations/card_reversals.rb +46 -0
- data/lib/increase/resources/simulations/card_settlements.rb +49 -0
- data/lib/increase/resources/simulations/check_deposits.rb +80 -0
- data/lib/increase/resources/simulations/check_transfers.rb +39 -0
- data/lib/increase/resources/simulations/digital_wallet_token_requests.rb +39 -0
- data/lib/increase/resources/simulations/documents.rb +38 -0
- data/lib/increase/resources/simulations/inbound_ach_transfers.rb +73 -0
- data/lib/increase/resources/simulations/inbound_check_deposits.rb +47 -0
- data/lib/increase/resources/simulations/inbound_funds_holds.rb +37 -0
- data/lib/increase/resources/simulations/inbound_mail_items.rb +46 -0
- data/lib/increase/resources/simulations/inbound_real_time_payments_transfers.rb +56 -0
- data/lib/increase/resources/simulations/inbound_wire_drawdown_requests.rb +81 -0
- data/lib/increase/resources/simulations/inbound_wire_transfers.rb +74 -0
- data/lib/increase/resources/simulations/interest_payments.rb +50 -0
- data/lib/increase/resources/simulations/physical_cards.rb +79 -0
- data/lib/increase/resources/simulations/programs.rb +43 -0
- data/lib/increase/resources/simulations/real_time_payments_transfers.rb +43 -0
- data/lib/increase/resources/simulations/wire_transfers.rb +61 -0
- data/lib/increase/resources/simulations.rb +127 -0
- data/lib/increase/resources/supplemental_documents.rb +70 -0
- data/lib/increase/resources/transactions.rb +64 -9
- data/lib/increase/resources/wire_drawdown_requests.rb +109 -11
- data/lib/increase/resources/wire_transfers.rb +159 -15
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +386 -22
- data/manifest.yaml +15 -0
- data/rbi/increase/client.rbi +221 -0
- data/rbi/increase/errors.rbi +206 -0
- data/rbi/increase/file_part.rbi +37 -0
- data/rbi/increase/internal/page.rbi +22 -0
- data/rbi/increase/internal/transport/base_client.rbi +293 -0
- data/rbi/increase/internal/transport/pooled_net_requester.rbi +79 -0
- data/rbi/increase/internal/type/array_of.rbi +104 -0
- data/rbi/increase/internal/type/base_model.rbi +302 -0
- data/rbi/increase/internal/type/base_page.rbi +42 -0
- data/rbi/increase/internal/type/boolean.rbi +56 -0
- data/rbi/increase/internal/type/converter.rbi +162 -0
- data/rbi/increase/internal/type/enum.rbi +82 -0
- data/rbi/increase/internal/type/file_input.rbi +59 -0
- data/rbi/increase/internal/type/hash_of.rbi +104 -0
- data/rbi/increase/internal/type/request_parameters.rbi +29 -0
- data/rbi/increase/internal/type/union.rbi +116 -0
- data/rbi/increase/internal/type/unknown.rbi +56 -0
- data/rbi/increase/internal/util.rbi +487 -0
- data/rbi/increase/internal.rbi +16 -0
- data/rbi/increase/models/account.rbi +269 -0
- data/rbi/increase/models/account_balance_params.rbi +43 -0
- data/rbi/increase/models/account_close_params.rbi +27 -0
- data/rbi/increase/models/account_create_params.rbi +80 -0
- data/rbi/increase/models/account_list_params.rbi +280 -0
- data/rbi/increase/models/account_number.rbi +348 -0
- data/rbi/increase/models/account_number_create_params.rbi +262 -0
- data/rbi/increase/models/account_number_list_params.rbi +396 -0
- data/rbi/increase/models/account_number_retrieve_params.rbi +30 -0
- data/rbi/increase/models/account_number_update_params.rbi +320 -0
- data/rbi/increase/models/account_retrieve_params.rbi +27 -0
- data/rbi/increase/models/account_statement.rbi +136 -0
- data/rbi/increase/models/account_statement_list_params.rbi +167 -0
- data/rbi/increase/models/account_statement_retrieve_params.rbi +30 -0
- data/rbi/increase/models/account_transfer.rbi +634 -0
- data/rbi/increase/models/account_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/account_transfer_cancel_params.rbi +30 -0
- data/rbi/increase/models/account_transfer_create_params.rbi +83 -0
- data/rbi/increase/models/account_transfer_list_params.rbi +177 -0
- data/rbi/increase/models/account_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/account_update_params.rbi +43 -0
- data/rbi/increase/models/ach_prenotification.rbi +1094 -0
- data/rbi/increase/models/ach_prenotification_create_params.rbi +294 -0
- data/rbi/increase/models/ach_prenotification_list_params.rbi +168 -0
- data/rbi/increase/models/ach_prenotification_retrieve_params.rbi +30 -0
- data/rbi/increase/models/ach_transfer.rbi +2672 -0
- data/rbi/increase/models/ach_transfer_approve_params.rbi +27 -0
- data/rbi/increase/models/ach_transfer_cancel_params.rbi +27 -0
- data/rbi/increase/models/ach_transfer_create_params.rbi +904 -0
- data/rbi/increase/models/ach_transfer_list_params.rbi +330 -0
- data/rbi/increase/models/ach_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/balance_lookup.rbi +90 -0
- data/rbi/increase/models/bookkeeping_account.rbi +165 -0
- data/rbi/increase/models/bookkeeping_account_balance_params.rbi +46 -0
- data/rbi/increase/models/bookkeeping_account_create_params.rbi +130 -0
- data/rbi/increase/models/bookkeeping_account_list_params.rbi +79 -0
- data/rbi/increase/models/bookkeeping_account_update_params.rbi +43 -0
- data/rbi/increase/models/bookkeeping_balance_lookup.rbi +85 -0
- data/rbi/increase/models/bookkeeping_entry.rbi +108 -0
- data/rbi/increase/models/bookkeeping_entry_list_params.rbi +73 -0
- data/rbi/increase/models/bookkeeping_entry_retrieve_params.rbi +30 -0
- data/rbi/increase/models/bookkeeping_entry_set.rbi +162 -0
- data/rbi/increase/models/bookkeeping_entry_set_create_params.rbi +110 -0
- data/rbi/increase/models/bookkeeping_entry_set_list_params.rbi +90 -0
- data/rbi/increase/models/bookkeeping_entry_set_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card.rbi +317 -0
- data/rbi/increase/models/card_create_params.rbi +241 -0
- data/rbi/increase/models/card_details.rbi +103 -0
- data/rbi/increase/models/card_details_params.rbi +27 -0
- data/rbi/increase/models/card_dispute.rbi +425 -0
- data/rbi/increase/models/card_dispute_create_params.rbi +70 -0
- data/rbi/increase/models/card_dispute_list_params.rbi +289 -0
- data/rbi/increase/models/card_dispute_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card_list_params.rbi +252 -0
- data/rbi/increase/models/card_payment.rbi +11956 -0
- data/rbi/increase/models/card_payment_list_params.rbi +168 -0
- data/rbi/increase/models/card_payment_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card_purchase_supplement.rbi +687 -0
- data/rbi/increase/models/card_purchase_supplement_list_params.rbi +168 -0
- data/rbi/increase/models/card_purchase_supplement_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card_retrieve_params.rbi +27 -0
- data/rbi/increase/models/card_update_params.rbi +267 -0
- data/rbi/increase/models/check_deposit.rbi +1393 -0
- data/rbi/increase/models/check_deposit_create_params.rbi +78 -0
- data/rbi/increase/models/check_deposit_list_params.rbi +174 -0
- data/rbi/increase/models/check_deposit_retrieve_params.rbi +30 -0
- data/rbi/increase/models/check_transfer.rbi +1670 -0
- data/rbi/increase/models/check_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/check_transfer_cancel_params.rbi +30 -0
- data/rbi/increase/models/check_transfer_create_params.rbi +573 -0
- data/rbi/increase/models/check_transfer_list_params.rbi +332 -0
- data/rbi/increase/models/check_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/check_transfer_stop_payment_params.rbi +99 -0
- data/rbi/increase/models/declined_transaction.rbi +3355 -0
- data/rbi/increase/models/declined_transaction_list_params.rbi +322 -0
- data/rbi/increase/models/declined_transaction_retrieve_params.rbi +30 -0
- data/rbi/increase/models/digital_card_profile.rbi +258 -0
- data/rbi/increase/models/digital_card_profile_archive_params.rbi +30 -0
- data/rbi/increase/models/digital_card_profile_clone_params.rbi +188 -0
- data/rbi/increase/models/digital_card_profile_create_params.rbi +174 -0
- data/rbi/increase/models/digital_card_profile_list_params.rbi +203 -0
- data/rbi/increase/models/digital_card_profile_retrieve_params.rbi +30 -0
- data/rbi/increase/models/digital_wallet_token.rbi +508 -0
- data/rbi/increase/models/digital_wallet_token_list_params.rbi +162 -0
- data/rbi/increase/models/digital_wallet_token_retrieve_params.rbi +30 -0
- data/rbi/increase/models/document.rbi +198 -0
- data/rbi/increase/models/document_create_params.rbi +132 -0
- data/rbi/increase/models/document_list_params.rbi +289 -0
- data/rbi/increase/models/document_retrieve_params.rbi +27 -0
- data/rbi/increase/models/entity.rbi +2531 -0
- data/rbi/increase/models/entity_archive_beneficial_owner_params.rbi +48 -0
- data/rbi/increase/models/entity_archive_params.rbi +27 -0
- data/rbi/increase/models/entity_confirm_params.rbi +45 -0
- data/rbi/increase/models/entity_create_beneficial_owner_params.rbi +764 -0
- data/rbi/increase/models/entity_create_params.rbi +4200 -0
- data/rbi/increase/models/entity_list_params.rbi +256 -0
- data/rbi/increase/models/entity_retrieve_params.rbi +27 -0
- data/rbi/increase/models/entity_supplemental_document.rbi +108 -0
- data/rbi/increase/models/entity_update_address_params.rbi +129 -0
- data/rbi/increase/models/entity_update_beneficial_owner_address_params.rbi +163 -0
- data/rbi/increase/models/entity_update_industry_code_params.rbi +49 -0
- data/rbi/increase/models/event.rbi +698 -0
- data/rbi/increase/models/event_list_params.rbi +862 -0
- data/rbi/increase/models/event_retrieve_params.rbi +27 -0
- data/rbi/increase/models/event_subscription.rbi +833 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +753 -0
- data/rbi/increase/models/event_subscription_list_params.rbi +79 -0
- data/rbi/increase/models/event_subscription_retrieve_params.rbi +30 -0
- data/rbi/increase/models/event_subscription_update_params.rbi +99 -0
- data/rbi/increase/models/export.rbi +196 -0
- data/rbi/increase/models/export_create_params.rbi +933 -0
- data/rbi/increase/models/export_list_params.rbi +386 -0
- data/rbi/increase/models/export_retrieve_params.rbi +27 -0
- data/rbi/increase/models/external_account.rbi +236 -0
- data/rbi/increase/models/external_account_create_params.rbi +191 -0
- data/rbi/increase/models/external_account_list_params.rbi +198 -0
- data/rbi/increase/models/external_account_retrieve_params.rbi +30 -0
- data/rbi/increase/models/external_account_update_params.rbi +223 -0
- data/rbi/increase/models/file.rbi +291 -0
- data/rbi/increase/models/file_create_params.rbi +188 -0
- data/rbi/increase/models/file_link.rbi +115 -0
- data/rbi/increase/models/file_link_create_params.rbi +56 -0
- data/rbi/increase/models/file_list_params.rbi +410 -0
- data/rbi/increase/models/file_retrieve_params.rbi +27 -0
- data/rbi/increase/models/group.rbi +139 -0
- data/rbi/increase/models/group_retrieve_params.rbi +27 -0
- data/rbi/increase/models/inbound_ach_transfer.rbi +1898 -0
- data/rbi/increase/models/inbound_ach_transfer_create_notification_of_change_params.rbi +60 -0
- data/rbi/increase/models/inbound_ach_transfer_decline_params.rbi +154 -0
- data/rbi/increase/models/inbound_ach_transfer_list_params.rbi +297 -0
- data/rbi/increase/models/inbound_ach_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_ach_transfer_transfer_return_params.rbi +149 -0
- data/rbi/increase/models/inbound_check_deposit.rbi +609 -0
- data/rbi/increase/models/inbound_check_deposit_decline_params.rbi +30 -0
- data/rbi/increase/models/inbound_check_deposit_list_params.rbi +176 -0
- data/rbi/increase/models/inbound_check_deposit_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_check_deposit_return_params.rbi +104 -0
- data/rbi/increase/models/inbound_mail_item.rbi +201 -0
- data/rbi/increase/models/inbound_mail_item_list_params.rbi +160 -0
- data/rbi/increase/models/inbound_mail_item_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +516 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer_list_params.rbi +184 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_wire_drawdown_request.rbi +261 -0
- data/rbi/increase/models/inbound_wire_drawdown_request_list_params.rbi +62 -0
- data/rbi/increase/models/inbound_wire_drawdown_request_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_wire_transfer.rbi +400 -0
- data/rbi/increase/models/inbound_wire_transfer_list_params.rbi +300 -0
- data/rbi/increase/models/inbound_wire_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_wire_transfer_reverse_params.rbi +84 -0
- data/rbi/increase/models/intrafi_account_enrollment.rbi +185 -0
- data/rbi/increase/models/intrafi_account_enrollment_create_params.rbi +54 -0
- data/rbi/increase/models/intrafi_account_enrollment_list_params.rbi +226 -0
- data/rbi/increase/models/intrafi_account_enrollment_retrieve_params.rbi +30 -0
- data/rbi/increase/models/intrafi_account_enrollment_unenroll_params.rbi +30 -0
- data/rbi/increase/models/intrafi_balance.rbi +262 -0
- data/rbi/increase/models/intrafi_balance_intrafi_balance_params.rbi +30 -0
- data/rbi/increase/models/intrafi_exclusion.rbi +176 -0
- data/rbi/increase/models/intrafi_exclusion_archive_params.rbi +30 -0
- data/rbi/increase/models/intrafi_exclusion_create_params.rbi +54 -0
- data/rbi/increase/models/intrafi_exclusion_list_params.rbi +90 -0
- data/rbi/increase/models/intrafi_exclusion_retrieve_params.rbi +30 -0
- data/rbi/increase/models/lockbox.rbi +232 -0
- data/rbi/increase/models/lockbox_create_params.rbi +65 -0
- data/rbi/increase/models/lockbox_list_params.rbi +172 -0
- data/rbi/increase/models/lockbox_retrieve_params.rbi +27 -0
- data/rbi/increase/models/lockbox_update_params.rbi +97 -0
- data/rbi/increase/models/oauth_application.rbi +146 -0
- data/rbi/increase/models/oauth_application_list_params.rbi +259 -0
- data/rbi/increase/models/oauth_application_retrieve_params.rbi +30 -0
- data/rbi/increase/models/oauth_connection.rbi +142 -0
- data/rbi/increase/models/oauth_connection_list_params.rbi +183 -0
- data/rbi/increase/models/oauth_connection_retrieve_params.rbi +30 -0
- data/rbi/increase/models/oauth_token.rbi +98 -0
- data/rbi/increase/models/oauth_token_create_params.rbi +133 -0
- data/rbi/increase/models/pending_transaction.rbi +3220 -0
- data/rbi/increase/models/pending_transaction_create_params.rbi +69 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +475 -0
- data/rbi/increase/models/pending_transaction_release_params.rbi +30 -0
- data/rbi/increase/models/pending_transaction_retrieve_params.rbi +30 -0
- data/rbi/increase/models/physical_card.rbi +691 -0
- data/rbi/increase/models/physical_card_create_params.rbi +327 -0
- data/rbi/increase/models/physical_card_list_params.rbi +174 -0
- data/rbi/increase/models/physical_card_profile.rbi +245 -0
- data/rbi/increase/models/physical_card_profile_archive_params.rbi +30 -0
- data/rbi/increase/models/physical_card_profile_clone_params.rbi +143 -0
- data/rbi/increase/models/physical_card_profile_create_params.rbi +139 -0
- data/rbi/increase/models/physical_card_profile_list_params.rbi +219 -0
- data/rbi/increase/models/physical_card_profile_retrieve_params.rbi +30 -0
- data/rbi/increase/models/physical_card_retrieve_params.rbi +30 -0
- data/rbi/increase/models/physical_card_update_params.rbi +83 -0
- data/rbi/increase/models/program.rbi +155 -0
- data/rbi/increase/models/program_list_params.rbi +59 -0
- data/rbi/increase/models/program_retrieve_params.rbi +27 -0
- data/rbi/increase/models/real_time_decision.rbi +2466 -0
- data/rbi/increase/models/real_time_decision_action_params.rbi +806 -0
- data/rbi/increase/models/real_time_decision_retrieve_params.rbi +30 -0
- data/rbi/increase/models/real_time_payments_transfer.rbi +1151 -0
- data/rbi/increase/models/real_time_payments_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/real_time_payments_transfer_cancel_params.rbi +30 -0
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +161 -0
- data/rbi/increase/models/real_time_payments_transfer_list_params.rbi +351 -0
- data/rbi/increase/models/real_time_payments_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/routing_number_list_params.rbi +67 -0
- data/rbi/increase/models/routing_number_list_response.rbi +246 -0
- data/rbi/increase/models/simulations/account_statement_create_params.rbi +45 -0
- data/rbi/increase/models/simulations/account_transfer_complete_params.rbi +32 -0
- data/rbi/increase/models/simulations/ach_transfer_acknowledge_params.rbi +32 -0
- data/rbi/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbi +219 -0
- data/rbi/increase/models/simulations/ach_transfer_return_params.rbi +581 -0
- data/rbi/increase/models/simulations/ach_transfer_settle_params.rbi +32 -0
- data/rbi/increase/models/simulations/ach_transfer_submit_params.rbi +32 -0
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +648 -0
- data/rbi/increase/models/simulations/card_authorization_create_response.rbi +123 -0
- data/rbi/increase/models/simulations/card_authorization_expiration_create_params.rbi +48 -0
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +124 -0
- data/rbi/increase/models/simulations/card_fuel_confirmation_create_params.rbi +58 -0
- data/rbi/increase/models/simulations/card_increment_create_params.rbi +73 -0
- data/rbi/increase/models/simulations/card_refund_create_params.rbi +50 -0
- data/rbi/increase/models/simulations/card_reversal_create_params.rbi +61 -0
- data/rbi/increase/models/simulations/card_settlement_create_params.rbi +71 -0
- data/rbi/increase/models/simulations/check_deposit_reject_params.rbi +32 -0
- data/rbi/increase/models/simulations/check_deposit_return_params.rbi +32 -0
- data/rbi/increase/models/simulations/check_deposit_submit_params.rbi +32 -0
- data/rbi/increase/models/simulations/check_transfer_mail_params.rbi +32 -0
- data/rbi/increase/models/simulations/digital_wallet_token_request_create_params.rbi +45 -0
- data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +167 -0
- data/rbi/increase/models/simulations/document_create_params.rbi +45 -0
- data/rbi/increase/models/simulations/inbound_ach_transfer_create_params.rbi +508 -0
- data/rbi/increase/models/simulations/inbound_check_deposit_create_params.rbi +64 -0
- data/rbi/increase/models/simulations/inbound_funds_hold_release_params.rbi +32 -0
- data/rbi/increase/models/simulations/inbound_funds_hold_release_response.rbi +280 -0
- data/rbi/increase/models/simulations/inbound_mail_item_create_params.rbi +69 -0
- data/rbi/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbi +113 -0
- data/rbi/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbi +248 -0
- data/rbi/increase/models/simulations/inbound_wire_transfer_create_params.rbi +251 -0
- data/rbi/increase/models/simulations/interest_payment_create_params.rbi +89 -0
- data/rbi/increase/models/simulations/physical_card_advance_shipment_params.rbi +134 -0
- data/rbi/increase/models/simulations/physical_card_tracking_updates_params.rbi +152 -0
- data/rbi/increase/models/simulations/program_create_params.rbi +59 -0
- data/rbi/increase/models/simulations/real_time_payments_transfer_complete_params.rbi +277 -0
- data/rbi/increase/models/simulations/wire_transfer_reverse_params.rbi +32 -0
- data/rbi/increase/models/simulations/wire_transfer_submit_params.rbi +32 -0
- data/rbi/increase/models/supplemental_document_create_params.rbi +54 -0
- data/rbi/increase/models/supplemental_document_list_params.rbi +87 -0
- data/rbi/increase/models/transaction.rbi +10456 -0
- data/rbi/increase/models/transaction_list_params.rbi +473 -0
- data/rbi/increase/models/transaction_retrieve_params.rbi +30 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +324 -0
- data/rbi/increase/models/wire_drawdown_request_create_params.rbi +179 -0
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +205 -0
- data/rbi/increase/models/wire_drawdown_request_retrieve_params.rbi +30 -0
- data/rbi/increase/models/wire_transfer.rbi +974 -0
- data/rbi/increase/models/wire_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/wire_transfer_cancel_params.rbi +27 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +211 -0
- data/rbi/increase/models/wire_transfer_list_params.rbi +185 -0
- data/rbi/increase/models/wire_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models.rbi +517 -0
- data/rbi/increase/request_options.rbi +59 -0
- data/rbi/increase/resources/account_numbers.rbi +113 -0
- data/rbi/increase/resources/account_statements.rbi +50 -0
- data/rbi/increase/resources/account_transfers.rbi +110 -0
- data/rbi/increase/resources/accounts.rbi +137 -0
- data/rbi/increase/resources/ach_prenotifications.rbi +107 -0
- data/rbi/increase/resources/ach_transfers.rbi +179 -0
- data/rbi/increase/resources/bookkeeping_accounts.rbi +94 -0
- data/rbi/increase/resources/bookkeeping_entries.rbi +47 -0
- data/rbi/increase/resources/bookkeeping_entry_sets.rbi +75 -0
- data/rbi/increase/resources/card_disputes.rbi +78 -0
- data/rbi/increase/resources/card_payments.rbi +52 -0
- data/rbi/increase/resources/card_purchase_supplements.rbi +51 -0
- data/rbi/increase/resources/cards.rbi +134 -0
- data/rbi/increase/resources/check_deposits.rbi +81 -0
- data/rbi/increase/resources/check_transfers.rbi +146 -0
- data/rbi/increase/resources/declined_transactions.rbi +55 -0
- data/rbi/increase/resources/digital_card_profiles.rbi +147 -0
- data/rbi/increase/resources/digital_wallet_tokens.rbi +49 -0
- data/rbi/increase/resources/documents.rbi +75 -0
- data/rbi/increase/resources/entities.rbi +241 -0
- data/rbi/increase/resources/event_subscriptions.rbi +94 -0
- data/rbi/increase/resources/events.rbi +51 -0
- data/rbi/increase/resources/exports.rbi +94 -0
- data/rbi/increase/resources/external_accounts.rbi +110 -0
- data/rbi/increase/resources/file_links.rbi +30 -0
- data/rbi/increase/resources/files.rbi +78 -0
- data/rbi/increase/resources/groups.rbi +21 -0
- data/rbi/increase/resources/inbound_ach_transfers.rbi +114 -0
- data/rbi/increase/resources/inbound_check_deposits.rbi +85 -0
- data/rbi/increase/resources/inbound_mail_items.rbi +49 -0
- data/rbi/increase/resources/inbound_real_time_payments_transfers.rbi +57 -0
- data/rbi/increase/resources/inbound_wire_drawdown_requests.rbi +46 -0
- data/rbi/increase/resources/inbound_wire_transfers.rbi +72 -0
- data/rbi/increase/resources/intrafi_account_enrollments.rbi +86 -0
- data/rbi/increase/resources/intrafi_balances.rbi +28 -0
- data/rbi/increase/resources/intrafi_exclusions.rbi +86 -0
- data/rbi/increase/resources/lockboxes.rbi +98 -0
- data/rbi/increase/resources/oauth_applications.rbi +48 -0
- data/rbi/increase/resources/oauth_connections.rbi +50 -0
- data/rbi/increase/resources/oauth_tokens.rbi +44 -0
- data/rbi/increase/resources/pending_transactions.rbi +98 -0
- data/rbi/increase/resources/physical_card_profiles.rbi +128 -0
- data/rbi/increase/resources/physical_cards.rbi +96 -0
- data/rbi/increase/resources/programs.rbi +44 -0
- data/rbi/increase/resources/real_time_decisions.rbi +65 -0
- data/rbi/increase/resources/real_time_payments_transfers.rbi +141 -0
- data/rbi/increase/resources/routing_numbers.rbi +38 -0
- data/rbi/increase/resources/simulations/account_statements.rbi +29 -0
- data/rbi/increase/resources/simulations/account_transfers.rbi +31 -0
- data/rbi/increase/resources/simulations/ach_transfers.rbi +115 -0
- data/rbi/increase/resources/simulations/card_authorization_expirations.rbi +28 -0
- data/rbi/increase/resources/simulations/card_authorizations.rbi +97 -0
- data/rbi/increase/resources/simulations/card_disputes.rbi +38 -0
- data/rbi/increase/resources/simulations/card_fuel_confirmations.rbi +34 -0
- data/rbi/increase/resources/simulations/card_increments.rbi +38 -0
- data/rbi/increase/resources/simulations/card_refunds.rbi +30 -0
- data/rbi/increase/resources/simulations/card_reversals.rbi +35 -0
- data/rbi/increase/resources/simulations/card_settlements.rbi +40 -0
- data/rbi/increase/resources/simulations/check_deposits.rbi +60 -0
- data/rbi/increase/resources/simulations/check_transfers.rbi +31 -0
- data/rbi/increase/resources/simulations/digital_wallet_token_requests.rbi +31 -0
- data/rbi/increase/resources/simulations/documents.rbi +28 -0
- data/rbi/increase/resources/simulations/inbound_ach_transfers.rbi +75 -0
- data/rbi/increase/resources/simulations/inbound_check_deposits.rbi +39 -0
- data/rbi/increase/resources/simulations/inbound_funds_holds.rbi +31 -0
- data/rbi/increase/resources/simulations/inbound_mail_items.rbi +36 -0
- data/rbi/increase/resources/simulations/inbound_real_time_payments_transfers.rbi +49 -0
- data/rbi/increase/resources/simulations/inbound_wire_drawdown_requests.rbi +92 -0
- data/rbi/increase/resources/simulations/inbound_wire_transfers.rbi +91 -0
- data/rbi/increase/resources/simulations/interest_payments.rbi +41 -0
- data/rbi/increase/resources/simulations/physical_cards.rbi +66 -0
- data/rbi/increase/resources/simulations/programs.rbi +34 -0
- data/rbi/increase/resources/simulations/real_time_payments_transfers.rbi +35 -0
- data/rbi/increase/resources/simulations/wire_transfers.rbi +47 -0
- data/rbi/increase/resources/simulations.rbi +105 -0
- data/rbi/increase/resources/supplemental_documents.rbi +58 -0
- data/rbi/increase/resources/transactions.rbi +55 -0
- data/rbi/increase/resources/wire_drawdown_requests.rbi +110 -0
- data/rbi/increase/resources/wire_transfers.rbi +151 -0
- data/rbi/increase/version.rbi +5 -0
- data/sig/increase/client.rbs +135 -0
- data/sig/increase/errors.rbs +145 -0
- data/sig/increase/file_part.rbs +21 -0
- data/sig/increase/internal/page.rbs +13 -0
- data/sig/increase/internal/transport/base_client.rbs +131 -0
- data/sig/increase/internal/transport/pooled_net_requester.rbs +45 -0
- data/sig/increase/internal/type/array_of.rbs +48 -0
- data/sig/increase/internal/type/base_model.rbs +102 -0
- data/sig/increase/internal/type/base_page.rbs +24 -0
- data/sig/increase/internal/type/boolean.rbs +26 -0
- data/sig/increase/internal/type/converter.rbs +56 -0
- data/sig/increase/internal/type/enum.rbs +32 -0
- data/sig/increase/internal/type/file_input.rbs +25 -0
- data/sig/increase/internal/type/hash_of.rbs +48 -0
- data/sig/increase/internal/type/request_parameters.rbs +17 -0
- data/sig/increase/internal/type/union.rbs +52 -0
- data/sig/increase/internal/type/unknown.rbs +26 -0
- data/sig/increase/internal/util.rbs +185 -0
- data/sig/increase/internal.rbs +9 -0
- data/sig/increase/models/account.rbs +157 -0
- data/sig/increase/models/account_balance_params.rbs +25 -0
- data/sig/increase/models/account_close_params.rbs +15 -0
- data/sig/increase/models/account_create_params.rbs +47 -0
- data/sig/increase/models/account_list_params.rbs +149 -0
- data/sig/increase/models/account_number.rbs +157 -0
- data/sig/increase/models/account_number_create_params.rbs +111 -0
- data/sig/increase/models/account_number_list_params.rbs +182 -0
- data/sig/increase/models/account_number_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_number_update_params.rbs +138 -0
- data/sig/increase/models/account_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_statement.rbs +70 -0
- data/sig/increase/models/account_statement_list_params.rbs +86 -0
- data/sig/increase/models/account_statement_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_transfer.rbs +266 -0
- data/sig/increase/models/account_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/account_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/account_transfer_create_params.rbs +48 -0
- data/sig/increase/models/account_transfer_list_params.rbs +93 -0
- data/sig/increase/models/account_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_update_params.rbs +25 -0
- data/sig/increase/models/ach_prenotification.rbs +561 -0
- data/sig/increase/models/ach_prenotification_create_params.rbs +148 -0
- data/sig/increase/models/ach_prenotification_list_params.rbs +86 -0
- data/sig/increase/models/ach_prenotification_retrieve_params.rbs +15 -0
- data/sig/increase/models/ach_transfer.rbs +1207 -0
- data/sig/increase/models/ach_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/ach_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/ach_transfer_create_params.rbs +379 -0
- data/sig/increase/models/ach_transfer_list_params.rbs +172 -0
- data/sig/increase/models/ach_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/balance_lookup.rbs +45 -0
- data/sig/increase/models/bookkeeping_account.rbs +74 -0
- data/sig/increase/models/bookkeeping_account_balance_params.rbs +25 -0
- data/sig/increase/models/bookkeeping_account_create_params.rbs +63 -0
- data/sig/increase/models/bookkeeping_account_list_params.rbs +38 -0
- data/sig/increase/models/bookkeeping_account_update_params.rbs +23 -0
- data/sig/increase/models/bookkeeping_balance_lookup.rbs +40 -0
- data/sig/increase/models/bookkeeping_entry.rbs +55 -0
- data/sig/increase/models/bookkeeping_entry_list_params.rbs +38 -0
- data/sig/increase/models/bookkeeping_entry_retrieve_params.rbs +15 -0
- data/sig/increase/models/bookkeeping_entry_set.rbs +78 -0
- data/sig/increase/models/bookkeeping_entry_set_create_params.rbs +52 -0
- data/sig/increase/models/bookkeeping_entry_set_list_params.rbs +49 -0
- data/sig/increase/models/bookkeeping_entry_set_retrieve_params.rbs +15 -0
- data/sig/increase/models/card.rbs +167 -0
- data/sig/increase/models/card_create_params.rbs +126 -0
- data/sig/increase/models/card_details.rbs +55 -0
- data/sig/increase/models/card_details_params.rbs +15 -0
- data/sig/increase/models/card_dispute.rbs +207 -0
- data/sig/increase/models/card_dispute_create_params.rbs +34 -0
- data/sig/increase/models/card_dispute_list_params.rbs +146 -0
- data/sig/increase/models/card_dispute_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_list_params.rbs +138 -0
- data/sig/increase/models/card_payment.rbs +4955 -0
- data/sig/increase/models/card_payment_list_params.rbs +93 -0
- data/sig/increase/models/card_payment_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_purchase_supplement.rbs +329 -0
- data/sig/increase/models/card_purchase_supplement_list_params.rbs +86 -0
- data/sig/increase/models/card_purchase_supplement_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_update_params.rbs +147 -0
- data/sig/increase/models/check_deposit.rbs +643 -0
- data/sig/increase/models/check_deposit_create_params.rbs +48 -0
- data/sig/increase/models/check_deposit_list_params.rbs +93 -0
- data/sig/increase/models/check_deposit_retrieve_params.rbs +15 -0
- data/sig/increase/models/check_transfer.rbs +729 -0
- data/sig/increase/models/check_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/check_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/check_transfer_create_params.rbs +262 -0
- data/sig/increase/models/check_transfer_list_params.rbs +169 -0
- data/sig/increase/models/check_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/check_transfer_stop_payment_params.rbs +45 -0
- data/sig/increase/models/declined_transaction.rbs +1469 -0
- data/sig/increase/models/declined_transaction_list_params.rbs +159 -0
- data/sig/increase/models/declined_transaction_retrieve_params.rbs +15 -0
- data/sig/increase/models/digital_card_profile.rbs +129 -0
- data/sig/increase/models/digital_card_profile_archive_params.rbs +15 -0
- data/sig/increase/models/digital_card_profile_clone_params.rbs +100 -0
- data/sig/increase/models/digital_card_profile_create_params.rbs +90 -0
- data/sig/increase/models/digital_card_profile_list_params.rbs +92 -0
- data/sig/increase/models/digital_card_profile_retrieve_params.rbs +15 -0
- data/sig/increase/models/digital_wallet_token.rbs +238 -0
- data/sig/increase/models/digital_wallet_token_list_params.rbs +86 -0
- data/sig/increase/models/digital_wallet_token_retrieve_params.rbs +15 -0
- data/sig/increase/models/document.rbs +103 -0
- data/sig/increase/models/document_create_params.rbs +61 -0
- data/sig/increase/models/document_list_params.rbs +149 -0
- data/sig/increase/models/document_retrieve_params.rbs +15 -0
- data/sig/increase/models/entity.rbs +1170 -0
- data/sig/increase/models/entity_archive_beneficial_owner_params.rbs +24 -0
- data/sig/increase/models/entity_archive_params.rbs +15 -0
- data/sig/increase/models/entity_confirm_params.rbs +25 -0
- data/sig/increase/models/entity_create_beneficial_owner_params.rbs +333 -0
- data/sig/increase/models/entity_create_params.rbs +1889 -0
- data/sig/increase/models/entity_list_params.rbs +131 -0
- data/sig/increase/models/entity_retrieve_params.rbs +15 -0
- data/sig/increase/models/entity_supplemental_document.rbs +50 -0
- data/sig/increase/models/entity_update_address_params.rbs +63 -0
- data/sig/increase/models/entity_update_beneficial_owner_address_params.rbs +81 -0
- data/sig/increase/models/entity_update_industry_code_params.rbs +23 -0
- data/sig/increase/models/event.rbs +423 -0
- data/sig/increase/models/event_list_params.rbs +482 -0
- data/sig/increase/models/event_retrieve_params.rbs +15 -0
- data/sig/increase/models/event_subscription.rbs +453 -0
- data/sig/increase/models/event_subscription_create_params.rbs +417 -0
- data/sig/increase/models/event_subscription_list_params.rbs +38 -0
- data/sig/increase/models/event_subscription_retrieve_params.rbs +15 -0
- data/sig/increase/models/event_subscription_update_params.rbs +45 -0
- data/sig/increase/models/export.rbs +118 -0
- data/sig/increase/models/export_create_params.rbs +427 -0
- data/sig/increase/models/export_list_params.rbs +195 -0
- data/sig/increase/models/export_retrieve_params.rbs +15 -0
- data/sig/increase/models/external_account.rbs +123 -0
- data/sig/increase/models/external_account_create_params.rbs +88 -0
- data/sig/increase/models/external_account_list_params.rbs +93 -0
- data/sig/increase/models/external_account_retrieve_params.rbs +15 -0
- data/sig/increase/models/external_account_update_params.rbs +100 -0
- data/sig/increase/models/file.rbs +196 -0
- data/sig/increase/models/file_create_params.rbs +110 -0
- data/sig/increase/models/file_link.rbs +60 -0
- data/sig/increase/models/file_link_create_params.rbs +30 -0
- data/sig/increase/models/file_list_params.rbs +226 -0
- data/sig/increase/models/file_retrieve_params.rbs +15 -0
- data/sig/increase/models/group.rbs +78 -0
- data/sig/increase/models/group_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +886 -0
- data/sig/increase/models/inbound_ach_transfer_create_notification_of_change_params.rbs +32 -0
- data/sig/increase/models/inbound_ach_transfer_decline_params.rbs +76 -0
- data/sig/increase/models/inbound_ach_transfer_list_params.rbs +143 -0
- data/sig/increase/models/inbound_ach_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_ach_transfer_transfer_return_params.rbs +74 -0
- data/sig/increase/models/inbound_check_deposit.rbs +304 -0
- data/sig/increase/models/inbound_check_deposit_decline_params.rbs +15 -0
- data/sig/increase/models/inbound_check_deposit_list_params.rbs +93 -0
- data/sig/increase/models/inbound_check_deposit_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_check_deposit_return_params.rbs +52 -0
- data/sig/increase/models/inbound_mail_item.rbs +100 -0
- data/sig/increase/models/inbound_mail_item_list_params.rbs +86 -0
- data/sig/increase/models/inbound_mail_item_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +222 -0
- data/sig/increase/models/inbound_real_time_payments_transfer_list_params.rbs +93 -0
- data/sig/increase/models/inbound_real_time_payments_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_wire_drawdown_request.rbs +140 -0
- data/sig/increase/models/inbound_wire_drawdown_request_list_params.rbs +32 -0
- data/sig/increase/models/inbound_wire_drawdown_request_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_wire_transfer.rbs +211 -0
- data/sig/increase/models/inbound_wire_transfer_list_params.rbs +143 -0
- data/sig/increase/models/inbound_wire_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_wire_transfer_reverse_params.rbs +38 -0
- data/sig/increase/models/intrafi_account_enrollment.rbs +88 -0
- data/sig/increase/models/intrafi_account_enrollment_create_params.rbs +28 -0
- data/sig/increase/models/intrafi_account_enrollment_list_params.rbs +107 -0
- data/sig/increase/models/intrafi_account_enrollment_retrieve_params.rbs +15 -0
- data/sig/increase/models/intrafi_account_enrollment_unenroll_params.rbs +15 -0
- data/sig/increase/models/intrafi_balance.rbs +130 -0
- data/sig/increase/models/intrafi_balance_intrafi_balance_params.rbs +15 -0
- data/sig/increase/models/intrafi_exclusion.rbs +92 -0
- data/sig/increase/models/intrafi_exclusion_archive_params.rbs +15 -0
- data/sig/increase/models/intrafi_exclusion_create_params.rbs +28 -0
- data/sig/increase/models/intrafi_exclusion_list_params.rbs +49 -0
- data/sig/increase/models/intrafi_exclusion_retrieve_params.rbs +15 -0
- data/sig/increase/models/lockbox.rbs +126 -0
- data/sig/increase/models/lockbox_create_params.rbs +36 -0
- data/sig/increase/models/lockbox_list_params.rbs +93 -0
- data/sig/increase/models/lockbox_retrieve_params.rbs +15 -0
- data/sig/increase/models/lockbox_update_params.rbs +58 -0
- data/sig/increase/models/oauth_application.rbs +74 -0
- data/sig/increase/models/oauth_application_list_params.rbs +123 -0
- data/sig/increase/models/oauth_application_retrieve_params.rbs +15 -0
- data/sig/increase/models/oauth_connection.rbs +74 -0
- data/sig/increase/models/oauth_connection_list_params.rbs +86 -0
- data/sig/increase/models/oauth_connection_retrieve_params.rbs +15 -0
- data/sig/increase/models/oauth_token.rbs +50 -0
- data/sig/increase/models/oauth_token_create_params.rbs +68 -0
- data/sig/increase/models/pending_transaction.rbs +1266 -0
- data/sig/increase/models/pending_transaction_create_params.rbs +34 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +227 -0
- data/sig/increase/models/pending_transaction_release_params.rbs +15 -0
- data/sig/increase/models/pending_transaction_retrieve_params.rbs +15 -0
- data/sig/increase/models/physical_card.rbs +338 -0
- data/sig/increase/models/physical_card_create_params.rbs +152 -0
- data/sig/increase/models/physical_card_list_params.rbs +93 -0
- data/sig/increase/models/physical_card_profile.rbs +136 -0
- data/sig/increase/models/physical_card_profile_archive_params.rbs +15 -0
- data/sig/increase/models/physical_card_profile_clone_params.rbs +72 -0
- data/sig/increase/models/physical_card_profile_create_params.rbs +69 -0
- data/sig/increase/models/physical_card_profile_list_params.rbs +104 -0
- data/sig/increase/models/physical_card_profile_retrieve_params.rbs +15 -0
- data/sig/increase/models/physical_card_retrieve_params.rbs +15 -0
- data/sig/increase/models/physical_card_update_params.rbs +41 -0
- data/sig/increase/models/program.rbs +87 -0
- data/sig/increase/models/program_list_params.rbs +32 -0
- data/sig/increase/models/program_retrieve_params.rbs +15 -0
- data/sig/increase/models/real_time_decision.rbs +998 -0
- data/sig/increase/models/real_time_decision_action_params.rbs +317 -0
- data/sig/increase/models/real_time_decision_retrieve_params.rbs +15 -0
- data/sig/increase/models/real_time_payments_transfer.rbs +467 -0
- data/sig/increase/models/real_time_payments_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/real_time_payments_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +90 -0
- data/sig/increase/models/real_time_payments_transfer_list_params.rbs +170 -0
- data/sig/increase/models/real_time_payments_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/routing_number_list_params.rbs +36 -0
- data/sig/increase/models/routing_number_list_response.rbs +97 -0
- data/sig/increase/models/simulations/account_statement_create_params.rbs +25 -0
- data/sig/increase/models/simulations/account_transfer_complete_params.rbs +17 -0
- data/sig/increase/models/simulations/ach_transfer_acknowledge_params.rbs +17 -0
- data/sig/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbs +117 -0
- data/sig/increase/models/simulations/ach_transfer_return_params.rbs +320 -0
- data/sig/increase/models/simulations/ach_transfer_settle_params.rbs +17 -0
- data/sig/increase/models/simulations/ach_transfer_submit_params.rbs +17 -0
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +314 -0
- data/sig/increase/models/simulations/card_authorization_create_response.rbs +42 -0
- data/sig/increase/models/simulations/card_authorization_expiration_create_params.rbs +26 -0
- data/sig/increase/models/simulations/card_dispute_action_params.rbs +59 -0
- data/sig/increase/models/simulations/card_fuel_confirmation_create_params.rbs +30 -0
- data/sig/increase/models/simulations/card_increment_create_params.rbs +40 -0
- data/sig/increase/models/simulations/card_refund_create_params.rbs +26 -0
- data/sig/increase/models/simulations/card_reversal_create_params.rbs +32 -0
- data/sig/increase/models/simulations/card_settlement_create_params.rbs +36 -0
- data/sig/increase/models/simulations/check_deposit_reject_params.rbs +17 -0
- data/sig/increase/models/simulations/check_deposit_return_params.rbs +17 -0
- data/sig/increase/models/simulations/check_deposit_submit_params.rbs +17 -0
- data/sig/increase/models/simulations/check_transfer_mail_params.rbs +17 -0
- data/sig/increase/models/simulations/digital_wallet_token_request_create_params.rbs +25 -0
- data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +66 -0
- data/sig/increase/models/simulations/document_create_params.rbs +25 -0
- data/sig/increase/models/simulations/inbound_ach_transfer_create_params.rbs +243 -0
- data/sig/increase/models/simulations/inbound_check_deposit_create_params.rbs +34 -0
- data/sig/increase/models/simulations/inbound_funds_hold_release_params.rbs +17 -0
- data/sig/increase/models/simulations/inbound_funds_hold_release_response.rbs +117 -0
- data/sig/increase/models/simulations/inbound_mail_item_create_params.rbs +36 -0
- data/sig/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbs +68 -0
- data/sig/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbs +147 -0
- data/sig/increase/models/simulations/inbound_wire_transfer_create_params.rbs +138 -0
- data/sig/increase/models/simulations/interest_payment_create_params.rbs +54 -0
- data/sig/increase/models/simulations/physical_card_advance_shipment_params.rbs +68 -0
- data/sig/increase/models/simulations/physical_card_tracking_updates_params.rbs +80 -0
- data/sig/increase/models/simulations/program_create_params.rbs +32 -0
- data/sig/increase/models/simulations/real_time_payments_transfer_complete_params.rbs +141 -0
- data/sig/increase/models/simulations/wire_transfer_reverse_params.rbs +17 -0
- data/sig/increase/models/simulations/wire_transfer_submit_params.rbs +17 -0
- data/sig/increase/models/supplemental_document_create_params.rbs +28 -0
- data/sig/increase/models/supplemental_document_list_params.rbs +47 -0
- data/sig/increase/models/transaction.rbs +4400 -0
- data/sig/increase/models/transaction_list_params.rbs +253 -0
- data/sig/increase/models/transaction_retrieve_params.rbs +15 -0
- data/sig/increase/models/wire_drawdown_request.rbs +161 -0
- data/sig/increase/models/wire_drawdown_request_create_params.rbs +100 -0
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +93 -0
- data/sig/increase/models/wire_drawdown_request_retrieve_params.rbs +15 -0
- data/sig/increase/models/wire_transfer.rbs +469 -0
- data/sig/increase/models/wire_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/wire_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/wire_transfer_create_params.rbs +125 -0
- data/sig/increase/models/wire_transfer_list_params.rbs +100 -0
- data/sig/increase/models/wire_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models.rbs +441 -0
- data/sig/increase/request_options.rbs +34 -0
- data/sig/increase/resources/account_numbers.rbs +40 -0
- data/sig/increase/resources/account_statements.rbs +20 -0
- data/sig/increase/resources/account_transfers.rbs +40 -0
- data/sig/increase/resources/accounts.rbs +49 -0
- data/sig/increase/resources/ach_prenotifications.rbs +37 -0
- data/sig/increase/resources/ach_transfers.rbs +56 -0
- data/sig/increase/resources/bookkeeping_accounts.rbs +34 -0
- data/sig/increase/resources/bookkeeping_entries.rbs +19 -0
- data/sig/increase/resources/bookkeeping_entry_sets.rbs +27 -0
- data/sig/increase/resources/card_disputes.rbs +28 -0
- data/sig/increase/resources/card_payments.rbs +21 -0
- data/sig/increase/resources/card_purchase_supplements.rbs +20 -0
- data/sig/increase/resources/cards.rbs +46 -0
- data/sig/increase/resources/check_deposits.rbs +30 -0
- data/sig/increase/resources/check_transfers.rbs +50 -0
- data/sig/increase/resources/declined_transactions.rbs +22 -0
- data/sig/increase/resources/digital_card_profiles.rbs +52 -0
- data/sig/increase/resources/digital_wallet_tokens.rbs +20 -0
- data/sig/increase/resources/documents.rbs +28 -0
- data/sig/increase/resources/entities.rbs +76 -0
- data/sig/increase/resources/event_subscriptions.rbs +33 -0
- data/sig/increase/resources/events.rbs +21 -0
- data/sig/increase/resources/exports.rbs +33 -0
- data/sig/increase/resources/external_accounts.rbs +39 -0
- data/sig/increase/resources/file_links.rbs +13 -0
- data/sig/increase/resources/files.rbs +28 -0
- data/sig/increase/resources/groups.rbs +11 -0
- data/sig/increase/resources/inbound_ach_transfers.rbs +41 -0
- data/sig/increase/resources/inbound_check_deposits.rbs +32 -0
- data/sig/increase/resources/inbound_mail_items.rbs +20 -0
- data/sig/increase/resources/inbound_real_time_payments_transfers.rbs +21 -0
- data/sig/increase/resources/inbound_wire_drawdown_requests.rbs +18 -0
- data/sig/increase/resources/inbound_wire_transfers.rbs +28 -0
- data/sig/increase/resources/intrafi_account_enrollments.rbs +32 -0
- data/sig/increase/resources/intrafi_balances.rbs +12 -0
- data/sig/increase/resources/intrafi_exclusions.rbs +31 -0
- data/sig/increase/resources/lockboxes.rbs +36 -0
- data/sig/increase/resources/oauth_applications.rbs +20 -0
- data/sig/increase/resources/oauth_connections.rbs +20 -0
- data/sig/increase/resources/oauth_tokens.rbs +16 -0
- data/sig/increase/resources/pending_transactions.rbs +35 -0
- data/sig/increase/resources/physical_card_profiles.rbs +45 -0
- data/sig/increase/resources/physical_cards.rbs +35 -0
- data/sig/increase/resources/programs.rbs +18 -0
- data/sig/increase/resources/real_time_decisions.rbs +22 -0
- data/sig/increase/resources/real_time_payments_transfers.rbs +48 -0
- data/sig/increase/resources/routing_numbers.rbs +14 -0
- data/sig/increase/resources/simulations/account_statements.rbs +14 -0
- data/sig/increase/resources/simulations/account_transfers.rbs +14 -0
- data/sig/increase/resources/simulations/ach_transfers.rbs +37 -0
- data/sig/increase/resources/simulations/card_authorization_expirations.rbs +14 -0
- data/sig/increase/resources/simulations/card_authorizations.rbs +30 -0
- data/sig/increase/resources/simulations/card_disputes.rbs +16 -0
- data/sig/increase/resources/simulations/card_fuel_confirmations.rbs +15 -0
- data/sig/increase/resources/simulations/card_increments.rbs +16 -0
- data/sig/increase/resources/simulations/card_refunds.rbs +14 -0
- data/sig/increase/resources/simulations/card_reversals.rbs +15 -0
- data/sig/increase/resources/simulations/card_settlements.rbs +16 -0
- data/sig/increase/resources/simulations/check_deposits.rbs +24 -0
- data/sig/increase/resources/simulations/check_transfers.rbs +14 -0
- data/sig/increase/resources/simulations/digital_wallet_token_requests.rbs +14 -0
- data/sig/increase/resources/simulations/documents.rbs +14 -0
- data/sig/increase/resources/simulations/inbound_ach_transfers.rbs +25 -0
- data/sig/increase/resources/simulations/inbound_check_deposits.rbs +16 -0
- data/sig/increase/resources/simulations/inbound_funds_holds.rbs +14 -0
- data/sig/increase/resources/simulations/inbound_mail_items.rbs +16 -0
- data/sig/increase/resources/simulations/inbound_real_time_payments_transfers.rbs +20 -0
- data/sig/increase/resources/simulations/inbound_wire_drawdown_requests.rbs +33 -0
- data/sig/increase/resources/simulations/inbound_wire_transfers.rbs +30 -0
- data/sig/increase/resources/simulations/interest_payments.rbs +18 -0
- data/sig/increase/resources/simulations/physical_cards.rbs +25 -0
- data/sig/increase/resources/simulations/programs.rbs +15 -0
- data/sig/increase/resources/simulations/real_time_payments_transfers.rbs +15 -0
- data/sig/increase/resources/simulations/wire_transfers.rbs +19 -0
- data/sig/increase/resources/simulations.rbs +61 -0
- data/sig/increase/resources/supplemental_documents.rbs +21 -0
- data/sig/increase/resources/transactions.rbs +22 -0
- data/sig/increase/resources/wire_drawdown_requests.rbs +37 -0
- data/sig/increase/resources/wire_transfers.rbs +52 -0
- data/sig/increase/version.rbs +3 -0
- metadata +1068 -176
- data/.rspec +0 -3
- data/.standard.yml +0 -3
- data/Gemfile +0 -6
- data/LICENSE.txt +0 -21
- data/OPENAPI_VERSION +0 -1
- data/Rakefile +0 -10
- data/bin/generate +0 -152
- data/bin/setup +0 -8
- data/generate/resource.rb.erb +0 -18
- data/lib/increase/configuration.rb +0 -50
- data/lib/increase/file_upload.rb +0 -57
- data/lib/increase/middleware/encode_json.rb +0 -57
- data/lib/increase/middleware/parse_json.rb +0 -42
- data/lib/increase/middleware/raise_api_error.rb +0 -13
- data/lib/increase/resource.rb +0 -205
- data/lib/increase/resources/card_profiles.rb +0 -17
- data/lib/increase/resources/inbound_ach_transfer_returns.rb +0 -17
- data/lib/increase/resources/limits.rb +0 -19
- data/lib/increase/resources.rb +0 -4
- data/lib/increase/response_array.rb +0 -19
- data/lib/increase/response_hash.rb +0 -15
- data/lib/increase/util.rb +0 -15
- data/lib/increase/webhook/signature.rb +0 -70
- data/openapi.json +0 -32098
- data/sig/increase.rbs +0 -4
@@ -0,0 +1,1779 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Increase
|
4
|
+
module Models
|
5
|
+
# @see Increase::Resources::DeclinedTransactions#retrieve
|
6
|
+
class DeclinedTransaction < Increase::Internal::Type::BaseModel
|
7
|
+
# @!attribute id
|
8
|
+
# The Declined Transaction identifier.
|
9
|
+
#
|
10
|
+
# @return [String]
|
11
|
+
required :id, String
|
12
|
+
|
13
|
+
# @!attribute account_id
|
14
|
+
# The identifier for the Account the Declined Transaction belongs to.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
required :account_id, String
|
18
|
+
|
19
|
+
# @!attribute amount
|
20
|
+
# The Declined Transaction amount in the minor unit of its currency. For dollars,
|
21
|
+
# for example, this is cents.
|
22
|
+
#
|
23
|
+
# @return [Integer]
|
24
|
+
required :amount, Integer
|
25
|
+
|
26
|
+
# @!attribute created_at
|
27
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which the
|
28
|
+
# Transaction occurred.
|
29
|
+
#
|
30
|
+
# @return [Time]
|
31
|
+
required :created_at, Time
|
32
|
+
|
33
|
+
# @!attribute currency
|
34
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Declined
|
35
|
+
# Transaction's currency. This will match the currency on the Declined
|
36
|
+
# Transaction's Account.
|
37
|
+
#
|
38
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Currency]
|
39
|
+
required :currency, enum: -> { Increase::DeclinedTransaction::Currency }
|
40
|
+
|
41
|
+
# @!attribute description
|
42
|
+
# This is the description the vendor provides.
|
43
|
+
#
|
44
|
+
# @return [String]
|
45
|
+
required :description, String
|
46
|
+
|
47
|
+
# @!attribute route_id
|
48
|
+
# The identifier for the route this Declined Transaction came through. Routes are
|
49
|
+
# things like cards and ACH details.
|
50
|
+
#
|
51
|
+
# @return [String, nil]
|
52
|
+
required :route_id, String, nil?: true
|
53
|
+
|
54
|
+
# @!attribute route_type
|
55
|
+
# The type of the route this Declined Transaction came through.
|
56
|
+
#
|
57
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::RouteType, nil]
|
58
|
+
required :route_type, enum: -> { Increase::DeclinedTransaction::RouteType }, nil?: true
|
59
|
+
|
60
|
+
# @!attribute source
|
61
|
+
# This is an object giving more details on the network-level event that caused the
|
62
|
+
# Declined Transaction. For example, for a card transaction this lists the
|
63
|
+
# merchant's industry and location. Note that for backwards compatibility reasons,
|
64
|
+
# additional undocumented keys may appear in this object. These should be treated
|
65
|
+
# as deprecated and will be removed in the future.
|
66
|
+
#
|
67
|
+
# @return [Increase::Models::DeclinedTransaction::Source]
|
68
|
+
required :source, -> { Increase::DeclinedTransaction::Source }
|
69
|
+
|
70
|
+
# @!attribute type
|
71
|
+
# A constant representing the object's type. For this resource it will always be
|
72
|
+
# `declined_transaction`.
|
73
|
+
#
|
74
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Type]
|
75
|
+
required :type, enum: -> { Increase::DeclinedTransaction::Type }
|
76
|
+
|
77
|
+
# @!method initialize(id:, account_id:, amount:, created_at:, currency:, description:, route_id:, route_type:, source:, type:)
|
78
|
+
# Some parameter documentations has been truncated, see
|
79
|
+
# {Increase::Models::DeclinedTransaction} for more details.
|
80
|
+
#
|
81
|
+
# Declined Transactions are refused additions and removals of money from your bank
|
82
|
+
# account. For example, Declined Transactions are caused when your Account has an
|
83
|
+
# insufficient balance or your Limits are triggered.
|
84
|
+
#
|
85
|
+
# @param id [String] The Declined Transaction identifier.
|
86
|
+
#
|
87
|
+
# @param account_id [String] The identifier for the Account the Declined Transaction belongs to.
|
88
|
+
#
|
89
|
+
# @param amount [Integer] The Declined Transaction amount in the minor unit of its currency. For dollars,
|
90
|
+
#
|
91
|
+
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which the Transac
|
92
|
+
#
|
93
|
+
# @param currency [Symbol, Increase::Models::DeclinedTransaction::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Declined Tra
|
94
|
+
#
|
95
|
+
# @param description [String] This is the description the vendor provides.
|
96
|
+
#
|
97
|
+
# @param route_id [String, nil] The identifier for the route this Declined Transaction came through. Routes are
|
98
|
+
#
|
99
|
+
# @param route_type [Symbol, Increase::Models::DeclinedTransaction::RouteType, nil] The type of the route this Declined Transaction came through.
|
100
|
+
#
|
101
|
+
# @param source [Increase::Models::DeclinedTransaction::Source] This is an object giving more details on the network-level event that caused the
|
102
|
+
#
|
103
|
+
# @param type [Symbol, Increase::Models::DeclinedTransaction::Type] A constant representing the object's type. For this resource it will always be `
|
104
|
+
|
105
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Declined
|
106
|
+
# Transaction's currency. This will match the currency on the Declined
|
107
|
+
# Transaction's Account.
|
108
|
+
#
|
109
|
+
# @see Increase::Models::DeclinedTransaction#currency
|
110
|
+
module Currency
|
111
|
+
extend Increase::Internal::Type::Enum
|
112
|
+
|
113
|
+
# Canadian Dollar (CAD)
|
114
|
+
CAD = :CAD
|
115
|
+
|
116
|
+
# Swiss Franc (CHF)
|
117
|
+
CHF = :CHF
|
118
|
+
|
119
|
+
# Euro (EUR)
|
120
|
+
EUR = :EUR
|
121
|
+
|
122
|
+
# British Pound (GBP)
|
123
|
+
GBP = :GBP
|
124
|
+
|
125
|
+
# Japanese Yen (JPY)
|
126
|
+
JPY = :JPY
|
127
|
+
|
128
|
+
# US Dollar (USD)
|
129
|
+
USD = :USD
|
130
|
+
|
131
|
+
# @!method self.values
|
132
|
+
# @return [Array<Symbol>]
|
133
|
+
end
|
134
|
+
|
135
|
+
# The type of the route this Declined Transaction came through.
|
136
|
+
#
|
137
|
+
# @see Increase::Models::DeclinedTransaction#route_type
|
138
|
+
module RouteType
|
139
|
+
extend Increase::Internal::Type::Enum
|
140
|
+
|
141
|
+
# An Account Number.
|
142
|
+
ACCOUNT_NUMBER = :account_number
|
143
|
+
|
144
|
+
# A Card.
|
145
|
+
CARD = :card
|
146
|
+
|
147
|
+
# A Lockbox.
|
148
|
+
LOCKBOX = :lockbox
|
149
|
+
|
150
|
+
# @!method self.values
|
151
|
+
# @return [Array<Symbol>]
|
152
|
+
end
|
153
|
+
|
154
|
+
# @see Increase::Models::DeclinedTransaction#source
|
155
|
+
class Source < Increase::Internal::Type::BaseModel
|
156
|
+
# @!attribute ach_decline
|
157
|
+
# An ACH Decline object. This field will be present in the JSON response if and
|
158
|
+
# only if `category` is equal to `ach_decline`.
|
159
|
+
#
|
160
|
+
# @return [Increase::Models::DeclinedTransaction::Source::ACHDecline, nil]
|
161
|
+
required :ach_decline, -> { Increase::DeclinedTransaction::Source::ACHDecline }, nil?: true
|
162
|
+
|
163
|
+
# @!attribute card_decline
|
164
|
+
# A Card Decline object. This field will be present in the JSON response if and
|
165
|
+
# only if `category` is equal to `card_decline`.
|
166
|
+
#
|
167
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline, nil]
|
168
|
+
required :card_decline, -> { Increase::DeclinedTransaction::Source::CardDecline }, nil?: true
|
169
|
+
|
170
|
+
# @!attribute category
|
171
|
+
# The type of the resource. We may add additional possible values for this enum
|
172
|
+
# over time; your application should be able to handle such additions gracefully.
|
173
|
+
#
|
174
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::Category]
|
175
|
+
required :category, enum: -> { Increase::DeclinedTransaction::Source::Category }
|
176
|
+
|
177
|
+
# @!attribute check_decline
|
178
|
+
# A Check Decline object. This field will be present in the JSON response if and
|
179
|
+
# only if `category` is equal to `check_decline`.
|
180
|
+
#
|
181
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CheckDecline, nil]
|
182
|
+
required :check_decline, -> { Increase::DeclinedTransaction::Source::CheckDecline }, nil?: true
|
183
|
+
|
184
|
+
# @!attribute check_deposit_rejection
|
185
|
+
# A Check Deposit Rejection object. This field will be present in the JSON
|
186
|
+
# response if and only if `category` is equal to `check_deposit_rejection`.
|
187
|
+
#
|
188
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CheckDepositRejection, nil]
|
189
|
+
required :check_deposit_rejection,
|
190
|
+
-> { Increase::DeclinedTransaction::Source::CheckDepositRejection },
|
191
|
+
nil?: true
|
192
|
+
|
193
|
+
# @!attribute inbound_real_time_payments_transfer_decline
|
194
|
+
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
195
|
+
# present in the JSON response if and only if `category` is equal to
|
196
|
+
# `inbound_real_time_payments_transfer_decline`.
|
197
|
+
#
|
198
|
+
# @return [Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline, nil]
|
199
|
+
required :inbound_real_time_payments_transfer_decline,
|
200
|
+
-> { Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline },
|
201
|
+
nil?: true
|
202
|
+
|
203
|
+
# @!attribute other
|
204
|
+
# If the category of this Transaction source is equal to `other`, this field will
|
205
|
+
# contain an empty object, otherwise it will contain null.
|
206
|
+
#
|
207
|
+
# @return [Object, nil]
|
208
|
+
required :other, Increase::Internal::Type::Unknown, nil?: true
|
209
|
+
|
210
|
+
# @!attribute wire_decline
|
211
|
+
# A Wire Decline object. This field will be present in the JSON response if and
|
212
|
+
# only if `category` is equal to `wire_decline`.
|
213
|
+
#
|
214
|
+
# @return [Increase::Models::DeclinedTransaction::Source::WireDecline, nil]
|
215
|
+
required :wire_decline, -> { Increase::DeclinedTransaction::Source::WireDecline }, nil?: true
|
216
|
+
|
217
|
+
# @!method initialize(ach_decline:, card_decline:, category:, check_decline:, check_deposit_rejection:, inbound_real_time_payments_transfer_decline:, other:, wire_decline:)
|
218
|
+
# Some parameter documentations has been truncated, see
|
219
|
+
# {Increase::Models::DeclinedTransaction::Source} for more details.
|
220
|
+
#
|
221
|
+
# This is an object giving more details on the network-level event that caused the
|
222
|
+
# Declined Transaction. For example, for a card transaction this lists the
|
223
|
+
# merchant's industry and location. Note that for backwards compatibility reasons,
|
224
|
+
# additional undocumented keys may appear in this object. These should be treated
|
225
|
+
# as deprecated and will be removed in the future.
|
226
|
+
#
|
227
|
+
# @param ach_decline [Increase::Models::DeclinedTransaction::Source::ACHDecline, nil] An ACH Decline object. This field will be present in the JSON response if and on
|
228
|
+
#
|
229
|
+
# @param card_decline [Increase::Models::DeclinedTransaction::Source::CardDecline, nil] A Card Decline object. This field will be present in the JSON response if and on
|
230
|
+
#
|
231
|
+
# @param category [Symbol, Increase::Models::DeclinedTransaction::Source::Category] The type of the resource. We may add additional possible values for this enum ov
|
232
|
+
#
|
233
|
+
# @param check_decline [Increase::Models::DeclinedTransaction::Source::CheckDecline, nil] A Check Decline object. This field will be present in the JSON response if and o
|
234
|
+
#
|
235
|
+
# @param check_deposit_rejection [Increase::Models::DeclinedTransaction::Source::CheckDepositRejection, nil] A Check Deposit Rejection object. This field will be present in the JSON respons
|
236
|
+
#
|
237
|
+
# @param inbound_real_time_payments_transfer_decline [Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline, nil] An Inbound Real-Time Payments Transfer Decline object. This field will be presen
|
238
|
+
#
|
239
|
+
# @param other [Object, nil] If the category of this Transaction source is equal to `other`, this field will
|
240
|
+
#
|
241
|
+
# @param wire_decline [Increase::Models::DeclinedTransaction::Source::WireDecline, nil] A Wire Decline object. This field will be present in the JSON response if and on
|
242
|
+
|
243
|
+
# @see Increase::Models::DeclinedTransaction::Source#ach_decline
|
244
|
+
class ACHDecline < Increase::Internal::Type::BaseModel
|
245
|
+
# @!attribute id
|
246
|
+
# The ACH Decline's identifier.
|
247
|
+
#
|
248
|
+
# @return [String]
|
249
|
+
required :id, String
|
250
|
+
|
251
|
+
# @!attribute amount
|
252
|
+
# The declined amount in USD cents.
|
253
|
+
#
|
254
|
+
# @return [Integer]
|
255
|
+
required :amount, Integer
|
256
|
+
|
257
|
+
# @!attribute inbound_ach_transfer_id
|
258
|
+
# The identifier of the Inbound ACH Transfer object associated with this decline.
|
259
|
+
#
|
260
|
+
# @return [String]
|
261
|
+
required :inbound_ach_transfer_id, String
|
262
|
+
|
263
|
+
# @!attribute originator_company_descriptive_date
|
264
|
+
# The descriptive date of the transfer.
|
265
|
+
#
|
266
|
+
# @return [String, nil]
|
267
|
+
required :originator_company_descriptive_date, String, nil?: true
|
268
|
+
|
269
|
+
# @!attribute originator_company_discretionary_data
|
270
|
+
# The additional information included with the transfer.
|
271
|
+
#
|
272
|
+
# @return [String, nil]
|
273
|
+
required :originator_company_discretionary_data, String, nil?: true
|
274
|
+
|
275
|
+
# @!attribute originator_company_id
|
276
|
+
# The identifier of the company that initiated the transfer.
|
277
|
+
#
|
278
|
+
# @return [String]
|
279
|
+
required :originator_company_id, String
|
280
|
+
|
281
|
+
# @!attribute originator_company_name
|
282
|
+
# The name of the company that initiated the transfer.
|
283
|
+
#
|
284
|
+
# @return [String]
|
285
|
+
required :originator_company_name, String
|
286
|
+
|
287
|
+
# @!attribute reason
|
288
|
+
# Why the ACH transfer was declined.
|
289
|
+
#
|
290
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Reason]
|
291
|
+
required :reason, enum: -> { Increase::DeclinedTransaction::Source::ACHDecline::Reason }
|
292
|
+
|
293
|
+
# @!attribute receiver_id_number
|
294
|
+
# The id of the receiver of the transfer.
|
295
|
+
#
|
296
|
+
# @return [String, nil]
|
297
|
+
required :receiver_id_number, String, nil?: true
|
298
|
+
|
299
|
+
# @!attribute receiver_name
|
300
|
+
# The name of the receiver of the transfer.
|
301
|
+
#
|
302
|
+
# @return [String, nil]
|
303
|
+
required :receiver_name, String, nil?: true
|
304
|
+
|
305
|
+
# @!attribute trace_number
|
306
|
+
# The trace number of the transfer.
|
307
|
+
#
|
308
|
+
# @return [String]
|
309
|
+
required :trace_number, String
|
310
|
+
|
311
|
+
# @!attribute type
|
312
|
+
# A constant representing the object's type. For this resource it will always be
|
313
|
+
# `ach_decline`.
|
314
|
+
#
|
315
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Type]
|
316
|
+
required :type, enum: -> { Increase::DeclinedTransaction::Source::ACHDecline::Type }
|
317
|
+
|
318
|
+
# @!method initialize(id:, amount:, inbound_ach_transfer_id:, originator_company_descriptive_date:, originator_company_discretionary_data:, originator_company_id:, originator_company_name:, reason:, receiver_id_number:, receiver_name:, trace_number:, type:)
|
319
|
+
# Some parameter documentations has been truncated, see
|
320
|
+
# {Increase::Models::DeclinedTransaction::Source::ACHDecline} for more details.
|
321
|
+
#
|
322
|
+
# An ACH Decline object. This field will be present in the JSON response if and
|
323
|
+
# only if `category` is equal to `ach_decline`.
|
324
|
+
#
|
325
|
+
# @param id [String] The ACH Decline's identifier.
|
326
|
+
#
|
327
|
+
# @param amount [Integer] The declined amount in USD cents.
|
328
|
+
#
|
329
|
+
# @param inbound_ach_transfer_id [String] The identifier of the Inbound ACH Transfer object associated with this decline.
|
330
|
+
#
|
331
|
+
# @param originator_company_descriptive_date [String, nil] The descriptive date of the transfer.
|
332
|
+
#
|
333
|
+
# @param originator_company_discretionary_data [String, nil] The additional information included with the transfer.
|
334
|
+
#
|
335
|
+
# @param originator_company_id [String] The identifier of the company that initiated the transfer.
|
336
|
+
#
|
337
|
+
# @param originator_company_name [String] The name of the company that initiated the transfer.
|
338
|
+
#
|
339
|
+
# @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Reason] Why the ACH transfer was declined.
|
340
|
+
#
|
341
|
+
# @param receiver_id_number [String, nil] The id of the receiver of the transfer.
|
342
|
+
#
|
343
|
+
# @param receiver_name [String, nil] The name of the receiver of the transfer.
|
344
|
+
#
|
345
|
+
# @param trace_number [String] The trace number of the transfer.
|
346
|
+
#
|
347
|
+
# @param type [Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Type] A constant representing the object's type. For this resource it will always be `
|
348
|
+
|
349
|
+
# Why the ACH transfer was declined.
|
350
|
+
#
|
351
|
+
# @see Increase::Models::DeclinedTransaction::Source::ACHDecline#reason
|
352
|
+
module Reason
|
353
|
+
extend Increase::Internal::Type::Enum
|
354
|
+
|
355
|
+
# The account number is canceled.
|
356
|
+
ACH_ROUTE_CANCELED = :ach_route_canceled
|
357
|
+
|
358
|
+
# The account number is disabled.
|
359
|
+
ACH_ROUTE_DISABLED = :ach_route_disabled
|
360
|
+
|
361
|
+
# The transaction would cause an Increase limit to be exceeded.
|
362
|
+
BREACHES_LIMIT = :breaches_limit
|
363
|
+
|
364
|
+
# The account's entity is not active.
|
365
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
366
|
+
|
367
|
+
# Your account is inactive.
|
368
|
+
GROUP_LOCKED = :group_locked
|
369
|
+
|
370
|
+
# The transaction is not allowed per Increase's terms.
|
371
|
+
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
372
|
+
|
373
|
+
# Your integration declined this transfer via the API.
|
374
|
+
USER_INITIATED = :user_initiated
|
375
|
+
|
376
|
+
# Your account contains insufficient funds.
|
377
|
+
INSUFFICIENT_FUNDS = :insufficient_funds
|
378
|
+
|
379
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
380
|
+
RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request
|
381
|
+
|
382
|
+
# The customer no longer authorizes this transaction.
|
383
|
+
AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
|
384
|
+
|
385
|
+
# The customer asked for the payment to be stopped.
|
386
|
+
PAYMENT_STOPPED = :payment_stopped
|
387
|
+
|
388
|
+
# The customer advises that the debit was unauthorized.
|
389
|
+
CUSTOMER_ADVISED_UNAUTHORIZED_IMPROPER_INELIGIBLE_OR_INCOMPLETE =
|
390
|
+
:customer_advised_unauthorized_improper_ineligible_or_incomplete
|
391
|
+
|
392
|
+
# The payee is deceased.
|
393
|
+
REPRESENTATIVE_PAYEE_DECEASED_OR_UNABLE_TO_CONTINUE_IN_THAT_CAPACITY =
|
394
|
+
:representative_payee_deceased_or_unable_to_continue_in_that_capacity
|
395
|
+
|
396
|
+
# The account holder is deceased.
|
397
|
+
BENEFICIARY_OR_ACCOUNT_HOLDER_DECEASED = :beneficiary_or_account_holder_deceased
|
398
|
+
|
399
|
+
# The customer refused a credit entry.
|
400
|
+
CREDIT_ENTRY_REFUSED_BY_RECEIVER = :credit_entry_refused_by_receiver
|
401
|
+
|
402
|
+
# The account holder identified this transaction as a duplicate.
|
403
|
+
DUPLICATE_ENTRY = :duplicate_entry
|
404
|
+
|
405
|
+
# The corporate customer no longer authorizes this transaction.
|
406
|
+
CORPORATE_CUSTOMER_ADVISED_NOT_AUTHORIZED = :corporate_customer_advised_not_authorized
|
407
|
+
|
408
|
+
# @!method self.values
|
409
|
+
# @return [Array<Symbol>]
|
410
|
+
end
|
411
|
+
|
412
|
+
# A constant representing the object's type. For this resource it will always be
|
413
|
+
# `ach_decline`.
|
414
|
+
#
|
415
|
+
# @see Increase::Models::DeclinedTransaction::Source::ACHDecline#type
|
416
|
+
module Type
|
417
|
+
extend Increase::Internal::Type::Enum
|
418
|
+
|
419
|
+
ACH_DECLINE = :ach_decline
|
420
|
+
|
421
|
+
# @!method self.values
|
422
|
+
# @return [Array<Symbol>]
|
423
|
+
end
|
424
|
+
end
|
425
|
+
|
426
|
+
# @see Increase::Models::DeclinedTransaction::Source#card_decline
|
427
|
+
class CardDecline < Increase::Internal::Type::BaseModel
|
428
|
+
# @!attribute id
|
429
|
+
# The Card Decline identifier.
|
430
|
+
#
|
431
|
+
# @return [String]
|
432
|
+
required :id, String
|
433
|
+
|
434
|
+
# @!attribute actioner
|
435
|
+
# Whether this authorization was approved by Increase, the card network through
|
436
|
+
# stand-in processing, or the user through a real-time decision.
|
437
|
+
#
|
438
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Actioner]
|
439
|
+
required :actioner, enum: -> { Increase::DeclinedTransaction::Source::CardDecline::Actioner }
|
440
|
+
|
441
|
+
# @!attribute amount
|
442
|
+
# The declined amount in the minor unit of the destination account currency. For
|
443
|
+
# dollars, for example, this is cents.
|
444
|
+
#
|
445
|
+
# @return [Integer]
|
446
|
+
required :amount, Integer
|
447
|
+
|
448
|
+
# @!attribute card_payment_id
|
449
|
+
# The ID of the Card Payment this transaction belongs to.
|
450
|
+
#
|
451
|
+
# @return [String]
|
452
|
+
required :card_payment_id, String
|
453
|
+
|
454
|
+
# @!attribute currency
|
455
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the destination
|
456
|
+
# account currency.
|
457
|
+
#
|
458
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Currency]
|
459
|
+
required :currency, enum: -> { Increase::DeclinedTransaction::Source::CardDecline::Currency }
|
460
|
+
|
461
|
+
# @!attribute declined_transaction_id
|
462
|
+
# The identifier of the declined transaction created for this Card Decline.
|
463
|
+
#
|
464
|
+
# @return [String]
|
465
|
+
required :declined_transaction_id, String
|
466
|
+
|
467
|
+
# @!attribute digital_wallet_token_id
|
468
|
+
# If the authorization was made via a Digital Wallet Token (such as an Apple Pay
|
469
|
+
# purchase), the identifier of the token that was used.
|
470
|
+
#
|
471
|
+
# @return [String, nil]
|
472
|
+
required :digital_wallet_token_id, String, nil?: true
|
473
|
+
|
474
|
+
# @!attribute direction
|
475
|
+
# The direction describes the direction the funds will move, either from the
|
476
|
+
# cardholder to the merchant or from the merchant to the cardholder.
|
477
|
+
#
|
478
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Direction]
|
479
|
+
required :direction, enum: -> { Increase::DeclinedTransaction::Source::CardDecline::Direction }
|
480
|
+
|
481
|
+
# @!attribute merchant_acceptor_id
|
482
|
+
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
483
|
+
# is transacting with.
|
484
|
+
#
|
485
|
+
# @return [String]
|
486
|
+
required :merchant_acceptor_id, String
|
487
|
+
|
488
|
+
# @!attribute merchant_category_code
|
489
|
+
# The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
490
|
+
# card is transacting with.
|
491
|
+
#
|
492
|
+
# @return [String]
|
493
|
+
required :merchant_category_code, String
|
494
|
+
|
495
|
+
# @!attribute merchant_city
|
496
|
+
# The city the merchant resides in.
|
497
|
+
#
|
498
|
+
# @return [String, nil]
|
499
|
+
required :merchant_city, String, nil?: true
|
500
|
+
|
501
|
+
# @!attribute merchant_country
|
502
|
+
# The country the merchant resides in.
|
503
|
+
#
|
504
|
+
# @return [String]
|
505
|
+
required :merchant_country, String
|
506
|
+
|
507
|
+
# @!attribute merchant_descriptor
|
508
|
+
# The merchant descriptor of the merchant the card is transacting with.
|
509
|
+
#
|
510
|
+
# @return [String]
|
511
|
+
required :merchant_descriptor, String
|
512
|
+
|
513
|
+
# @!attribute merchant_postal_code
|
514
|
+
# The merchant's postal code. For US merchants this is either a 5-digit or 9-digit
|
515
|
+
# ZIP code, where the first 5 and last 4 are separated by a dash.
|
516
|
+
#
|
517
|
+
# @return [String, nil]
|
518
|
+
required :merchant_postal_code, String, nil?: true
|
519
|
+
|
520
|
+
# @!attribute merchant_state
|
521
|
+
# The state the merchant resides in.
|
522
|
+
#
|
523
|
+
# @return [String, nil]
|
524
|
+
required :merchant_state, String, nil?: true
|
525
|
+
|
526
|
+
# @!attribute network_details
|
527
|
+
# Fields specific to the `network`.
|
528
|
+
#
|
529
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails]
|
530
|
+
required :network_details, -> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails }
|
531
|
+
|
532
|
+
# @!attribute network_identifiers
|
533
|
+
# Network-specific identifiers for a specific request or transaction.
|
534
|
+
#
|
535
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkIdentifiers]
|
536
|
+
required :network_identifiers,
|
537
|
+
-> { Increase::DeclinedTransaction::Source::CardDecline::NetworkIdentifiers }
|
538
|
+
|
539
|
+
# @!attribute network_risk_score
|
540
|
+
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
541
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
542
|
+
#
|
543
|
+
# @return [Integer, nil]
|
544
|
+
required :network_risk_score, Integer, nil?: true
|
545
|
+
|
546
|
+
# @!attribute physical_card_id
|
547
|
+
# If the authorization was made in-person with a physical card, the Physical Card
|
548
|
+
# that was used.
|
549
|
+
#
|
550
|
+
# @return [String, nil]
|
551
|
+
required :physical_card_id, String, nil?: true
|
552
|
+
|
553
|
+
# @!attribute presentment_amount
|
554
|
+
# The declined amount in the minor unit of the transaction's presentment currency.
|
555
|
+
#
|
556
|
+
# @return [Integer]
|
557
|
+
required :presentment_amount, Integer
|
558
|
+
|
559
|
+
# @!attribute presentment_currency
|
560
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
561
|
+
# transaction's presentment currency.
|
562
|
+
#
|
563
|
+
# @return [String]
|
564
|
+
required :presentment_currency, String
|
565
|
+
|
566
|
+
# @!attribute processing_category
|
567
|
+
# The processing category describes the intent behind the authorization, such as
|
568
|
+
# whether it was used for bill payments or an automatic fuel dispenser.
|
569
|
+
#
|
570
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::ProcessingCategory]
|
571
|
+
required :processing_category,
|
572
|
+
enum: -> { Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory }
|
573
|
+
|
574
|
+
# @!attribute real_time_decision_id
|
575
|
+
# The identifier of the Real-Time Decision sent to approve or decline this
|
576
|
+
# transaction.
|
577
|
+
#
|
578
|
+
# @return [String, nil]
|
579
|
+
required :real_time_decision_id, String, nil?: true
|
580
|
+
|
581
|
+
# @!attribute real_time_decision_reason
|
582
|
+
# This is present if a specific decline reason was given in the real-time
|
583
|
+
# decision.
|
584
|
+
#
|
585
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::RealTimeDecisionReason, nil]
|
586
|
+
required :real_time_decision_reason,
|
587
|
+
enum: -> { Increase::DeclinedTransaction::Source::CardDecline::RealTimeDecisionReason },
|
588
|
+
nil?: true
|
589
|
+
|
590
|
+
# @!attribute reason
|
591
|
+
# Why the transaction was declined.
|
592
|
+
#
|
593
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Reason]
|
594
|
+
required :reason, enum: -> { Increase::DeclinedTransaction::Source::CardDecline::Reason }
|
595
|
+
|
596
|
+
# @!attribute terminal_id
|
597
|
+
# The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
598
|
+
# is transacting with.
|
599
|
+
#
|
600
|
+
# @return [String, nil]
|
601
|
+
required :terminal_id, String, nil?: true
|
602
|
+
|
603
|
+
# @!attribute verification
|
604
|
+
# Fields related to verification of cardholder-provided values.
|
605
|
+
#
|
606
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification]
|
607
|
+
required :verification, -> { Increase::DeclinedTransaction::Source::CardDecline::Verification }
|
608
|
+
|
609
|
+
# @!method initialize(id:, actioner:, amount:, card_payment_id:, currency:, declined_transaction_id:, digital_wallet_token_id:, direction:, merchant_acceptor_id:, merchant_category_code:, merchant_city:, merchant_country:, merchant_descriptor:, merchant_postal_code:, merchant_state:, network_details:, network_identifiers:, network_risk_score:, physical_card_id:, presentment_amount:, presentment_currency:, processing_category:, real_time_decision_id:, real_time_decision_reason:, reason:, terminal_id:, verification:)
|
610
|
+
# Some parameter documentations has been truncated, see
|
611
|
+
# {Increase::Models::DeclinedTransaction::Source::CardDecline} for more details.
|
612
|
+
#
|
613
|
+
# A Card Decline object. This field will be present in the JSON response if and
|
614
|
+
# only if `category` is equal to `card_decline`.
|
615
|
+
#
|
616
|
+
# @param id [String] The Card Decline identifier.
|
617
|
+
#
|
618
|
+
# @param actioner [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Actioner] Whether this authorization was approved by Increase, the card network through st
|
619
|
+
#
|
620
|
+
# @param amount [Integer] The declined amount in the minor unit of the destination account currency. For d
|
621
|
+
#
|
622
|
+
# @param card_payment_id [String] The ID of the Card Payment this transaction belongs to.
|
623
|
+
#
|
624
|
+
# @param currency [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the destination
|
625
|
+
#
|
626
|
+
# @param declined_transaction_id [String] The identifier of the declined transaction created for this Card Decline.
|
627
|
+
#
|
628
|
+
# @param digital_wallet_token_id [String, nil] If the authorization was made via a Digital Wallet Token (such as an Apple Pay p
|
629
|
+
#
|
630
|
+
# @param direction [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Direction] The direction describes the direction the funds will move, either from the cardh
|
631
|
+
#
|
632
|
+
# @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
633
|
+
#
|
634
|
+
# @param merchant_category_code [String] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
635
|
+
#
|
636
|
+
# @param merchant_city [String, nil] The city the merchant resides in.
|
637
|
+
#
|
638
|
+
# @param merchant_country [String] The country the merchant resides in.
|
639
|
+
#
|
640
|
+
# @param merchant_descriptor [String] The merchant descriptor of the merchant the card is transacting with.
|
641
|
+
#
|
642
|
+
# @param merchant_postal_code [String, nil] The merchant's postal code. For US merchants this is either a 5-digit or 9-digit
|
643
|
+
#
|
644
|
+
# @param merchant_state [String, nil] The state the merchant resides in.
|
645
|
+
#
|
646
|
+
# @param network_details [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails] Fields specific to the `network`.
|
647
|
+
#
|
648
|
+
# @param network_identifiers [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkIdentifiers] Network-specific identifiers for a specific request or transaction.
|
649
|
+
#
|
650
|
+
# @param network_risk_score [Integer, nil] The risk score generated by the card network. For Visa this is the Visa Advanced
|
651
|
+
#
|
652
|
+
# @param physical_card_id [String, nil] If the authorization was made in-person with a physical card, the Physical Card
|
653
|
+
#
|
654
|
+
# @param presentment_amount [Integer] The declined amount in the minor unit of the transaction's presentment currency.
|
655
|
+
#
|
656
|
+
# @param presentment_currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
|
657
|
+
#
|
658
|
+
# @param processing_category [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::ProcessingCategory] The processing category describes the intent behind the authorization, such as w
|
659
|
+
#
|
660
|
+
# @param real_time_decision_id [String, nil] The identifier of the Real-Time Decision sent to approve or decline this transac
|
661
|
+
#
|
662
|
+
# @param real_time_decision_reason [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::RealTimeDecisionReason, nil] This is present if a specific decline reason was given in the real-time decision
|
663
|
+
#
|
664
|
+
# @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Reason] Why the transaction was declined.
|
665
|
+
#
|
666
|
+
# @param terminal_id [String, nil] The terminal identifier (commonly abbreviated as TID) of the terminal the card i
|
667
|
+
#
|
668
|
+
# @param verification [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification] Fields related to verification of cardholder-provided values.
|
669
|
+
|
670
|
+
# Whether this authorization was approved by Increase, the card network through
|
671
|
+
# stand-in processing, or the user through a real-time decision.
|
672
|
+
#
|
673
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#actioner
|
674
|
+
module Actioner
|
675
|
+
extend Increase::Internal::Type::Enum
|
676
|
+
|
677
|
+
# This object was actioned by the user through a real-time decision.
|
678
|
+
USER = :user
|
679
|
+
|
680
|
+
# This object was actioned by Increase without user intervention.
|
681
|
+
INCREASE = :increase
|
682
|
+
|
683
|
+
# This object was actioned by the network, through stand-in processing.
|
684
|
+
NETWORK = :network
|
685
|
+
|
686
|
+
# @!method self.values
|
687
|
+
# @return [Array<Symbol>]
|
688
|
+
end
|
689
|
+
|
690
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the destination
|
691
|
+
# account currency.
|
692
|
+
#
|
693
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#currency
|
694
|
+
module Currency
|
695
|
+
extend Increase::Internal::Type::Enum
|
696
|
+
|
697
|
+
# Canadian Dollar (CAD)
|
698
|
+
CAD = :CAD
|
699
|
+
|
700
|
+
# Swiss Franc (CHF)
|
701
|
+
CHF = :CHF
|
702
|
+
|
703
|
+
# Euro (EUR)
|
704
|
+
EUR = :EUR
|
705
|
+
|
706
|
+
# British Pound (GBP)
|
707
|
+
GBP = :GBP
|
708
|
+
|
709
|
+
# Japanese Yen (JPY)
|
710
|
+
JPY = :JPY
|
711
|
+
|
712
|
+
# US Dollar (USD)
|
713
|
+
USD = :USD
|
714
|
+
|
715
|
+
# @!method self.values
|
716
|
+
# @return [Array<Symbol>]
|
717
|
+
end
|
718
|
+
|
719
|
+
# The direction describes the direction the funds will move, either from the
|
720
|
+
# cardholder to the merchant or from the merchant to the cardholder.
|
721
|
+
#
|
722
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#direction
|
723
|
+
module Direction
|
724
|
+
extend Increase::Internal::Type::Enum
|
725
|
+
|
726
|
+
# A regular card authorization where funds are debited from the cardholder.
|
727
|
+
SETTLEMENT = :settlement
|
728
|
+
|
729
|
+
# A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
|
730
|
+
REFUND = :refund
|
731
|
+
|
732
|
+
# @!method self.values
|
733
|
+
# @return [Array<Symbol>]
|
734
|
+
end
|
735
|
+
|
736
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#network_details
|
737
|
+
class NetworkDetails < Increase::Internal::Type::BaseModel
|
738
|
+
# @!attribute category
|
739
|
+
# The payment network used to process this card authorization.
|
740
|
+
#
|
741
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category]
|
742
|
+
required :category,
|
743
|
+
enum: -> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category }
|
744
|
+
|
745
|
+
# @!attribute visa
|
746
|
+
# Fields specific to the `visa` network.
|
747
|
+
#
|
748
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa, nil]
|
749
|
+
required :visa,
|
750
|
+
-> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa },
|
751
|
+
nil?: true
|
752
|
+
|
753
|
+
# @!method initialize(category:, visa:)
|
754
|
+
# Fields specific to the `network`.
|
755
|
+
#
|
756
|
+
# @param category [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category] The payment network used to process this card authorization.
|
757
|
+
#
|
758
|
+
# @param visa [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
759
|
+
|
760
|
+
# The payment network used to process this card authorization.
|
761
|
+
#
|
762
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails#category
|
763
|
+
module Category
|
764
|
+
extend Increase::Internal::Type::Enum
|
765
|
+
|
766
|
+
# Visa
|
767
|
+
VISA = :visa
|
768
|
+
|
769
|
+
# @!method self.values
|
770
|
+
# @return [Array<Symbol>]
|
771
|
+
end
|
772
|
+
|
773
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails#visa
|
774
|
+
class Visa < Increase::Internal::Type::BaseModel
|
775
|
+
# @!attribute electronic_commerce_indicator
|
776
|
+
# For electronic commerce transactions, this identifies the level of security used
|
777
|
+
# in obtaining the customer's payment credential. For mail or telephone order
|
778
|
+
# transactions, identifies the type of mail or telephone order.
|
779
|
+
#
|
780
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::ElectronicCommerceIndicator, nil]
|
781
|
+
required :electronic_commerce_indicator,
|
782
|
+
enum: -> {
|
783
|
+
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::ElectronicCommerceIndicator
|
784
|
+
},
|
785
|
+
nil?: true
|
786
|
+
|
787
|
+
# @!attribute point_of_service_entry_mode
|
788
|
+
# The method used to enter the cardholder's primary account number and card
|
789
|
+
# expiration date.
|
790
|
+
#
|
791
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::PointOfServiceEntryMode, nil]
|
792
|
+
required :point_of_service_entry_mode,
|
793
|
+
enum: -> {
|
794
|
+
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::PointOfServiceEntryMode
|
795
|
+
},
|
796
|
+
nil?: true
|
797
|
+
|
798
|
+
# @!attribute stand_in_processing_reason
|
799
|
+
# Only present when `actioner: network`. Describes why a card authorization was
|
800
|
+
# approved or declined by Visa through stand-in processing.
|
801
|
+
#
|
802
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::StandInProcessingReason, nil]
|
803
|
+
required :stand_in_processing_reason,
|
804
|
+
enum: -> {
|
805
|
+
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::StandInProcessingReason
|
806
|
+
},
|
807
|
+
nil?: true
|
808
|
+
|
809
|
+
# @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
|
810
|
+
# Some parameter documentations has been truncated, see
|
811
|
+
# {Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa}
|
812
|
+
# for more details.
|
813
|
+
#
|
814
|
+
# Fields specific to the `visa` network.
|
815
|
+
#
|
816
|
+
# @param electronic_commerce_indicator [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::ElectronicCommerceIndicator, nil] For electronic commerce transactions, this identifies the level of security used
|
817
|
+
#
|
818
|
+
# @param point_of_service_entry_mode [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
|
819
|
+
#
|
820
|
+
# @param stand_in_processing_reason [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
|
821
|
+
|
822
|
+
# For electronic commerce transactions, this identifies the level of security used
|
823
|
+
# in obtaining the customer's payment credential. For mail or telephone order
|
824
|
+
# transactions, identifies the type of mail or telephone order.
|
825
|
+
#
|
826
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa#electronic_commerce_indicator
|
827
|
+
module ElectronicCommerceIndicator
|
828
|
+
extend Increase::Internal::Type::Enum
|
829
|
+
|
830
|
+
# Single transaction of a mail/phone order: Use to indicate that the transaction is a mail/phone order purchase, not a recurring transaction or installment payment. For domestic transactions in the US region, this value may also indicate one bill payment transaction in the card-present or card-absent environments.
|
831
|
+
MAIL_PHONE_ORDER = :mail_phone_order
|
832
|
+
|
833
|
+
# Recurring transaction: Payment indicator used to indicate a recurring transaction that originates from an acquirer in the US region.
|
834
|
+
RECURRING = :recurring
|
835
|
+
|
836
|
+
# Installment payment: Payment indicator used to indicate one purchase of goods or services that is billed to the account in multiple charges over a period of time agreed upon by the cardholder and merchant from transactions that originate from an acquirer in the US region.
|
837
|
+
INSTALLMENT = :installment
|
838
|
+
|
839
|
+
# Unknown classification: other mail order: Use to indicate that the type of mail/telephone order is unknown.
|
840
|
+
UNKNOWN_MAIL_PHONE_ORDER = :unknown_mail_phone_order
|
841
|
+
|
842
|
+
# Secure electronic commerce transaction: Use to indicate that the electronic commerce transaction has been authenticated using e.g., 3-D Secure
|
843
|
+
SECURE_ELECTRONIC_COMMERCE = :secure_electronic_commerce
|
844
|
+
|
845
|
+
# Non-authenticated security transaction at a 3-D Secure-capable merchant, and merchant attempted to authenticate the cardholder using 3-D Secure: Use to identify an electronic commerce transaction where the merchant attempted to authenticate the cardholder using 3-D Secure, but was unable to complete the authentication because the issuer or cardholder does not participate in the 3-D Secure program.
|
846
|
+
NON_AUTHENTICATED_SECURITY_TRANSACTION_AT_3DS_CAPABLE_MERCHANT =
|
847
|
+
:non_authenticated_security_transaction_at_3ds_capable_merchant
|
848
|
+
|
849
|
+
# Non-authenticated security transaction: Use to identify an electronic commerce transaction that uses data encryption for security however , cardholder authentication is not performed using 3-D Secure.
|
850
|
+
NON_AUTHENTICATED_SECURITY_TRANSACTION = :non_authenticated_security_transaction
|
851
|
+
|
852
|
+
# Non-secure transaction: Use to identify an electronic commerce transaction that has no data protection.
|
853
|
+
NON_SECURE_TRANSACTION = :non_secure_transaction
|
854
|
+
|
855
|
+
# @!method self.values
|
856
|
+
# @return [Array<Symbol>]
|
857
|
+
end
|
858
|
+
|
859
|
+
# The method used to enter the cardholder's primary account number and card
|
860
|
+
# expiration date.
|
861
|
+
#
|
862
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa#point_of_service_entry_mode
|
863
|
+
module PointOfServiceEntryMode
|
864
|
+
extend Increase::Internal::Type::Enum
|
865
|
+
|
866
|
+
# Unknown
|
867
|
+
UNKNOWN = :unknown
|
868
|
+
|
869
|
+
# Manual key entry
|
870
|
+
MANUAL = :manual
|
871
|
+
|
872
|
+
# Magnetic stripe read, without card verification value
|
873
|
+
MAGNETIC_STRIPE_NO_CVV = :magnetic_stripe_no_cvv
|
874
|
+
|
875
|
+
# Optical code
|
876
|
+
OPTICAL_CODE = :optical_code
|
877
|
+
|
878
|
+
# Contact chip card
|
879
|
+
INTEGRATED_CIRCUIT_CARD = :integrated_circuit_card
|
880
|
+
|
881
|
+
# Contactless read of chip card
|
882
|
+
CONTACTLESS = :contactless
|
883
|
+
|
884
|
+
# Transaction initiated using a credential that has previously been stored on file
|
885
|
+
CREDENTIAL_ON_FILE = :credential_on_file
|
886
|
+
|
887
|
+
# Magnetic stripe read
|
888
|
+
MAGNETIC_STRIPE = :magnetic_stripe
|
889
|
+
|
890
|
+
# Contactless read of magnetic stripe data
|
891
|
+
CONTACTLESS_MAGNETIC_STRIPE = :contactless_magnetic_stripe
|
892
|
+
|
893
|
+
# Contact chip card, without card verification value
|
894
|
+
INTEGRATED_CIRCUIT_CARD_NO_CVV = :integrated_circuit_card_no_cvv
|
895
|
+
|
896
|
+
# @!method self.values
|
897
|
+
# @return [Array<Symbol>]
|
898
|
+
end
|
899
|
+
|
900
|
+
# Only present when `actioner: network`. Describes why a card authorization was
|
901
|
+
# approved or declined by Visa through stand-in processing.
|
902
|
+
#
|
903
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa#stand_in_processing_reason
|
904
|
+
module StandInProcessingReason
|
905
|
+
extend Increase::Internal::Type::Enum
|
906
|
+
|
907
|
+
# Increase failed to process the authorization in a timely manner.
|
908
|
+
ISSUER_ERROR = :issuer_error
|
909
|
+
|
910
|
+
# The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
|
911
|
+
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
912
|
+
|
913
|
+
# The 3DS cardholder authentication verification value was invalid.
|
914
|
+
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
915
|
+
:invalid_cardholder_authentication_verification_value
|
916
|
+
|
917
|
+
# An internal Visa error occurred. Visa uses this reason code for certain expected occurrences as well, such as Application Transaction Counter (ATC) replays.
|
918
|
+
INTERNAL_VISA_ERROR = :internal_visa_error
|
919
|
+
|
920
|
+
# The merchant has enabled Visa's Transaction Advisory Service and requires further authentication to perform the transaction. In practice this is often utilized at fuel pumps to tell the cardholder to see the cashier.
|
921
|
+
MERCHANT_TRANSACTION_ADVISORY_SERVICE_AUTHENTICATION_REQUIRED =
|
922
|
+
:merchant_transaction_advisory_service_authentication_required
|
923
|
+
|
924
|
+
# The transaction was blocked by Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior, such as card testing.
|
925
|
+
PAYMENT_FRAUD_DISRUPTION_ACQUIRER_BLOCK = :payment_fraud_disruption_acquirer_block
|
926
|
+
|
927
|
+
# An unspecific reason for stand-in processing.
|
928
|
+
OTHER = :other
|
929
|
+
|
930
|
+
# @!method self.values
|
931
|
+
# @return [Array<Symbol>]
|
932
|
+
end
|
933
|
+
end
|
934
|
+
end
|
935
|
+
|
936
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#network_identifiers
|
937
|
+
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
938
|
+
# @!attribute retrieval_reference_number
|
939
|
+
# A life-cycle identifier used across e.g., an authorization and a reversal.
|
940
|
+
# Expected to be unique per acquirer within a window of time. For some card
|
941
|
+
# networks the retrieval reference number includes the trace counter.
|
942
|
+
#
|
943
|
+
# @return [String, nil]
|
944
|
+
required :retrieval_reference_number, String, nil?: true
|
945
|
+
|
946
|
+
# @!attribute trace_number
|
947
|
+
# A counter used to verify an individual authorization. Expected to be unique per
|
948
|
+
# acquirer within a window of time.
|
949
|
+
#
|
950
|
+
# @return [String, nil]
|
951
|
+
required :trace_number, String, nil?: true
|
952
|
+
|
953
|
+
# @!attribute transaction_id
|
954
|
+
# A globally unique transaction identifier provided by the card network, used
|
955
|
+
# across multiple life-cycle requests.
|
956
|
+
#
|
957
|
+
# @return [String, nil]
|
958
|
+
required :transaction_id, String, nil?: true
|
959
|
+
|
960
|
+
# @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
|
961
|
+
# Some parameter documentations has been truncated, see
|
962
|
+
# {Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkIdentifiers}
|
963
|
+
# for more details.
|
964
|
+
#
|
965
|
+
# Network-specific identifiers for a specific request or transaction.
|
966
|
+
#
|
967
|
+
# @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
|
968
|
+
#
|
969
|
+
# @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
|
970
|
+
#
|
971
|
+
# @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
|
972
|
+
end
|
973
|
+
|
974
|
+
# The processing category describes the intent behind the authorization, such as
|
975
|
+
# whether it was used for bill payments or an automatic fuel dispenser.
|
976
|
+
#
|
977
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#processing_category
|
978
|
+
module ProcessingCategory
|
979
|
+
extend Increase::Internal::Type::Enum
|
980
|
+
|
981
|
+
# Account funding transactions are transactions used to e.g., fund an account or transfer funds between accounts.
|
982
|
+
ACCOUNT_FUNDING = :account_funding
|
983
|
+
|
984
|
+
# Automatic fuel dispenser authorizations occur when a card is used at a gas pump, prior to the actual transaction amount being known. They are followed by an advice message that updates the amount of the pending transaction.
|
985
|
+
AUTOMATIC_FUEL_DISPENSER = :automatic_fuel_dispenser
|
986
|
+
|
987
|
+
# A transaction used to pay a bill.
|
988
|
+
BILL_PAYMENT = :bill_payment
|
989
|
+
|
990
|
+
# Original credit transactions are used to send money to a cardholder.
|
991
|
+
ORIGINAL_CREDIT = :original_credit
|
992
|
+
|
993
|
+
# A regular purchase.
|
994
|
+
PURCHASE = :purchase
|
995
|
+
|
996
|
+
# Quasi-cash transactions represent purchases of items which may be convertible to cash.
|
997
|
+
QUASI_CASH = :quasi_cash
|
998
|
+
|
999
|
+
# A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
|
1000
|
+
REFUND = :refund
|
1001
|
+
|
1002
|
+
# @!method self.values
|
1003
|
+
# @return [Array<Symbol>]
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
# This is present if a specific decline reason was given in the real-time
|
1007
|
+
# decision.
|
1008
|
+
#
|
1009
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#real_time_decision_reason
|
1010
|
+
module RealTimeDecisionReason
|
1011
|
+
extend Increase::Internal::Type::Enum
|
1012
|
+
|
1013
|
+
# The cardholder does not have sufficient funds to cover the transaction. The merchant may attempt to process the transaction again.
|
1014
|
+
INSUFFICIENT_FUNDS = :insufficient_funds
|
1015
|
+
|
1016
|
+
# This type of transaction is not allowed for this card. This transaction should not be retried.
|
1017
|
+
TRANSACTION_NEVER_ALLOWED = :transaction_never_allowed
|
1018
|
+
|
1019
|
+
# The transaction amount exceeds the cardholder's approval limit. The merchant may attempt to process the transaction again.
|
1020
|
+
EXCEEDS_APPROVAL_LIMIT = :exceeds_approval_limit
|
1021
|
+
|
1022
|
+
# The card has been temporarily disabled or not yet activated. The merchant may attempt to process the transaction again.
|
1023
|
+
CARD_TEMPORARILY_DISABLED = :card_temporarily_disabled
|
1024
|
+
|
1025
|
+
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
1026
|
+
SUSPECTED_FRAUD = :suspected_fraud
|
1027
|
+
|
1028
|
+
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
1029
|
+
OTHER = :other
|
1030
|
+
|
1031
|
+
# @!method self.values
|
1032
|
+
# @return [Array<Symbol>]
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
# Why the transaction was declined.
|
1036
|
+
#
|
1037
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#reason
|
1038
|
+
module Reason
|
1039
|
+
extend Increase::Internal::Type::Enum
|
1040
|
+
|
1041
|
+
# The account has been closed.
|
1042
|
+
ACCOUNT_CLOSED = :account_closed
|
1043
|
+
|
1044
|
+
# The Card was not active.
|
1045
|
+
CARD_NOT_ACTIVE = :card_not_active
|
1046
|
+
|
1047
|
+
# The Card has been canceled.
|
1048
|
+
CARD_CANCELED = :card_canceled
|
1049
|
+
|
1050
|
+
# The Physical Card was not active.
|
1051
|
+
PHYSICAL_CARD_NOT_ACTIVE = :physical_card_not_active
|
1052
|
+
|
1053
|
+
# The account's entity was not active.
|
1054
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
1055
|
+
|
1056
|
+
# The account was inactive.
|
1057
|
+
GROUP_LOCKED = :group_locked
|
1058
|
+
|
1059
|
+
# The Card's Account did not have a sufficient available balance.
|
1060
|
+
INSUFFICIENT_FUNDS = :insufficient_funds
|
1061
|
+
|
1062
|
+
# The given CVV2 did not match the card's value.
|
1063
|
+
CVV2_MISMATCH = :cvv2_mismatch
|
1064
|
+
|
1065
|
+
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
1066
|
+
CARD_EXPIRATION_MISMATCH = :card_expiration_mismatch
|
1067
|
+
|
1068
|
+
# The attempted card transaction is not allowed per Increase's terms.
|
1069
|
+
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
1070
|
+
|
1071
|
+
# The transaction was blocked by a Limit.
|
1072
|
+
BREACHES_LIMIT = :breaches_limit
|
1073
|
+
|
1074
|
+
# Your application declined the transaction via webhook.
|
1075
|
+
WEBHOOK_DECLINED = :webhook_declined
|
1076
|
+
|
1077
|
+
# Your application webhook did not respond without the required timeout.
|
1078
|
+
WEBHOOK_TIMED_OUT = :webhook_timed_out
|
1079
|
+
|
1080
|
+
# Declined by stand-in processing.
|
1081
|
+
DECLINED_BY_STAND_IN_PROCESSING = :declined_by_stand_in_processing
|
1082
|
+
|
1083
|
+
# The card read had an invalid CVV, dCVV, or authorization request cryptogram.
|
1084
|
+
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
1085
|
+
|
1086
|
+
# The original card authorization for this incremental authorization does not exist.
|
1087
|
+
MISSING_ORIGINAL_AUTHORIZATION = :missing_original_authorization
|
1088
|
+
|
1089
|
+
# The transaction was declined because the 3DS authentication failed.
|
1090
|
+
FAILED_3DS_AUTHENTICATION = :failed_3ds_authentication
|
1091
|
+
|
1092
|
+
# The transaction was suspected to be fraudulent. Please reach out to support@increase.com for more information.
|
1093
|
+
SUSPECTED_FRAUD = :suspected_fraud
|
1094
|
+
|
1095
|
+
# @!method self.values
|
1096
|
+
# @return [Array<Symbol>]
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline#verification
|
1100
|
+
class Verification < Increase::Internal::Type::BaseModel
|
1101
|
+
# @!attribute card_verification_code
|
1102
|
+
# Fields related to verification of the Card Verification Code, a 3-digit code on
|
1103
|
+
# the back of the card.
|
1104
|
+
#
|
1105
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode]
|
1106
|
+
required :card_verification_code,
|
1107
|
+
-> {
|
1108
|
+
Increase::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
# @!attribute cardholder_address
|
1112
|
+
# Cardholder address provided in the authorization request and the address on file
|
1113
|
+
# we verified it against.
|
1114
|
+
#
|
1115
|
+
# @return [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress]
|
1116
|
+
required :cardholder_address,
|
1117
|
+
-> {
|
1118
|
+
Increase::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
# @!method initialize(card_verification_code:, cardholder_address:)
|
1122
|
+
# Some parameter documentations has been truncated, see
|
1123
|
+
# {Increase::Models::DeclinedTransaction::Source::CardDecline::Verification} for
|
1124
|
+
# more details.
|
1125
|
+
#
|
1126
|
+
# Fields related to verification of cardholder-provided values.
|
1127
|
+
#
|
1128
|
+
# @param card_verification_code [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode] Fields related to verification of the Card Verification Code, a 3-digit code on
|
1129
|
+
#
|
1130
|
+
# @param cardholder_address [Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress] Cardholder address provided in the authorization request and the address on file
|
1131
|
+
|
1132
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::Verification#card_verification_code
|
1133
|
+
class CardVerificationCode < Increase::Internal::Type::BaseModel
|
1134
|
+
# @!attribute result
|
1135
|
+
# The result of verifying the Card Verification Code.
|
1136
|
+
#
|
1137
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode::Result]
|
1138
|
+
required :result,
|
1139
|
+
enum: -> {
|
1140
|
+
Increase::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode::Result
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
# @!method initialize(result:)
|
1144
|
+
# Fields related to verification of the Card Verification Code, a 3-digit code on
|
1145
|
+
# the back of the card.
|
1146
|
+
#
|
1147
|
+
# @param result [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode::Result] The result of verifying the Card Verification Code.
|
1148
|
+
|
1149
|
+
# The result of verifying the Card Verification Code.
|
1150
|
+
#
|
1151
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardVerificationCode#result
|
1152
|
+
module Result
|
1153
|
+
extend Increase::Internal::Type::Enum
|
1154
|
+
|
1155
|
+
# No card verification code was provided in the authorization request.
|
1156
|
+
NOT_CHECKED = :not_checked
|
1157
|
+
|
1158
|
+
# The card verification code matched the one on file.
|
1159
|
+
MATCH = :match
|
1160
|
+
|
1161
|
+
# The card verification code did not match the one on file.
|
1162
|
+
NO_MATCH = :no_match
|
1163
|
+
|
1164
|
+
# @!method self.values
|
1165
|
+
# @return [Array<Symbol>]
|
1166
|
+
end
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::Verification#cardholder_address
|
1170
|
+
class CardholderAddress < Increase::Internal::Type::BaseModel
|
1171
|
+
# @!attribute actual_line1
|
1172
|
+
# Line 1 of the address on file for the cardholder.
|
1173
|
+
#
|
1174
|
+
# @return [String, nil]
|
1175
|
+
required :actual_line1, String, nil?: true
|
1176
|
+
|
1177
|
+
# @!attribute actual_postal_code
|
1178
|
+
# The postal code of the address on file for the cardholder.
|
1179
|
+
#
|
1180
|
+
# @return [String, nil]
|
1181
|
+
required :actual_postal_code, String, nil?: true
|
1182
|
+
|
1183
|
+
# @!attribute provided_line1
|
1184
|
+
# The cardholder address line 1 provided for verification in the authorization
|
1185
|
+
# request.
|
1186
|
+
#
|
1187
|
+
# @return [String, nil]
|
1188
|
+
required :provided_line1, String, nil?: true
|
1189
|
+
|
1190
|
+
# @!attribute provided_postal_code
|
1191
|
+
# The postal code provided for verification in the authorization request.
|
1192
|
+
#
|
1193
|
+
# @return [String, nil]
|
1194
|
+
required :provided_postal_code, String, nil?: true
|
1195
|
+
|
1196
|
+
# @!attribute result
|
1197
|
+
# The address verification result returned to the card network.
|
1198
|
+
#
|
1199
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress::Result]
|
1200
|
+
required :result,
|
1201
|
+
enum: -> {
|
1202
|
+
Increase::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress::Result
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
# @!method initialize(actual_line1:, actual_postal_code:, provided_line1:, provided_postal_code:, result:)
|
1206
|
+
# Some parameter documentations has been truncated, see
|
1207
|
+
# {Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress}
|
1208
|
+
# for more details.
|
1209
|
+
#
|
1210
|
+
# Cardholder address provided in the authorization request and the address on file
|
1211
|
+
# we verified it against.
|
1212
|
+
#
|
1213
|
+
# @param actual_line1 [String, nil] Line 1 of the address on file for the cardholder.
|
1214
|
+
#
|
1215
|
+
# @param actual_postal_code [String, nil] The postal code of the address on file for the cardholder.
|
1216
|
+
#
|
1217
|
+
# @param provided_line1 [String, nil] The cardholder address line 1 provided for verification in the authorization req
|
1218
|
+
#
|
1219
|
+
# @param provided_postal_code [String, nil] The postal code provided for verification in the authorization request.
|
1220
|
+
#
|
1221
|
+
# @param result [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress::Result] The address verification result returned to the card network.
|
1222
|
+
|
1223
|
+
# The address verification result returned to the card network.
|
1224
|
+
#
|
1225
|
+
# @see Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress#result
|
1226
|
+
module Result
|
1227
|
+
extend Increase::Internal::Type::Enum
|
1228
|
+
|
1229
|
+
# No address was provided in the authorization request.
|
1230
|
+
NOT_CHECKED = :not_checked
|
1231
|
+
|
1232
|
+
# Postal code matches, but the street address was not verified.
|
1233
|
+
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED = :postal_code_match_address_not_checked
|
1234
|
+
|
1235
|
+
# Postal code matches, but the street address does not match.
|
1236
|
+
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH = :postal_code_match_address_no_match
|
1237
|
+
|
1238
|
+
# Postal code does not match, but the street address matches.
|
1239
|
+
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH = :postal_code_no_match_address_match
|
1240
|
+
|
1241
|
+
# Postal code and street address match.
|
1242
|
+
MATCH = :match
|
1243
|
+
|
1244
|
+
# Postal code and street address do not match.
|
1245
|
+
NO_MATCH = :no_match
|
1246
|
+
|
1247
|
+
# @!method self.values
|
1248
|
+
# @return [Array<Symbol>]
|
1249
|
+
end
|
1250
|
+
end
|
1251
|
+
end
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
# The type of the resource. We may add additional possible values for this enum
|
1255
|
+
# over time; your application should be able to handle such additions gracefully.
|
1256
|
+
#
|
1257
|
+
# @see Increase::Models::DeclinedTransaction::Source#category
|
1258
|
+
module Category
|
1259
|
+
extend Increase::Internal::Type::Enum
|
1260
|
+
|
1261
|
+
# ACH Decline: details will be under the `ach_decline` object.
|
1262
|
+
ACH_DECLINE = :ach_decline
|
1263
|
+
|
1264
|
+
# Card Decline: details will be under the `card_decline` object.
|
1265
|
+
CARD_DECLINE = :card_decline
|
1266
|
+
|
1267
|
+
# Check Decline: details will be under the `check_decline` object.
|
1268
|
+
CHECK_DECLINE = :check_decline
|
1269
|
+
|
1270
|
+
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
1271
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE = :inbound_real_time_payments_transfer_decline
|
1272
|
+
|
1273
|
+
# Wire Decline: details will be under the `wire_decline` object.
|
1274
|
+
WIRE_DECLINE = :wire_decline
|
1275
|
+
|
1276
|
+
# Check Deposit Rejection: details will be under the `check_deposit_rejection` object.
|
1277
|
+
CHECK_DEPOSIT_REJECTION = :check_deposit_rejection
|
1278
|
+
|
1279
|
+
# The Declined Transaction was made for an undocumented or deprecated reason.
|
1280
|
+
OTHER = :other
|
1281
|
+
|
1282
|
+
# @!method self.values
|
1283
|
+
# @return [Array<Symbol>]
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
# @see Increase::Models::DeclinedTransaction::Source#check_decline
|
1287
|
+
class CheckDecline < Increase::Internal::Type::BaseModel
|
1288
|
+
# @!attribute amount
|
1289
|
+
# The declined amount in USD cents.
|
1290
|
+
#
|
1291
|
+
# @return [Integer]
|
1292
|
+
required :amount, Integer
|
1293
|
+
|
1294
|
+
# @!attribute auxiliary_on_us
|
1295
|
+
# A computer-readable number printed on the MICR line of business checks, usually
|
1296
|
+
# the check number. This is useful for positive pay checks, but can be unreliably
|
1297
|
+
# transmitted by the bank of first deposit.
|
1298
|
+
#
|
1299
|
+
# @return [String, nil]
|
1300
|
+
required :auxiliary_on_us, String, nil?: true
|
1301
|
+
|
1302
|
+
# @!attribute back_image_file_id
|
1303
|
+
# The identifier of the API File object containing an image of the back of the
|
1304
|
+
# declined check.
|
1305
|
+
#
|
1306
|
+
# @return [String, nil]
|
1307
|
+
required :back_image_file_id, String, nil?: true
|
1308
|
+
|
1309
|
+
# @!attribute check_transfer_id
|
1310
|
+
# The identifier of the Check Transfer object associated with this decline.
|
1311
|
+
#
|
1312
|
+
# @return [String, nil]
|
1313
|
+
required :check_transfer_id, String, nil?: true
|
1314
|
+
|
1315
|
+
# @!attribute front_image_file_id
|
1316
|
+
# The identifier of the API File object containing an image of the front of the
|
1317
|
+
# declined check.
|
1318
|
+
#
|
1319
|
+
# @return [String, nil]
|
1320
|
+
required :front_image_file_id, String, nil?: true
|
1321
|
+
|
1322
|
+
# @!attribute inbound_check_deposit_id
|
1323
|
+
# The identifier of the Inbound Check Deposit object associated with this decline.
|
1324
|
+
#
|
1325
|
+
# @return [String, nil]
|
1326
|
+
required :inbound_check_deposit_id, String, nil?: true
|
1327
|
+
|
1328
|
+
# @!attribute reason
|
1329
|
+
# Why the check was declined.
|
1330
|
+
#
|
1331
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CheckDecline::Reason]
|
1332
|
+
required :reason, enum: -> { Increase::DeclinedTransaction::Source::CheckDecline::Reason }
|
1333
|
+
|
1334
|
+
# @!method initialize(amount:, auxiliary_on_us:, back_image_file_id:, check_transfer_id:, front_image_file_id:, inbound_check_deposit_id:, reason:)
|
1335
|
+
# Some parameter documentations has been truncated, see
|
1336
|
+
# {Increase::Models::DeclinedTransaction::Source::CheckDecline} for more details.
|
1337
|
+
#
|
1338
|
+
# A Check Decline object. This field will be present in the JSON response if and
|
1339
|
+
# only if `category` is equal to `check_decline`.
|
1340
|
+
#
|
1341
|
+
# @param amount [Integer] The declined amount in USD cents.
|
1342
|
+
#
|
1343
|
+
# @param auxiliary_on_us [String, nil] A computer-readable number printed on the MICR line of business checks, usually
|
1344
|
+
#
|
1345
|
+
# @param back_image_file_id [String, nil] The identifier of the API File object containing an image of the back of the dec
|
1346
|
+
#
|
1347
|
+
# @param check_transfer_id [String, nil] The identifier of the Check Transfer object associated with this decline.
|
1348
|
+
#
|
1349
|
+
# @param front_image_file_id [String, nil] The identifier of the API File object containing an image of the front of the de
|
1350
|
+
#
|
1351
|
+
# @param inbound_check_deposit_id [String, nil] The identifier of the Inbound Check Deposit object associated with this decline.
|
1352
|
+
#
|
1353
|
+
# @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::CheckDecline::Reason] Why the check was declined.
|
1354
|
+
|
1355
|
+
# Why the check was declined.
|
1356
|
+
#
|
1357
|
+
# @see Increase::Models::DeclinedTransaction::Source::CheckDecline#reason
|
1358
|
+
module Reason
|
1359
|
+
extend Increase::Internal::Type::Enum
|
1360
|
+
|
1361
|
+
# The account number is disabled.
|
1362
|
+
ACH_ROUTE_DISABLED = :ach_route_disabled
|
1363
|
+
|
1364
|
+
# The account number is canceled.
|
1365
|
+
ACH_ROUTE_CANCELED = :ach_route_canceled
|
1366
|
+
|
1367
|
+
# The deposited check was altered or fictitious.
|
1368
|
+
ALTERED_OR_FICTITIOUS = :altered_or_fictitious
|
1369
|
+
|
1370
|
+
# The transaction would cause a limit to be exceeded.
|
1371
|
+
BREACHES_LIMIT = :breaches_limit
|
1372
|
+
|
1373
|
+
# The check was not endorsed by the payee.
|
1374
|
+
ENDORSEMENT_IRREGULAR = :endorsement_irregular
|
1375
|
+
|
1376
|
+
# The account's entity is not active.
|
1377
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
1378
|
+
|
1379
|
+
# Your account is inactive.
|
1380
|
+
GROUP_LOCKED = :group_locked
|
1381
|
+
|
1382
|
+
# Your account contains insufficient funds.
|
1383
|
+
INSUFFICIENT_FUNDS = :insufficient_funds
|
1384
|
+
|
1385
|
+
# Stop payment requested for this check.
|
1386
|
+
STOP_PAYMENT_REQUESTED = :stop_payment_requested
|
1387
|
+
|
1388
|
+
# The check was a duplicate deposit.
|
1389
|
+
DUPLICATE_PRESENTMENT = :duplicate_presentment
|
1390
|
+
|
1391
|
+
# The check was not authorized.
|
1392
|
+
NOT_AUTHORIZED = :not_authorized
|
1393
|
+
|
1394
|
+
# The amount the receiving bank is attempting to deposit does not match the amount on the check.
|
1395
|
+
AMOUNT_MISMATCH = :amount_mismatch
|
1396
|
+
|
1397
|
+
# The check attempting to be deposited does not belong to Increase.
|
1398
|
+
NOT_OUR_ITEM = :not_our_item
|
1399
|
+
|
1400
|
+
# The account number on the check does not exist at Increase.
|
1401
|
+
NO_ACCOUNT_NUMBER_FOUND = :no_account_number_found
|
1402
|
+
|
1403
|
+
# The check is not readable. Please refer to the image.
|
1404
|
+
REFER_TO_IMAGE = :refer_to_image
|
1405
|
+
|
1406
|
+
# The check cannot be processed. This is rare: please contact support.
|
1407
|
+
UNABLE_TO_PROCESS = :unable_to_process
|
1408
|
+
|
1409
|
+
# Your integration declined this check via the API.
|
1410
|
+
USER_INITIATED = :user_initiated
|
1411
|
+
|
1412
|
+
# @!method self.values
|
1413
|
+
# @return [Array<Symbol>]
|
1414
|
+
end
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
# @see Increase::Models::DeclinedTransaction::Source#check_deposit_rejection
|
1418
|
+
class CheckDepositRejection < Increase::Internal::Type::BaseModel
|
1419
|
+
# @!attribute amount
|
1420
|
+
# The rejected amount in the minor unit of check's currency. For dollars, for
|
1421
|
+
# example, this is cents.
|
1422
|
+
#
|
1423
|
+
# @return [Integer]
|
1424
|
+
required :amount, Integer
|
1425
|
+
|
1426
|
+
# @!attribute check_deposit_id
|
1427
|
+
# The identifier of the Check Deposit that was rejected.
|
1428
|
+
#
|
1429
|
+
# @return [String]
|
1430
|
+
required :check_deposit_id, String
|
1431
|
+
|
1432
|
+
# @!attribute currency
|
1433
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the check's
|
1434
|
+
# currency.
|
1435
|
+
#
|
1436
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CheckDepositRejection::Currency]
|
1437
|
+
required :currency,
|
1438
|
+
enum: -> {
|
1439
|
+
Increase::DeclinedTransaction::Source::CheckDepositRejection::Currency
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
# @!attribute declined_transaction_id
|
1443
|
+
# The identifier of the associated declined transaction.
|
1444
|
+
#
|
1445
|
+
# @return [String]
|
1446
|
+
required :declined_transaction_id, String
|
1447
|
+
|
1448
|
+
# @!attribute reason
|
1449
|
+
# Why the check deposit was rejected.
|
1450
|
+
#
|
1451
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::CheckDepositRejection::Reason]
|
1452
|
+
required :reason, enum: -> { Increase::DeclinedTransaction::Source::CheckDepositRejection::Reason }
|
1453
|
+
|
1454
|
+
# @!attribute rejected_at
|
1455
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
1456
|
+
# the check deposit was rejected.
|
1457
|
+
#
|
1458
|
+
# @return [Time]
|
1459
|
+
required :rejected_at, Time
|
1460
|
+
|
1461
|
+
# @!method initialize(amount:, check_deposit_id:, currency:, declined_transaction_id:, reason:, rejected_at:)
|
1462
|
+
# Some parameter documentations has been truncated, see
|
1463
|
+
# {Increase::Models::DeclinedTransaction::Source::CheckDepositRejection} for more
|
1464
|
+
# details.
|
1465
|
+
#
|
1466
|
+
# A Check Deposit Rejection object. This field will be present in the JSON
|
1467
|
+
# response if and only if `category` is equal to `check_deposit_rejection`.
|
1468
|
+
#
|
1469
|
+
# @param amount [Integer] The rejected amount in the minor unit of check's currency. For dollars, for exam
|
1470
|
+
#
|
1471
|
+
# @param check_deposit_id [String] The identifier of the Check Deposit that was rejected.
|
1472
|
+
#
|
1473
|
+
# @param currency [Symbol, Increase::Models::DeclinedTransaction::Source::CheckDepositRejection::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the check's curr
|
1474
|
+
#
|
1475
|
+
# @param declined_transaction_id [String] The identifier of the associated declined transaction.
|
1476
|
+
#
|
1477
|
+
# @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::CheckDepositRejection::Reason] Why the check deposit was rejected.
|
1478
|
+
#
|
1479
|
+
# @param rejected_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
1480
|
+
|
1481
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the check's
|
1482
|
+
# currency.
|
1483
|
+
#
|
1484
|
+
# @see Increase::Models::DeclinedTransaction::Source::CheckDepositRejection#currency
|
1485
|
+
module Currency
|
1486
|
+
extend Increase::Internal::Type::Enum
|
1487
|
+
|
1488
|
+
# Canadian Dollar (CAD)
|
1489
|
+
CAD = :CAD
|
1490
|
+
|
1491
|
+
# Swiss Franc (CHF)
|
1492
|
+
CHF = :CHF
|
1493
|
+
|
1494
|
+
# Euro (EUR)
|
1495
|
+
EUR = :EUR
|
1496
|
+
|
1497
|
+
# British Pound (GBP)
|
1498
|
+
GBP = :GBP
|
1499
|
+
|
1500
|
+
# Japanese Yen (JPY)
|
1501
|
+
JPY = :JPY
|
1502
|
+
|
1503
|
+
# US Dollar (USD)
|
1504
|
+
USD = :USD
|
1505
|
+
|
1506
|
+
# @!method self.values
|
1507
|
+
# @return [Array<Symbol>]
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
# Why the check deposit was rejected.
|
1511
|
+
#
|
1512
|
+
# @see Increase::Models::DeclinedTransaction::Source::CheckDepositRejection#reason
|
1513
|
+
module Reason
|
1514
|
+
extend Increase::Internal::Type::Enum
|
1515
|
+
|
1516
|
+
# The check's image is incomplete.
|
1517
|
+
INCOMPLETE_IMAGE = :incomplete_image
|
1518
|
+
|
1519
|
+
# This is a duplicate check submission.
|
1520
|
+
DUPLICATE = :duplicate
|
1521
|
+
|
1522
|
+
# This check has poor image quality.
|
1523
|
+
POOR_IMAGE_QUALITY = :poor_image_quality
|
1524
|
+
|
1525
|
+
# The check was deposited with the incorrect amount.
|
1526
|
+
INCORRECT_AMOUNT = :incorrect_amount
|
1527
|
+
|
1528
|
+
# The check is made out to someone other than the account holder.
|
1529
|
+
INCORRECT_RECIPIENT = :incorrect_recipient
|
1530
|
+
|
1531
|
+
# This check was not eligible for mobile deposit.
|
1532
|
+
NOT_ELIGIBLE_FOR_MOBILE_DEPOSIT = :not_eligible_for_mobile_deposit
|
1533
|
+
|
1534
|
+
# This check is missing at least one required field.
|
1535
|
+
MISSING_REQUIRED_DATA_ELEMENTS = :missing_required_data_elements
|
1536
|
+
|
1537
|
+
# This check is suspected to be fraudulent.
|
1538
|
+
SUSPECTED_FRAUD = :suspected_fraud
|
1539
|
+
|
1540
|
+
# This check's deposit window has expired.
|
1541
|
+
DEPOSIT_WINDOW_EXPIRED = :deposit_window_expired
|
1542
|
+
|
1543
|
+
# The check was rejected at the user's request.
|
1544
|
+
REQUESTED_BY_USER = :requested_by_user
|
1545
|
+
|
1546
|
+
# The check was rejected for an unknown reason.
|
1547
|
+
UNKNOWN = :unknown
|
1548
|
+
|
1549
|
+
# @!method self.values
|
1550
|
+
# @return [Array<Symbol>]
|
1551
|
+
end
|
1552
|
+
end
|
1553
|
+
|
1554
|
+
# @see Increase::Models::DeclinedTransaction::Source#inbound_real_time_payments_transfer_decline
|
1555
|
+
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
1556
|
+
# @!attribute amount
|
1557
|
+
# The declined amount in the minor unit of the destination account currency. For
|
1558
|
+
# dollars, for example, this is cents.
|
1559
|
+
#
|
1560
|
+
# @return [Integer]
|
1561
|
+
required :amount, Integer
|
1562
|
+
|
1563
|
+
# @!attribute creditor_name
|
1564
|
+
# The name the sender of the transfer specified as the recipient of the transfer.
|
1565
|
+
#
|
1566
|
+
# @return [String]
|
1567
|
+
required :creditor_name, String
|
1568
|
+
|
1569
|
+
# @!attribute currency
|
1570
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
1571
|
+
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
1572
|
+
# transfer.
|
1573
|
+
#
|
1574
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Currency]
|
1575
|
+
required :currency,
|
1576
|
+
enum: -> {
|
1577
|
+
Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Currency
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
# @!attribute debtor_account_number
|
1581
|
+
# The account number of the account that sent the transfer.
|
1582
|
+
#
|
1583
|
+
# @return [String]
|
1584
|
+
required :debtor_account_number, String
|
1585
|
+
|
1586
|
+
# @!attribute debtor_name
|
1587
|
+
# The name provided by the sender of the transfer.
|
1588
|
+
#
|
1589
|
+
# @return [String]
|
1590
|
+
required :debtor_name, String
|
1591
|
+
|
1592
|
+
# @!attribute debtor_routing_number
|
1593
|
+
# The routing number of the account that sent the transfer.
|
1594
|
+
#
|
1595
|
+
# @return [String]
|
1596
|
+
required :debtor_routing_number, String
|
1597
|
+
|
1598
|
+
# @!attribute reason
|
1599
|
+
# Why the transfer was declined.
|
1600
|
+
#
|
1601
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Reason]
|
1602
|
+
required :reason,
|
1603
|
+
enum: -> {
|
1604
|
+
Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Reason
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
# @!attribute remittance_information
|
1608
|
+
# Additional information included with the transfer.
|
1609
|
+
#
|
1610
|
+
# @return [String, nil]
|
1611
|
+
required :remittance_information, String, nil?: true
|
1612
|
+
|
1613
|
+
# @!attribute transaction_identification
|
1614
|
+
# The Real-Time Payments network identification of the declined transfer.
|
1615
|
+
#
|
1616
|
+
# @return [String]
|
1617
|
+
required :transaction_identification, String
|
1618
|
+
|
1619
|
+
# @!attribute transfer_id
|
1620
|
+
# The identifier of the Real-Time Payments Transfer that led to this Transaction.
|
1621
|
+
#
|
1622
|
+
# @return [String]
|
1623
|
+
required :transfer_id, String
|
1624
|
+
|
1625
|
+
# @!method initialize(amount:, creditor_name:, currency:, debtor_account_number:, debtor_name:, debtor_routing_number:, reason:, remittance_information:, transaction_identification:, transfer_id:)
|
1626
|
+
# Some parameter documentations has been truncated, see
|
1627
|
+
# {Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline}
|
1628
|
+
# for more details.
|
1629
|
+
#
|
1630
|
+
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
1631
|
+
# present in the JSON response if and only if `category` is equal to
|
1632
|
+
# `inbound_real_time_payments_transfer_decline`.
|
1633
|
+
#
|
1634
|
+
# @param amount [Integer] The declined amount in the minor unit of the destination account currency. For d
|
1635
|
+
#
|
1636
|
+
# @param creditor_name [String] The name the sender of the transfer specified as the recipient of the transfer.
|
1637
|
+
#
|
1638
|
+
# @param currency [Symbol, Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined tran
|
1639
|
+
#
|
1640
|
+
# @param debtor_account_number [String] The account number of the account that sent the transfer.
|
1641
|
+
#
|
1642
|
+
# @param debtor_name [String] The name provided by the sender of the transfer.
|
1643
|
+
#
|
1644
|
+
# @param debtor_routing_number [String] The routing number of the account that sent the transfer.
|
1645
|
+
#
|
1646
|
+
# @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::Reason] Why the transfer was declined.
|
1647
|
+
#
|
1648
|
+
# @param remittance_information [String, nil] Additional information included with the transfer.
|
1649
|
+
#
|
1650
|
+
# @param transaction_identification [String] The Real-Time Payments network identification of the declined transfer.
|
1651
|
+
#
|
1652
|
+
# @param transfer_id [String] The identifier of the Real-Time Payments Transfer that led to this Transaction.
|
1653
|
+
|
1654
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
1655
|
+
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
1656
|
+
# transfer.
|
1657
|
+
#
|
1658
|
+
# @see Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline#currency
|
1659
|
+
module Currency
|
1660
|
+
extend Increase::Internal::Type::Enum
|
1661
|
+
|
1662
|
+
# Canadian Dollar (CAD)
|
1663
|
+
CAD = :CAD
|
1664
|
+
|
1665
|
+
# Swiss Franc (CHF)
|
1666
|
+
CHF = :CHF
|
1667
|
+
|
1668
|
+
# Euro (EUR)
|
1669
|
+
EUR = :EUR
|
1670
|
+
|
1671
|
+
# British Pound (GBP)
|
1672
|
+
GBP = :GBP
|
1673
|
+
|
1674
|
+
# Japanese Yen (JPY)
|
1675
|
+
JPY = :JPY
|
1676
|
+
|
1677
|
+
# US Dollar (USD)
|
1678
|
+
USD = :USD
|
1679
|
+
|
1680
|
+
# @!method self.values
|
1681
|
+
# @return [Array<Symbol>]
|
1682
|
+
end
|
1683
|
+
|
1684
|
+
# Why the transfer was declined.
|
1685
|
+
#
|
1686
|
+
# @see Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline#reason
|
1687
|
+
module Reason
|
1688
|
+
extend Increase::Internal::Type::Enum
|
1689
|
+
|
1690
|
+
# The account number is canceled.
|
1691
|
+
ACCOUNT_NUMBER_CANCELED = :account_number_canceled
|
1692
|
+
|
1693
|
+
# The account number is disabled.
|
1694
|
+
ACCOUNT_NUMBER_DISABLED = :account_number_disabled
|
1695
|
+
|
1696
|
+
# Your account is restricted.
|
1697
|
+
ACCOUNT_RESTRICTED = :account_restricted
|
1698
|
+
|
1699
|
+
# Your account is inactive.
|
1700
|
+
GROUP_LOCKED = :group_locked
|
1701
|
+
|
1702
|
+
# The account's entity is not active.
|
1703
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
1704
|
+
|
1705
|
+
# Your account is not enabled to receive Real-Time Payments transfers.
|
1706
|
+
REAL_TIME_PAYMENTS_NOT_ENABLED = :real_time_payments_not_enabled
|
1707
|
+
|
1708
|
+
# @!method self.values
|
1709
|
+
# @return [Array<Symbol>]
|
1710
|
+
end
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
# @see Increase::Models::DeclinedTransaction::Source#wire_decline
|
1714
|
+
class WireDecline < Increase::Internal::Type::BaseModel
|
1715
|
+
# @!attribute inbound_wire_transfer_id
|
1716
|
+
# The identifier of the Inbound Wire Transfer that was declined.
|
1717
|
+
#
|
1718
|
+
# @return [String]
|
1719
|
+
required :inbound_wire_transfer_id, String
|
1720
|
+
|
1721
|
+
# @!attribute reason
|
1722
|
+
# Why the wire transfer was declined.
|
1723
|
+
#
|
1724
|
+
# @return [Symbol, Increase::Models::DeclinedTransaction::Source::WireDecline::Reason]
|
1725
|
+
required :reason, enum: -> { Increase::DeclinedTransaction::Source::WireDecline::Reason }
|
1726
|
+
|
1727
|
+
# @!method initialize(inbound_wire_transfer_id:, reason:)
|
1728
|
+
# A Wire Decline object. This field will be present in the JSON response if and
|
1729
|
+
# only if `category` is equal to `wire_decline`.
|
1730
|
+
#
|
1731
|
+
# @param inbound_wire_transfer_id [String] The identifier of the Inbound Wire Transfer that was declined.
|
1732
|
+
#
|
1733
|
+
# @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::WireDecline::Reason] Why the wire transfer was declined.
|
1734
|
+
|
1735
|
+
# Why the wire transfer was declined.
|
1736
|
+
#
|
1737
|
+
# @see Increase::Models::DeclinedTransaction::Source::WireDecline#reason
|
1738
|
+
module Reason
|
1739
|
+
extend Increase::Internal::Type::Enum
|
1740
|
+
|
1741
|
+
# The account number is canceled.
|
1742
|
+
ACCOUNT_NUMBER_CANCELED = :account_number_canceled
|
1743
|
+
|
1744
|
+
# The account number is disabled.
|
1745
|
+
ACCOUNT_NUMBER_DISABLED = :account_number_disabled
|
1746
|
+
|
1747
|
+
# The account's entity is not active.
|
1748
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
1749
|
+
|
1750
|
+
# Your account is inactive.
|
1751
|
+
GROUP_LOCKED = :group_locked
|
1752
|
+
|
1753
|
+
# The beneficiary account number does not exist.
|
1754
|
+
NO_ACCOUNT_NUMBER = :no_account_number
|
1755
|
+
|
1756
|
+
# The transaction is not allowed per Increase's terms.
|
1757
|
+
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
1758
|
+
|
1759
|
+
# @!method self.values
|
1760
|
+
# @return [Array<Symbol>]
|
1761
|
+
end
|
1762
|
+
end
|
1763
|
+
end
|
1764
|
+
|
1765
|
+
# A constant representing the object's type. For this resource it will always be
|
1766
|
+
# `declined_transaction`.
|
1767
|
+
#
|
1768
|
+
# @see Increase::Models::DeclinedTransaction#type
|
1769
|
+
module Type
|
1770
|
+
extend Increase::Internal::Type::Enum
|
1771
|
+
|
1772
|
+
DECLINED_TRANSACTION = :declined_transaction
|
1773
|
+
|
1774
|
+
# @!method self.values
|
1775
|
+
# @return [Array<Symbol>]
|
1776
|
+
end
|
1777
|
+
end
|
1778
|
+
end
|
1779
|
+
end
|