increase 0.3.3 → 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 +209 -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,1898 @@
|
|
1
|
+
# typed: strong
|
2
|
+
|
3
|
+
module Increase
|
4
|
+
module Models
|
5
|
+
class InboundACHTransfer < Increase::Internal::Type::BaseModel
|
6
|
+
OrHash =
|
7
|
+
T.type_alias do
|
8
|
+
T.any(Increase::InboundACHTransfer, Increase::Internal::AnyHash)
|
9
|
+
end
|
10
|
+
|
11
|
+
# The inbound ACH transfer's identifier.
|
12
|
+
sig { returns(String) }
|
13
|
+
attr_accessor :id
|
14
|
+
|
15
|
+
# If your transfer is accepted, this will contain details of the acceptance.
|
16
|
+
sig { returns(T.nilable(Increase::InboundACHTransfer::Acceptance)) }
|
17
|
+
attr_reader :acceptance
|
18
|
+
|
19
|
+
sig do
|
20
|
+
params(
|
21
|
+
acceptance:
|
22
|
+
T.nilable(Increase::InboundACHTransfer::Acceptance::OrHash)
|
23
|
+
).void
|
24
|
+
end
|
25
|
+
attr_writer :acceptance
|
26
|
+
|
27
|
+
# The Account to which the transfer belongs.
|
28
|
+
sig { returns(String) }
|
29
|
+
attr_accessor :account_id
|
30
|
+
|
31
|
+
# The identifier of the Account Number to which this transfer was sent.
|
32
|
+
sig { returns(String) }
|
33
|
+
attr_accessor :account_number_id
|
34
|
+
|
35
|
+
# Additional information sent from the originator.
|
36
|
+
sig { returns(T.nilable(Increase::InboundACHTransfer::Addenda)) }
|
37
|
+
attr_reader :addenda
|
38
|
+
|
39
|
+
sig do
|
40
|
+
params(
|
41
|
+
addenda: T.nilable(Increase::InboundACHTransfer::Addenda::OrHash)
|
42
|
+
).void
|
43
|
+
end
|
44
|
+
attr_writer :addenda
|
45
|
+
|
46
|
+
# The transfer amount in USD cents.
|
47
|
+
sig { returns(Integer) }
|
48
|
+
attr_accessor :amount
|
49
|
+
|
50
|
+
# The time at which the transfer will be automatically resolved.
|
51
|
+
sig { returns(Time) }
|
52
|
+
attr_accessor :automatically_resolves_at
|
53
|
+
|
54
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
55
|
+
# the inbound ACH transfer was created.
|
56
|
+
sig { returns(Time) }
|
57
|
+
attr_accessor :created_at
|
58
|
+
|
59
|
+
# If your transfer is declined, this will contain details of the decline.
|
60
|
+
sig { returns(T.nilable(Increase::InboundACHTransfer::Decline)) }
|
61
|
+
attr_reader :decline
|
62
|
+
|
63
|
+
sig do
|
64
|
+
params(
|
65
|
+
decline: T.nilable(Increase::InboundACHTransfer::Decline::OrHash)
|
66
|
+
).void
|
67
|
+
end
|
68
|
+
attr_writer :decline
|
69
|
+
|
70
|
+
# The direction of the transfer.
|
71
|
+
sig { returns(Increase::InboundACHTransfer::Direction::TaggedSymbol) }
|
72
|
+
attr_accessor :direction
|
73
|
+
|
74
|
+
# The effective date of the transfer. This is sent by the sending bank and is a
|
75
|
+
# factor in determining funds availability.
|
76
|
+
sig { returns(Date) }
|
77
|
+
attr_accessor :effective_date
|
78
|
+
|
79
|
+
# The settlement schedule the transfer is expected to follow.
|
80
|
+
sig do
|
81
|
+
returns(
|
82
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule::TaggedSymbol
|
83
|
+
)
|
84
|
+
end
|
85
|
+
attr_accessor :expected_settlement_schedule
|
86
|
+
|
87
|
+
# If the Inbound ACH Transfer has a Standard Entry Class Code of IAT, this will
|
88
|
+
# contain fields pertaining to the International ACH Transaction.
|
89
|
+
sig do
|
90
|
+
returns(T.nilable(Increase::InboundACHTransfer::InternationalAddenda))
|
91
|
+
end
|
92
|
+
attr_reader :international_addenda
|
93
|
+
|
94
|
+
sig do
|
95
|
+
params(
|
96
|
+
international_addenda:
|
97
|
+
T.nilable(
|
98
|
+
Increase::InboundACHTransfer::InternationalAddenda::OrHash
|
99
|
+
)
|
100
|
+
).void
|
101
|
+
end
|
102
|
+
attr_writer :international_addenda
|
103
|
+
|
104
|
+
# If you initiate a notification of change in response to the transfer, this will
|
105
|
+
# contain its details.
|
106
|
+
sig do
|
107
|
+
returns(T.nilable(Increase::InboundACHTransfer::NotificationOfChange))
|
108
|
+
end
|
109
|
+
attr_reader :notification_of_change
|
110
|
+
|
111
|
+
sig do
|
112
|
+
params(
|
113
|
+
notification_of_change:
|
114
|
+
T.nilable(
|
115
|
+
Increase::InboundACHTransfer::NotificationOfChange::OrHash
|
116
|
+
)
|
117
|
+
).void
|
118
|
+
end
|
119
|
+
attr_writer :notification_of_change
|
120
|
+
|
121
|
+
# The descriptive date of the transfer.
|
122
|
+
sig { returns(T.nilable(String)) }
|
123
|
+
attr_accessor :originator_company_descriptive_date
|
124
|
+
|
125
|
+
# The additional information included with the transfer.
|
126
|
+
sig { returns(T.nilable(String)) }
|
127
|
+
attr_accessor :originator_company_discretionary_data
|
128
|
+
|
129
|
+
# The description of the transfer.
|
130
|
+
sig { returns(String) }
|
131
|
+
attr_accessor :originator_company_entry_description
|
132
|
+
|
133
|
+
# The id of the company that initiated the transfer.
|
134
|
+
sig { returns(String) }
|
135
|
+
attr_accessor :originator_company_id
|
136
|
+
|
137
|
+
# The name of the company that initiated the transfer.
|
138
|
+
sig { returns(String) }
|
139
|
+
attr_accessor :originator_company_name
|
140
|
+
|
141
|
+
# The American Banking Association (ABA) routing number of the bank originating
|
142
|
+
# the transfer.
|
143
|
+
sig { returns(String) }
|
144
|
+
attr_accessor :originator_routing_number
|
145
|
+
|
146
|
+
# The id of the receiver of the transfer.
|
147
|
+
sig { returns(T.nilable(String)) }
|
148
|
+
attr_accessor :receiver_id_number
|
149
|
+
|
150
|
+
# The name of the receiver of the transfer.
|
151
|
+
sig { returns(T.nilable(String)) }
|
152
|
+
attr_accessor :receiver_name
|
153
|
+
|
154
|
+
# The Standard Entry Class (SEC) code of the transfer.
|
155
|
+
sig do
|
156
|
+
returns(
|
157
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
158
|
+
)
|
159
|
+
end
|
160
|
+
attr_accessor :standard_entry_class_code
|
161
|
+
|
162
|
+
# The status of the transfer.
|
163
|
+
sig { returns(Increase::InboundACHTransfer::Status::TaggedSymbol) }
|
164
|
+
attr_accessor :status
|
165
|
+
|
166
|
+
# A 15 digit number set by the sending bank and transmitted to the receiving bank.
|
167
|
+
# Along with the amount, date, and originating routing number, this can be used to
|
168
|
+
# identify the ACH transfer. ACH trace numbers are not unique, but are
|
169
|
+
# [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
170
|
+
sig { returns(String) }
|
171
|
+
attr_accessor :trace_number
|
172
|
+
|
173
|
+
# If your transfer is returned, this will contain details of the return.
|
174
|
+
sig { returns(T.nilable(Increase::InboundACHTransfer::TransferReturn)) }
|
175
|
+
attr_reader :transfer_return
|
176
|
+
|
177
|
+
sig do
|
178
|
+
params(
|
179
|
+
transfer_return:
|
180
|
+
T.nilable(Increase::InboundACHTransfer::TransferReturn::OrHash)
|
181
|
+
).void
|
182
|
+
end
|
183
|
+
attr_writer :transfer_return
|
184
|
+
|
185
|
+
# A constant representing the object's type. For this resource it will always be
|
186
|
+
# `inbound_ach_transfer`.
|
187
|
+
sig { returns(Increase::InboundACHTransfer::Type::TaggedSymbol) }
|
188
|
+
attr_accessor :type
|
189
|
+
|
190
|
+
# An Inbound ACH Transfer is an ACH transfer initiated outside of Increase to your
|
191
|
+
# account.
|
192
|
+
sig do
|
193
|
+
params(
|
194
|
+
id: String,
|
195
|
+
acceptance:
|
196
|
+
T.nilable(Increase::InboundACHTransfer::Acceptance::OrHash),
|
197
|
+
account_id: String,
|
198
|
+
account_number_id: String,
|
199
|
+
addenda: T.nilable(Increase::InboundACHTransfer::Addenda::OrHash),
|
200
|
+
amount: Integer,
|
201
|
+
automatically_resolves_at: Time,
|
202
|
+
created_at: Time,
|
203
|
+
decline: T.nilable(Increase::InboundACHTransfer::Decline::OrHash),
|
204
|
+
direction: Increase::InboundACHTransfer::Direction::OrSymbol,
|
205
|
+
effective_date: Date,
|
206
|
+
expected_settlement_schedule:
|
207
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule::OrSymbol,
|
208
|
+
international_addenda:
|
209
|
+
T.nilable(
|
210
|
+
Increase::InboundACHTransfer::InternationalAddenda::OrHash
|
211
|
+
),
|
212
|
+
notification_of_change:
|
213
|
+
T.nilable(
|
214
|
+
Increase::InboundACHTransfer::NotificationOfChange::OrHash
|
215
|
+
),
|
216
|
+
originator_company_descriptive_date: T.nilable(String),
|
217
|
+
originator_company_discretionary_data: T.nilable(String),
|
218
|
+
originator_company_entry_description: String,
|
219
|
+
originator_company_id: String,
|
220
|
+
originator_company_name: String,
|
221
|
+
originator_routing_number: String,
|
222
|
+
receiver_id_number: T.nilable(String),
|
223
|
+
receiver_name: T.nilable(String),
|
224
|
+
standard_entry_class_code:
|
225
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::OrSymbol,
|
226
|
+
status: Increase::InboundACHTransfer::Status::OrSymbol,
|
227
|
+
trace_number: String,
|
228
|
+
transfer_return:
|
229
|
+
T.nilable(Increase::InboundACHTransfer::TransferReturn::OrHash),
|
230
|
+
type: Increase::InboundACHTransfer::Type::OrSymbol
|
231
|
+
).returns(T.attached_class)
|
232
|
+
end
|
233
|
+
def self.new(
|
234
|
+
# The inbound ACH transfer's identifier.
|
235
|
+
id:,
|
236
|
+
# If your transfer is accepted, this will contain details of the acceptance.
|
237
|
+
acceptance:,
|
238
|
+
# The Account to which the transfer belongs.
|
239
|
+
account_id:,
|
240
|
+
# The identifier of the Account Number to which this transfer was sent.
|
241
|
+
account_number_id:,
|
242
|
+
# Additional information sent from the originator.
|
243
|
+
addenda:,
|
244
|
+
# The transfer amount in USD cents.
|
245
|
+
amount:,
|
246
|
+
# The time at which the transfer will be automatically resolved.
|
247
|
+
automatically_resolves_at:,
|
248
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
249
|
+
# the inbound ACH transfer was created.
|
250
|
+
created_at:,
|
251
|
+
# If your transfer is declined, this will contain details of the decline.
|
252
|
+
decline:,
|
253
|
+
# The direction of the transfer.
|
254
|
+
direction:,
|
255
|
+
# The effective date of the transfer. This is sent by the sending bank and is a
|
256
|
+
# factor in determining funds availability.
|
257
|
+
effective_date:,
|
258
|
+
# The settlement schedule the transfer is expected to follow.
|
259
|
+
expected_settlement_schedule:,
|
260
|
+
# If the Inbound ACH Transfer has a Standard Entry Class Code of IAT, this will
|
261
|
+
# contain fields pertaining to the International ACH Transaction.
|
262
|
+
international_addenda:,
|
263
|
+
# If you initiate a notification of change in response to the transfer, this will
|
264
|
+
# contain its details.
|
265
|
+
notification_of_change:,
|
266
|
+
# The descriptive date of the transfer.
|
267
|
+
originator_company_descriptive_date:,
|
268
|
+
# The additional information included with the transfer.
|
269
|
+
originator_company_discretionary_data:,
|
270
|
+
# The description of the transfer.
|
271
|
+
originator_company_entry_description:,
|
272
|
+
# The id of the company that initiated the transfer.
|
273
|
+
originator_company_id:,
|
274
|
+
# The name of the company that initiated the transfer.
|
275
|
+
originator_company_name:,
|
276
|
+
# The American Banking Association (ABA) routing number of the bank originating
|
277
|
+
# the transfer.
|
278
|
+
originator_routing_number:,
|
279
|
+
# The id of the receiver of the transfer.
|
280
|
+
receiver_id_number:,
|
281
|
+
# The name of the receiver of the transfer.
|
282
|
+
receiver_name:,
|
283
|
+
# The Standard Entry Class (SEC) code of the transfer.
|
284
|
+
standard_entry_class_code:,
|
285
|
+
# The status of the transfer.
|
286
|
+
status:,
|
287
|
+
# A 15 digit number set by the sending bank and transmitted to the receiving bank.
|
288
|
+
# Along with the amount, date, and originating routing number, this can be used to
|
289
|
+
# identify the ACH transfer. ACH trace numbers are not unique, but are
|
290
|
+
# [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
291
|
+
trace_number:,
|
292
|
+
# If your transfer is returned, this will contain details of the return.
|
293
|
+
transfer_return:,
|
294
|
+
# A constant representing the object's type. For this resource it will always be
|
295
|
+
# `inbound_ach_transfer`.
|
296
|
+
type:
|
297
|
+
)
|
298
|
+
end
|
299
|
+
|
300
|
+
sig do
|
301
|
+
override.returns(
|
302
|
+
{
|
303
|
+
id: String,
|
304
|
+
acceptance: T.nilable(Increase::InboundACHTransfer::Acceptance),
|
305
|
+
account_id: String,
|
306
|
+
account_number_id: String,
|
307
|
+
addenda: T.nilable(Increase::InboundACHTransfer::Addenda),
|
308
|
+
amount: Integer,
|
309
|
+
automatically_resolves_at: Time,
|
310
|
+
created_at: Time,
|
311
|
+
decline: T.nilable(Increase::InboundACHTransfer::Decline),
|
312
|
+
direction: Increase::InboundACHTransfer::Direction::TaggedSymbol,
|
313
|
+
effective_date: Date,
|
314
|
+
expected_settlement_schedule:
|
315
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule::TaggedSymbol,
|
316
|
+
international_addenda:
|
317
|
+
T.nilable(Increase::InboundACHTransfer::InternationalAddenda),
|
318
|
+
notification_of_change:
|
319
|
+
T.nilable(Increase::InboundACHTransfer::NotificationOfChange),
|
320
|
+
originator_company_descriptive_date: T.nilable(String),
|
321
|
+
originator_company_discretionary_data: T.nilable(String),
|
322
|
+
originator_company_entry_description: String,
|
323
|
+
originator_company_id: String,
|
324
|
+
originator_company_name: String,
|
325
|
+
originator_routing_number: String,
|
326
|
+
receiver_id_number: T.nilable(String),
|
327
|
+
receiver_name: T.nilable(String),
|
328
|
+
standard_entry_class_code:
|
329
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol,
|
330
|
+
status: Increase::InboundACHTransfer::Status::TaggedSymbol,
|
331
|
+
trace_number: String,
|
332
|
+
transfer_return:
|
333
|
+
T.nilable(Increase::InboundACHTransfer::TransferReturn),
|
334
|
+
type: Increase::InboundACHTransfer::Type::TaggedSymbol
|
335
|
+
}
|
336
|
+
)
|
337
|
+
end
|
338
|
+
def to_hash
|
339
|
+
end
|
340
|
+
|
341
|
+
class Acceptance < Increase::Internal::Type::BaseModel
|
342
|
+
OrHash =
|
343
|
+
T.type_alias do
|
344
|
+
T.any(
|
345
|
+
Increase::InboundACHTransfer::Acceptance,
|
346
|
+
Increase::Internal::AnyHash
|
347
|
+
)
|
348
|
+
end
|
349
|
+
|
350
|
+
# The time at which the transfer was accepted.
|
351
|
+
sig { returns(Time) }
|
352
|
+
attr_accessor :accepted_at
|
353
|
+
|
354
|
+
# The id of the transaction for the accepted transfer.
|
355
|
+
sig { returns(String) }
|
356
|
+
attr_accessor :transaction_id
|
357
|
+
|
358
|
+
# If your transfer is accepted, this will contain details of the acceptance.
|
359
|
+
sig do
|
360
|
+
params(accepted_at: Time, transaction_id: String).returns(
|
361
|
+
T.attached_class
|
362
|
+
)
|
363
|
+
end
|
364
|
+
def self.new(
|
365
|
+
# The time at which the transfer was accepted.
|
366
|
+
accepted_at:,
|
367
|
+
# The id of the transaction for the accepted transfer.
|
368
|
+
transaction_id:
|
369
|
+
)
|
370
|
+
end
|
371
|
+
|
372
|
+
sig { override.returns({ accepted_at: Time, transaction_id: String }) }
|
373
|
+
def to_hash
|
374
|
+
end
|
375
|
+
end
|
376
|
+
|
377
|
+
class Addenda < Increase::Internal::Type::BaseModel
|
378
|
+
OrHash =
|
379
|
+
T.type_alias do
|
380
|
+
T.any(
|
381
|
+
Increase::InboundACHTransfer::Addenda,
|
382
|
+
Increase::Internal::AnyHash
|
383
|
+
)
|
384
|
+
end
|
385
|
+
|
386
|
+
# The type of addendum.
|
387
|
+
sig do
|
388
|
+
returns(Increase::InboundACHTransfer::Addenda::Category::TaggedSymbol)
|
389
|
+
end
|
390
|
+
attr_accessor :category
|
391
|
+
|
392
|
+
# Unstructured `payment_related_information` passed through by the originator.
|
393
|
+
sig do
|
394
|
+
returns(T.nilable(Increase::InboundACHTransfer::Addenda::Freeform))
|
395
|
+
end
|
396
|
+
attr_reader :freeform
|
397
|
+
|
398
|
+
sig do
|
399
|
+
params(
|
400
|
+
freeform:
|
401
|
+
T.nilable(Increase::InboundACHTransfer::Addenda::Freeform::OrHash)
|
402
|
+
).void
|
403
|
+
end
|
404
|
+
attr_writer :freeform
|
405
|
+
|
406
|
+
# Additional information sent from the originator.
|
407
|
+
sig do
|
408
|
+
params(
|
409
|
+
category: Increase::InboundACHTransfer::Addenda::Category::OrSymbol,
|
410
|
+
freeform:
|
411
|
+
T.nilable(Increase::InboundACHTransfer::Addenda::Freeform::OrHash)
|
412
|
+
).returns(T.attached_class)
|
413
|
+
end
|
414
|
+
def self.new(
|
415
|
+
# The type of addendum.
|
416
|
+
category:,
|
417
|
+
# Unstructured `payment_related_information` passed through by the originator.
|
418
|
+
freeform:
|
419
|
+
)
|
420
|
+
end
|
421
|
+
|
422
|
+
sig do
|
423
|
+
override.returns(
|
424
|
+
{
|
425
|
+
category:
|
426
|
+
Increase::InboundACHTransfer::Addenda::Category::TaggedSymbol,
|
427
|
+
freeform:
|
428
|
+
T.nilable(Increase::InboundACHTransfer::Addenda::Freeform)
|
429
|
+
}
|
430
|
+
)
|
431
|
+
end
|
432
|
+
def to_hash
|
433
|
+
end
|
434
|
+
|
435
|
+
# The type of addendum.
|
436
|
+
module Category
|
437
|
+
extend Increase::Internal::Type::Enum
|
438
|
+
|
439
|
+
TaggedSymbol =
|
440
|
+
T.type_alias do
|
441
|
+
T.all(Symbol, Increase::InboundACHTransfer::Addenda::Category)
|
442
|
+
end
|
443
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
444
|
+
|
445
|
+
# Unstructured addendum.
|
446
|
+
FREEFORM =
|
447
|
+
T.let(
|
448
|
+
:freeform,
|
449
|
+
Increase::InboundACHTransfer::Addenda::Category::TaggedSymbol
|
450
|
+
)
|
451
|
+
|
452
|
+
sig do
|
453
|
+
override.returns(
|
454
|
+
T::Array[
|
455
|
+
Increase::InboundACHTransfer::Addenda::Category::TaggedSymbol
|
456
|
+
]
|
457
|
+
)
|
458
|
+
end
|
459
|
+
def self.values
|
460
|
+
end
|
461
|
+
end
|
462
|
+
|
463
|
+
class Freeform < Increase::Internal::Type::BaseModel
|
464
|
+
OrHash =
|
465
|
+
T.type_alias do
|
466
|
+
T.any(
|
467
|
+
Increase::InboundACHTransfer::Addenda::Freeform,
|
468
|
+
Increase::Internal::AnyHash
|
469
|
+
)
|
470
|
+
end
|
471
|
+
|
472
|
+
# Each entry represents an addendum received from the originator.
|
473
|
+
sig do
|
474
|
+
returns(
|
475
|
+
T::Array[Increase::InboundACHTransfer::Addenda::Freeform::Entry]
|
476
|
+
)
|
477
|
+
end
|
478
|
+
attr_accessor :entries
|
479
|
+
|
480
|
+
# Unstructured `payment_related_information` passed through by the originator.
|
481
|
+
sig do
|
482
|
+
params(
|
483
|
+
entries:
|
484
|
+
T::Array[
|
485
|
+
Increase::InboundACHTransfer::Addenda::Freeform::Entry::OrHash
|
486
|
+
]
|
487
|
+
).returns(T.attached_class)
|
488
|
+
end
|
489
|
+
def self.new(
|
490
|
+
# Each entry represents an addendum received from the originator.
|
491
|
+
entries:
|
492
|
+
)
|
493
|
+
end
|
494
|
+
|
495
|
+
sig do
|
496
|
+
override.returns(
|
497
|
+
{
|
498
|
+
entries:
|
499
|
+
T::Array[
|
500
|
+
Increase::InboundACHTransfer::Addenda::Freeform::Entry
|
501
|
+
]
|
502
|
+
}
|
503
|
+
)
|
504
|
+
end
|
505
|
+
def to_hash
|
506
|
+
end
|
507
|
+
|
508
|
+
class Entry < Increase::Internal::Type::BaseModel
|
509
|
+
OrHash =
|
510
|
+
T.type_alias do
|
511
|
+
T.any(
|
512
|
+
Increase::InboundACHTransfer::Addenda::Freeform::Entry,
|
513
|
+
Increase::Internal::AnyHash
|
514
|
+
)
|
515
|
+
end
|
516
|
+
|
517
|
+
# The payment related information passed in the addendum.
|
518
|
+
sig { returns(String) }
|
519
|
+
attr_accessor :payment_related_information
|
520
|
+
|
521
|
+
sig do
|
522
|
+
params(payment_related_information: String).returns(
|
523
|
+
T.attached_class
|
524
|
+
)
|
525
|
+
end
|
526
|
+
def self.new(
|
527
|
+
# The payment related information passed in the addendum.
|
528
|
+
payment_related_information:
|
529
|
+
)
|
530
|
+
end
|
531
|
+
|
532
|
+
sig { override.returns({ payment_related_information: String }) }
|
533
|
+
def to_hash
|
534
|
+
end
|
535
|
+
end
|
536
|
+
end
|
537
|
+
end
|
538
|
+
|
539
|
+
class Decline < Increase::Internal::Type::BaseModel
|
540
|
+
OrHash =
|
541
|
+
T.type_alias do
|
542
|
+
T.any(
|
543
|
+
Increase::InboundACHTransfer::Decline,
|
544
|
+
Increase::Internal::AnyHash
|
545
|
+
)
|
546
|
+
end
|
547
|
+
|
548
|
+
# The time at which the transfer was declined.
|
549
|
+
sig { returns(Time) }
|
550
|
+
attr_accessor :declined_at
|
551
|
+
|
552
|
+
# The id of the transaction for the declined transfer.
|
553
|
+
sig { returns(String) }
|
554
|
+
attr_accessor :declined_transaction_id
|
555
|
+
|
556
|
+
# The reason for the transfer decline.
|
557
|
+
sig do
|
558
|
+
returns(Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol)
|
559
|
+
end
|
560
|
+
attr_accessor :reason
|
561
|
+
|
562
|
+
# If your transfer is declined, this will contain details of the decline.
|
563
|
+
sig do
|
564
|
+
params(
|
565
|
+
declined_at: Time,
|
566
|
+
declined_transaction_id: String,
|
567
|
+
reason: Increase::InboundACHTransfer::Decline::Reason::OrSymbol
|
568
|
+
).returns(T.attached_class)
|
569
|
+
end
|
570
|
+
def self.new(
|
571
|
+
# The time at which the transfer was declined.
|
572
|
+
declined_at:,
|
573
|
+
# The id of the transaction for the declined transfer.
|
574
|
+
declined_transaction_id:,
|
575
|
+
# The reason for the transfer decline.
|
576
|
+
reason:
|
577
|
+
)
|
578
|
+
end
|
579
|
+
|
580
|
+
sig do
|
581
|
+
override.returns(
|
582
|
+
{
|
583
|
+
declined_at: Time,
|
584
|
+
declined_transaction_id: String,
|
585
|
+
reason:
|
586
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
587
|
+
}
|
588
|
+
)
|
589
|
+
end
|
590
|
+
def to_hash
|
591
|
+
end
|
592
|
+
|
593
|
+
# The reason for the transfer decline.
|
594
|
+
module Reason
|
595
|
+
extend Increase::Internal::Type::Enum
|
596
|
+
|
597
|
+
TaggedSymbol =
|
598
|
+
T.type_alias do
|
599
|
+
T.all(Symbol, Increase::InboundACHTransfer::Decline::Reason)
|
600
|
+
end
|
601
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
602
|
+
|
603
|
+
# The account number is canceled.
|
604
|
+
ACH_ROUTE_CANCELED =
|
605
|
+
T.let(
|
606
|
+
:ach_route_canceled,
|
607
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
608
|
+
)
|
609
|
+
|
610
|
+
# The account number is disabled.
|
611
|
+
ACH_ROUTE_DISABLED =
|
612
|
+
T.let(
|
613
|
+
:ach_route_disabled,
|
614
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
615
|
+
)
|
616
|
+
|
617
|
+
# The transaction would cause an Increase limit to be exceeded.
|
618
|
+
BREACHES_LIMIT =
|
619
|
+
T.let(
|
620
|
+
:breaches_limit,
|
621
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
622
|
+
)
|
623
|
+
|
624
|
+
# The account's entity is not active.
|
625
|
+
ENTITY_NOT_ACTIVE =
|
626
|
+
T.let(
|
627
|
+
:entity_not_active,
|
628
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
629
|
+
)
|
630
|
+
|
631
|
+
# Your account is inactive.
|
632
|
+
GROUP_LOCKED =
|
633
|
+
T.let(
|
634
|
+
:group_locked,
|
635
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
636
|
+
)
|
637
|
+
|
638
|
+
# The transaction is not allowed per Increase's terms.
|
639
|
+
TRANSACTION_NOT_ALLOWED =
|
640
|
+
T.let(
|
641
|
+
:transaction_not_allowed,
|
642
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
643
|
+
)
|
644
|
+
|
645
|
+
# Your integration declined this transfer via the API.
|
646
|
+
USER_INITIATED =
|
647
|
+
T.let(
|
648
|
+
:user_initiated,
|
649
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
650
|
+
)
|
651
|
+
|
652
|
+
# Your account contains insufficient funds.
|
653
|
+
INSUFFICIENT_FUNDS =
|
654
|
+
T.let(
|
655
|
+
:insufficient_funds,
|
656
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
657
|
+
)
|
658
|
+
|
659
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
660
|
+
RETURNED_PER_ODFI_REQUEST =
|
661
|
+
T.let(
|
662
|
+
:returned_per_odfi_request,
|
663
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
664
|
+
)
|
665
|
+
|
666
|
+
# The customer no longer authorizes this transaction.
|
667
|
+
AUTHORIZATION_REVOKED_BY_CUSTOMER =
|
668
|
+
T.let(
|
669
|
+
:authorization_revoked_by_customer,
|
670
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
671
|
+
)
|
672
|
+
|
673
|
+
# The customer asked for the payment to be stopped.
|
674
|
+
PAYMENT_STOPPED =
|
675
|
+
T.let(
|
676
|
+
:payment_stopped,
|
677
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
678
|
+
)
|
679
|
+
|
680
|
+
# The customer advises that the debit was unauthorized.
|
681
|
+
CUSTOMER_ADVISED_UNAUTHORIZED_IMPROPER_INELIGIBLE_OR_INCOMPLETE =
|
682
|
+
T.let(
|
683
|
+
:customer_advised_unauthorized_improper_ineligible_or_incomplete,
|
684
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
685
|
+
)
|
686
|
+
|
687
|
+
# The payee is deceased.
|
688
|
+
REPRESENTATIVE_PAYEE_DECEASED_OR_UNABLE_TO_CONTINUE_IN_THAT_CAPACITY =
|
689
|
+
T.let(
|
690
|
+
:representative_payee_deceased_or_unable_to_continue_in_that_capacity,
|
691
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
692
|
+
)
|
693
|
+
|
694
|
+
# The account holder is deceased.
|
695
|
+
BENEFICIARY_OR_ACCOUNT_HOLDER_DECEASED =
|
696
|
+
T.let(
|
697
|
+
:beneficiary_or_account_holder_deceased,
|
698
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
699
|
+
)
|
700
|
+
|
701
|
+
# The customer refused a credit entry.
|
702
|
+
CREDIT_ENTRY_REFUSED_BY_RECEIVER =
|
703
|
+
T.let(
|
704
|
+
:credit_entry_refused_by_receiver,
|
705
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
706
|
+
)
|
707
|
+
|
708
|
+
# The account holder identified this transaction as a duplicate.
|
709
|
+
DUPLICATE_ENTRY =
|
710
|
+
T.let(
|
711
|
+
:duplicate_entry,
|
712
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
713
|
+
)
|
714
|
+
|
715
|
+
# The corporate customer no longer authorizes this transaction.
|
716
|
+
CORPORATE_CUSTOMER_ADVISED_NOT_AUTHORIZED =
|
717
|
+
T.let(
|
718
|
+
:corporate_customer_advised_not_authorized,
|
719
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
720
|
+
)
|
721
|
+
|
722
|
+
sig do
|
723
|
+
override.returns(
|
724
|
+
T::Array[
|
725
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
726
|
+
]
|
727
|
+
)
|
728
|
+
end
|
729
|
+
def self.values
|
730
|
+
end
|
731
|
+
end
|
732
|
+
end
|
733
|
+
|
734
|
+
# The direction of the transfer.
|
735
|
+
module Direction
|
736
|
+
extend Increase::Internal::Type::Enum
|
737
|
+
|
738
|
+
TaggedSymbol =
|
739
|
+
T.type_alias do
|
740
|
+
T.all(Symbol, Increase::InboundACHTransfer::Direction)
|
741
|
+
end
|
742
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
743
|
+
|
744
|
+
# Credit
|
745
|
+
CREDIT =
|
746
|
+
T.let(:credit, Increase::InboundACHTransfer::Direction::TaggedSymbol)
|
747
|
+
|
748
|
+
# Debit
|
749
|
+
DEBIT =
|
750
|
+
T.let(:debit, Increase::InboundACHTransfer::Direction::TaggedSymbol)
|
751
|
+
|
752
|
+
sig do
|
753
|
+
override.returns(
|
754
|
+
T::Array[Increase::InboundACHTransfer::Direction::TaggedSymbol]
|
755
|
+
)
|
756
|
+
end
|
757
|
+
def self.values
|
758
|
+
end
|
759
|
+
end
|
760
|
+
|
761
|
+
# The settlement schedule the transfer is expected to follow.
|
762
|
+
module ExpectedSettlementSchedule
|
763
|
+
extend Increase::Internal::Type::Enum
|
764
|
+
|
765
|
+
TaggedSymbol =
|
766
|
+
T.type_alias do
|
767
|
+
T.all(
|
768
|
+
Symbol,
|
769
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule
|
770
|
+
)
|
771
|
+
end
|
772
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
773
|
+
|
774
|
+
# The transfer is expected to settle same-day.
|
775
|
+
SAME_DAY =
|
776
|
+
T.let(
|
777
|
+
:same_day,
|
778
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule::TaggedSymbol
|
779
|
+
)
|
780
|
+
|
781
|
+
# The transfer is expected to settle on a future date.
|
782
|
+
FUTURE_DATED =
|
783
|
+
T.let(
|
784
|
+
:future_dated,
|
785
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule::TaggedSymbol
|
786
|
+
)
|
787
|
+
|
788
|
+
sig do
|
789
|
+
override.returns(
|
790
|
+
T::Array[
|
791
|
+
Increase::InboundACHTransfer::ExpectedSettlementSchedule::TaggedSymbol
|
792
|
+
]
|
793
|
+
)
|
794
|
+
end
|
795
|
+
def self.values
|
796
|
+
end
|
797
|
+
end
|
798
|
+
|
799
|
+
class InternationalAddenda < Increase::Internal::Type::BaseModel
|
800
|
+
OrHash =
|
801
|
+
T.type_alias do
|
802
|
+
T.any(
|
803
|
+
Increase::InboundACHTransfer::InternationalAddenda,
|
804
|
+
Increase::Internal::AnyHash
|
805
|
+
)
|
806
|
+
end
|
807
|
+
|
808
|
+
# The [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2
|
809
|
+
# country code of the destination country.
|
810
|
+
sig { returns(String) }
|
811
|
+
attr_accessor :destination_country_code
|
812
|
+
|
813
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code for the
|
814
|
+
# destination bank account.
|
815
|
+
sig { returns(String) }
|
816
|
+
attr_accessor :destination_currency_code
|
817
|
+
|
818
|
+
# A description of how the foreign exchange rate was calculated.
|
819
|
+
sig do
|
820
|
+
returns(
|
821
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::TaggedSymbol
|
822
|
+
)
|
823
|
+
end
|
824
|
+
attr_accessor :foreign_exchange_indicator
|
825
|
+
|
826
|
+
# Depending on the `foreign_exchange_reference_indicator`, an exchange rate or a
|
827
|
+
# reference to a well-known rate.
|
828
|
+
sig { returns(T.nilable(String)) }
|
829
|
+
attr_accessor :foreign_exchange_reference
|
830
|
+
|
831
|
+
# An instruction of how to interpret the `foreign_exchange_reference` field for
|
832
|
+
# this Transaction.
|
833
|
+
sig do
|
834
|
+
returns(
|
835
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::TaggedSymbol
|
836
|
+
)
|
837
|
+
end
|
838
|
+
attr_accessor :foreign_exchange_reference_indicator
|
839
|
+
|
840
|
+
# The amount in the minor unit of the foreign payment currency. For dollars, for
|
841
|
+
# example, this is cents.
|
842
|
+
sig { returns(Integer) }
|
843
|
+
attr_accessor :foreign_payment_amount
|
844
|
+
|
845
|
+
# A reference number in the foreign banking infrastructure.
|
846
|
+
sig { returns(T.nilable(String)) }
|
847
|
+
attr_accessor :foreign_trace_number
|
848
|
+
|
849
|
+
# The type of transfer. Set by the originator.
|
850
|
+
sig do
|
851
|
+
returns(
|
852
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
853
|
+
)
|
854
|
+
end
|
855
|
+
attr_accessor :international_transaction_type_code
|
856
|
+
|
857
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code for the
|
858
|
+
# originating bank account.
|
859
|
+
sig { returns(String) }
|
860
|
+
attr_accessor :originating_currency_code
|
861
|
+
|
862
|
+
# The [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2
|
863
|
+
# country code of the originating branch country.
|
864
|
+
sig { returns(String) }
|
865
|
+
attr_accessor :originating_depository_financial_institution_branch_country
|
866
|
+
|
867
|
+
# An identifier for the originating bank. One of an International Bank Account
|
868
|
+
# Number (IBAN) bank identifier, SWIFT Bank Identification Code (BIC), or a
|
869
|
+
# domestic identifier like a US Routing Number.
|
870
|
+
sig { returns(String) }
|
871
|
+
attr_accessor :originating_depository_financial_institution_id
|
872
|
+
|
873
|
+
# An instruction of how to interpret the
|
874
|
+
# `originating_depository_financial_institution_id` field for this Transaction.
|
875
|
+
sig do
|
876
|
+
returns(
|
877
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
878
|
+
)
|
879
|
+
end
|
880
|
+
attr_accessor :originating_depository_financial_institution_id_qualifier
|
881
|
+
|
882
|
+
# The name of the originating bank. Sometimes this will refer to an American bank
|
883
|
+
# and obscure the correspondent foreign bank.
|
884
|
+
sig { returns(String) }
|
885
|
+
attr_accessor :originating_depository_financial_institution_name
|
886
|
+
|
887
|
+
# A portion of the originator address. This may be incomplete.
|
888
|
+
sig { returns(String) }
|
889
|
+
attr_accessor :originator_city
|
890
|
+
|
891
|
+
# A portion of the originator address. The
|
892
|
+
# [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2 country
|
893
|
+
# code of the originator country.
|
894
|
+
sig { returns(String) }
|
895
|
+
attr_accessor :originator_country
|
896
|
+
|
897
|
+
# An identifier for the originating company. This is generally stable across
|
898
|
+
# multiple ACH transfers.
|
899
|
+
sig { returns(String) }
|
900
|
+
attr_accessor :originator_identification
|
901
|
+
|
902
|
+
# Either the name of the originator or an intermediary money transmitter.
|
903
|
+
sig { returns(String) }
|
904
|
+
attr_accessor :originator_name
|
905
|
+
|
906
|
+
# A portion of the originator address. This may be incomplete.
|
907
|
+
sig { returns(T.nilable(String)) }
|
908
|
+
attr_accessor :originator_postal_code
|
909
|
+
|
910
|
+
# A portion of the originator address. This may be incomplete.
|
911
|
+
sig { returns(T.nilable(String)) }
|
912
|
+
attr_accessor :originator_state_or_province
|
913
|
+
|
914
|
+
# A portion of the originator address. This may be incomplete.
|
915
|
+
sig { returns(String) }
|
916
|
+
attr_accessor :originator_street_address
|
917
|
+
|
918
|
+
# A description field set by the originator.
|
919
|
+
sig { returns(T.nilable(String)) }
|
920
|
+
attr_accessor :payment_related_information
|
921
|
+
|
922
|
+
# A description field set by the originator.
|
923
|
+
sig { returns(T.nilable(String)) }
|
924
|
+
attr_accessor :payment_related_information2
|
925
|
+
|
926
|
+
# A portion of the receiver address. This may be incomplete.
|
927
|
+
sig { returns(String) }
|
928
|
+
attr_accessor :receiver_city
|
929
|
+
|
930
|
+
# A portion of the receiver address. The
|
931
|
+
# [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2 country
|
932
|
+
# code of the receiver country.
|
933
|
+
sig { returns(String) }
|
934
|
+
attr_accessor :receiver_country
|
935
|
+
|
936
|
+
# An identification number the originator uses for the receiver.
|
937
|
+
sig { returns(T.nilable(String)) }
|
938
|
+
attr_accessor :receiver_identification_number
|
939
|
+
|
940
|
+
# A portion of the receiver address. This may be incomplete.
|
941
|
+
sig { returns(T.nilable(String)) }
|
942
|
+
attr_accessor :receiver_postal_code
|
943
|
+
|
944
|
+
# A portion of the receiver address. This may be incomplete.
|
945
|
+
sig { returns(T.nilable(String)) }
|
946
|
+
attr_accessor :receiver_state_or_province
|
947
|
+
|
948
|
+
# A portion of the receiver address. This may be incomplete.
|
949
|
+
sig { returns(String) }
|
950
|
+
attr_accessor :receiver_street_address
|
951
|
+
|
952
|
+
# The name of the receiver of the transfer. This is not verified by Increase.
|
953
|
+
sig { returns(String) }
|
954
|
+
attr_accessor :receiving_company_or_individual_name
|
955
|
+
|
956
|
+
# The [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2
|
957
|
+
# country code of the receiving bank country.
|
958
|
+
sig { returns(String) }
|
959
|
+
attr_accessor :receiving_depository_financial_institution_country
|
960
|
+
|
961
|
+
# An identifier for the receiving bank. One of an International Bank Account
|
962
|
+
# Number (IBAN) bank identifier, SWIFT Bank Identification Code (BIC), or a
|
963
|
+
# domestic identifier like a US Routing Number.
|
964
|
+
sig { returns(String) }
|
965
|
+
attr_accessor :receiving_depository_financial_institution_id
|
966
|
+
|
967
|
+
# An instruction of how to interpret the
|
968
|
+
# `receiving_depository_financial_institution_id` field for this Transaction.
|
969
|
+
sig do
|
970
|
+
returns(
|
971
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
972
|
+
)
|
973
|
+
end
|
974
|
+
attr_accessor :receiving_depository_financial_institution_id_qualifier
|
975
|
+
|
976
|
+
# The name of the receiving bank, as set by the sending financial institution.
|
977
|
+
sig { returns(String) }
|
978
|
+
attr_accessor :receiving_depository_financial_institution_name
|
979
|
+
|
980
|
+
# If the Inbound ACH Transfer has a Standard Entry Class Code of IAT, this will
|
981
|
+
# contain fields pertaining to the International ACH Transaction.
|
982
|
+
sig do
|
983
|
+
params(
|
984
|
+
destination_country_code: String,
|
985
|
+
destination_currency_code: String,
|
986
|
+
foreign_exchange_indicator:
|
987
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::OrSymbol,
|
988
|
+
foreign_exchange_reference: T.nilable(String),
|
989
|
+
foreign_exchange_reference_indicator:
|
990
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::OrSymbol,
|
991
|
+
foreign_payment_amount: Integer,
|
992
|
+
foreign_trace_number: T.nilable(String),
|
993
|
+
international_transaction_type_code:
|
994
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::OrSymbol,
|
995
|
+
originating_currency_code: String,
|
996
|
+
originating_depository_financial_institution_branch_country: String,
|
997
|
+
originating_depository_financial_institution_id: String,
|
998
|
+
originating_depository_financial_institution_id_qualifier:
|
999
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::OrSymbol,
|
1000
|
+
originating_depository_financial_institution_name: String,
|
1001
|
+
originator_city: String,
|
1002
|
+
originator_country: String,
|
1003
|
+
originator_identification: String,
|
1004
|
+
originator_name: String,
|
1005
|
+
originator_postal_code: T.nilable(String),
|
1006
|
+
originator_state_or_province: T.nilable(String),
|
1007
|
+
originator_street_address: String,
|
1008
|
+
payment_related_information: T.nilable(String),
|
1009
|
+
payment_related_information2: T.nilable(String),
|
1010
|
+
receiver_city: String,
|
1011
|
+
receiver_country: String,
|
1012
|
+
receiver_identification_number: T.nilable(String),
|
1013
|
+
receiver_postal_code: T.nilable(String),
|
1014
|
+
receiver_state_or_province: T.nilable(String),
|
1015
|
+
receiver_street_address: String,
|
1016
|
+
receiving_company_or_individual_name: String,
|
1017
|
+
receiving_depository_financial_institution_country: String,
|
1018
|
+
receiving_depository_financial_institution_id: String,
|
1019
|
+
receiving_depository_financial_institution_id_qualifier:
|
1020
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::OrSymbol,
|
1021
|
+
receiving_depository_financial_institution_name: String
|
1022
|
+
).returns(T.attached_class)
|
1023
|
+
end
|
1024
|
+
def self.new(
|
1025
|
+
# The [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2
|
1026
|
+
# country code of the destination country.
|
1027
|
+
destination_country_code:,
|
1028
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code for the
|
1029
|
+
# destination bank account.
|
1030
|
+
destination_currency_code:,
|
1031
|
+
# A description of how the foreign exchange rate was calculated.
|
1032
|
+
foreign_exchange_indicator:,
|
1033
|
+
# Depending on the `foreign_exchange_reference_indicator`, an exchange rate or a
|
1034
|
+
# reference to a well-known rate.
|
1035
|
+
foreign_exchange_reference:,
|
1036
|
+
# An instruction of how to interpret the `foreign_exchange_reference` field for
|
1037
|
+
# this Transaction.
|
1038
|
+
foreign_exchange_reference_indicator:,
|
1039
|
+
# The amount in the minor unit of the foreign payment currency. For dollars, for
|
1040
|
+
# example, this is cents.
|
1041
|
+
foreign_payment_amount:,
|
1042
|
+
# A reference number in the foreign banking infrastructure.
|
1043
|
+
foreign_trace_number:,
|
1044
|
+
# The type of transfer. Set by the originator.
|
1045
|
+
international_transaction_type_code:,
|
1046
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code for the
|
1047
|
+
# originating bank account.
|
1048
|
+
originating_currency_code:,
|
1049
|
+
# The [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2
|
1050
|
+
# country code of the originating branch country.
|
1051
|
+
originating_depository_financial_institution_branch_country:,
|
1052
|
+
# An identifier for the originating bank. One of an International Bank Account
|
1053
|
+
# Number (IBAN) bank identifier, SWIFT Bank Identification Code (BIC), or a
|
1054
|
+
# domestic identifier like a US Routing Number.
|
1055
|
+
originating_depository_financial_institution_id:,
|
1056
|
+
# An instruction of how to interpret the
|
1057
|
+
# `originating_depository_financial_institution_id` field for this Transaction.
|
1058
|
+
originating_depository_financial_institution_id_qualifier:,
|
1059
|
+
# The name of the originating bank. Sometimes this will refer to an American bank
|
1060
|
+
# and obscure the correspondent foreign bank.
|
1061
|
+
originating_depository_financial_institution_name:,
|
1062
|
+
# A portion of the originator address. This may be incomplete.
|
1063
|
+
originator_city:,
|
1064
|
+
# A portion of the originator address. The
|
1065
|
+
# [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2 country
|
1066
|
+
# code of the originator country.
|
1067
|
+
originator_country:,
|
1068
|
+
# An identifier for the originating company. This is generally stable across
|
1069
|
+
# multiple ACH transfers.
|
1070
|
+
originator_identification:,
|
1071
|
+
# Either the name of the originator or an intermediary money transmitter.
|
1072
|
+
originator_name:,
|
1073
|
+
# A portion of the originator address. This may be incomplete.
|
1074
|
+
originator_postal_code:,
|
1075
|
+
# A portion of the originator address. This may be incomplete.
|
1076
|
+
originator_state_or_province:,
|
1077
|
+
# A portion of the originator address. This may be incomplete.
|
1078
|
+
originator_street_address:,
|
1079
|
+
# A description field set by the originator.
|
1080
|
+
payment_related_information:,
|
1081
|
+
# A description field set by the originator.
|
1082
|
+
payment_related_information2:,
|
1083
|
+
# A portion of the receiver address. This may be incomplete.
|
1084
|
+
receiver_city:,
|
1085
|
+
# A portion of the receiver address. The
|
1086
|
+
# [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2 country
|
1087
|
+
# code of the receiver country.
|
1088
|
+
receiver_country:,
|
1089
|
+
# An identification number the originator uses for the receiver.
|
1090
|
+
receiver_identification_number:,
|
1091
|
+
# A portion of the receiver address. This may be incomplete.
|
1092
|
+
receiver_postal_code:,
|
1093
|
+
# A portion of the receiver address. This may be incomplete.
|
1094
|
+
receiver_state_or_province:,
|
1095
|
+
# A portion of the receiver address. This may be incomplete.
|
1096
|
+
receiver_street_address:,
|
1097
|
+
# The name of the receiver of the transfer. This is not verified by Increase.
|
1098
|
+
receiving_company_or_individual_name:,
|
1099
|
+
# The [ISO 3166](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), Alpha-2
|
1100
|
+
# country code of the receiving bank country.
|
1101
|
+
receiving_depository_financial_institution_country:,
|
1102
|
+
# An identifier for the receiving bank. One of an International Bank Account
|
1103
|
+
# Number (IBAN) bank identifier, SWIFT Bank Identification Code (BIC), or a
|
1104
|
+
# domestic identifier like a US Routing Number.
|
1105
|
+
receiving_depository_financial_institution_id:,
|
1106
|
+
# An instruction of how to interpret the
|
1107
|
+
# `receiving_depository_financial_institution_id` field for this Transaction.
|
1108
|
+
receiving_depository_financial_institution_id_qualifier:,
|
1109
|
+
# The name of the receiving bank, as set by the sending financial institution.
|
1110
|
+
receiving_depository_financial_institution_name:
|
1111
|
+
)
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
sig do
|
1115
|
+
override.returns(
|
1116
|
+
{
|
1117
|
+
destination_country_code: String,
|
1118
|
+
destination_currency_code: String,
|
1119
|
+
foreign_exchange_indicator:
|
1120
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::TaggedSymbol,
|
1121
|
+
foreign_exchange_reference: T.nilable(String),
|
1122
|
+
foreign_exchange_reference_indicator:
|
1123
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::TaggedSymbol,
|
1124
|
+
foreign_payment_amount: Integer,
|
1125
|
+
foreign_trace_number: T.nilable(String),
|
1126
|
+
international_transaction_type_code:
|
1127
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol,
|
1128
|
+
originating_currency_code: String,
|
1129
|
+
originating_depository_financial_institution_branch_country:
|
1130
|
+
String,
|
1131
|
+
originating_depository_financial_institution_id: String,
|
1132
|
+
originating_depository_financial_institution_id_qualifier:
|
1133
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol,
|
1134
|
+
originating_depository_financial_institution_name: String,
|
1135
|
+
originator_city: String,
|
1136
|
+
originator_country: String,
|
1137
|
+
originator_identification: String,
|
1138
|
+
originator_name: String,
|
1139
|
+
originator_postal_code: T.nilable(String),
|
1140
|
+
originator_state_or_province: T.nilable(String),
|
1141
|
+
originator_street_address: String,
|
1142
|
+
payment_related_information: T.nilable(String),
|
1143
|
+
payment_related_information2: T.nilable(String),
|
1144
|
+
receiver_city: String,
|
1145
|
+
receiver_country: String,
|
1146
|
+
receiver_identification_number: T.nilable(String),
|
1147
|
+
receiver_postal_code: T.nilable(String),
|
1148
|
+
receiver_state_or_province: T.nilable(String),
|
1149
|
+
receiver_street_address: String,
|
1150
|
+
receiving_company_or_individual_name: String,
|
1151
|
+
receiving_depository_financial_institution_country: String,
|
1152
|
+
receiving_depository_financial_institution_id: String,
|
1153
|
+
receiving_depository_financial_institution_id_qualifier:
|
1154
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol,
|
1155
|
+
receiving_depository_financial_institution_name: String
|
1156
|
+
}
|
1157
|
+
)
|
1158
|
+
end
|
1159
|
+
def to_hash
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
# A description of how the foreign exchange rate was calculated.
|
1163
|
+
module ForeignExchangeIndicator
|
1164
|
+
extend Increase::Internal::Type::Enum
|
1165
|
+
|
1166
|
+
TaggedSymbol =
|
1167
|
+
T.type_alias do
|
1168
|
+
T.all(
|
1169
|
+
Symbol,
|
1170
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator
|
1171
|
+
)
|
1172
|
+
end
|
1173
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1174
|
+
|
1175
|
+
# The originator chose an amount in their own currency. The settled amount in USD was converted using the exchange rate.
|
1176
|
+
FIXED_TO_VARIABLE =
|
1177
|
+
T.let(
|
1178
|
+
:fixed_to_variable,
|
1179
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::TaggedSymbol
|
1180
|
+
)
|
1181
|
+
|
1182
|
+
# The originator chose an amount to settle in USD. The originator's amount was variable; known only after the foreign exchange conversion.
|
1183
|
+
VARIABLE_TO_FIXED =
|
1184
|
+
T.let(
|
1185
|
+
:variable_to_fixed,
|
1186
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::TaggedSymbol
|
1187
|
+
)
|
1188
|
+
|
1189
|
+
# The amount was originated and settled as a fixed amount in USD. There is no foreign exchange conversion.
|
1190
|
+
FIXED_TO_FIXED =
|
1191
|
+
T.let(
|
1192
|
+
:fixed_to_fixed,
|
1193
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::TaggedSymbol
|
1194
|
+
)
|
1195
|
+
|
1196
|
+
sig do
|
1197
|
+
override.returns(
|
1198
|
+
T::Array[
|
1199
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeIndicator::TaggedSymbol
|
1200
|
+
]
|
1201
|
+
)
|
1202
|
+
end
|
1203
|
+
def self.values
|
1204
|
+
end
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
# An instruction of how to interpret the `foreign_exchange_reference` field for
|
1208
|
+
# this Transaction.
|
1209
|
+
module ForeignExchangeReferenceIndicator
|
1210
|
+
extend Increase::Internal::Type::Enum
|
1211
|
+
|
1212
|
+
TaggedSymbol =
|
1213
|
+
T.type_alias do
|
1214
|
+
T.all(
|
1215
|
+
Symbol,
|
1216
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator
|
1217
|
+
)
|
1218
|
+
end
|
1219
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1220
|
+
|
1221
|
+
# The ACH file contains a foreign exchange rate.
|
1222
|
+
FOREIGN_EXCHANGE_RATE =
|
1223
|
+
T.let(
|
1224
|
+
:foreign_exchange_rate,
|
1225
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::TaggedSymbol
|
1226
|
+
)
|
1227
|
+
|
1228
|
+
# The ACH file contains a reference to a well-known foreign exchange rate.
|
1229
|
+
FOREIGN_EXCHANGE_REFERENCE_NUMBER =
|
1230
|
+
T.let(
|
1231
|
+
:foreign_exchange_reference_number,
|
1232
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::TaggedSymbol
|
1233
|
+
)
|
1234
|
+
|
1235
|
+
# There is no foreign exchange for this transfer, so the `foreign_exchange_reference` field is blank.
|
1236
|
+
BLANK =
|
1237
|
+
T.let(
|
1238
|
+
:blank,
|
1239
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::TaggedSymbol
|
1240
|
+
)
|
1241
|
+
|
1242
|
+
sig do
|
1243
|
+
override.returns(
|
1244
|
+
T::Array[
|
1245
|
+
Increase::InboundACHTransfer::InternationalAddenda::ForeignExchangeReferenceIndicator::TaggedSymbol
|
1246
|
+
]
|
1247
|
+
)
|
1248
|
+
end
|
1249
|
+
def self.values
|
1250
|
+
end
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
# The type of transfer. Set by the originator.
|
1254
|
+
module InternationalTransactionTypeCode
|
1255
|
+
extend Increase::Internal::Type::Enum
|
1256
|
+
|
1257
|
+
TaggedSymbol =
|
1258
|
+
T.type_alias do
|
1259
|
+
T.all(
|
1260
|
+
Symbol,
|
1261
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode
|
1262
|
+
)
|
1263
|
+
end
|
1264
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1265
|
+
|
1266
|
+
# Sent as `ANN` in the Nacha file.
|
1267
|
+
ANNUITY =
|
1268
|
+
T.let(
|
1269
|
+
:annuity,
|
1270
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1271
|
+
)
|
1272
|
+
|
1273
|
+
# Sent as `BUS` in the Nacha file.
|
1274
|
+
BUSINESS_OR_COMMERCIAL =
|
1275
|
+
T.let(
|
1276
|
+
:business_or_commercial,
|
1277
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1278
|
+
)
|
1279
|
+
|
1280
|
+
# Sent as `DEP` in the Nacha file.
|
1281
|
+
DEPOSIT =
|
1282
|
+
T.let(
|
1283
|
+
:deposit,
|
1284
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1285
|
+
)
|
1286
|
+
|
1287
|
+
# Sent as `LOA` in the Nacha file.
|
1288
|
+
LOAN =
|
1289
|
+
T.let(
|
1290
|
+
:loan,
|
1291
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1292
|
+
)
|
1293
|
+
|
1294
|
+
# Sent as `MIS` in the Nacha file.
|
1295
|
+
MISCELLANEOUS =
|
1296
|
+
T.let(
|
1297
|
+
:miscellaneous,
|
1298
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1299
|
+
)
|
1300
|
+
|
1301
|
+
# Sent as `MOR` in the Nacha file.
|
1302
|
+
MORTGAGE =
|
1303
|
+
T.let(
|
1304
|
+
:mortgage,
|
1305
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1306
|
+
)
|
1307
|
+
|
1308
|
+
# Sent as `PEN` in the Nacha file.
|
1309
|
+
PENSION =
|
1310
|
+
T.let(
|
1311
|
+
:pension,
|
1312
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1313
|
+
)
|
1314
|
+
|
1315
|
+
# Sent as `REM` in the Nacha file.
|
1316
|
+
REMITTANCE =
|
1317
|
+
T.let(
|
1318
|
+
:remittance,
|
1319
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1320
|
+
)
|
1321
|
+
|
1322
|
+
# Sent as `RLS` in the Nacha file.
|
1323
|
+
RENT_OR_LEASE =
|
1324
|
+
T.let(
|
1325
|
+
:rent_or_lease,
|
1326
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1327
|
+
)
|
1328
|
+
|
1329
|
+
# Sent as `SAL` in the Nacha file.
|
1330
|
+
SALARY_OR_PAYROLL =
|
1331
|
+
T.let(
|
1332
|
+
:salary_or_payroll,
|
1333
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1334
|
+
)
|
1335
|
+
|
1336
|
+
# Sent as `TAX` in the Nacha file.
|
1337
|
+
TAX =
|
1338
|
+
T.let(
|
1339
|
+
:tax,
|
1340
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1341
|
+
)
|
1342
|
+
|
1343
|
+
# Sent as `ARC` in the Nacha file.
|
1344
|
+
ACCOUNTS_RECEIVABLE =
|
1345
|
+
T.let(
|
1346
|
+
:accounts_receivable,
|
1347
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1348
|
+
)
|
1349
|
+
|
1350
|
+
# Sent as `BOC` in the Nacha file.
|
1351
|
+
BACK_OFFICE_CONVERSION =
|
1352
|
+
T.let(
|
1353
|
+
:back_office_conversion,
|
1354
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1355
|
+
)
|
1356
|
+
|
1357
|
+
# Sent as `MTE` in the Nacha file.
|
1358
|
+
MACHINE_TRANSFER =
|
1359
|
+
T.let(
|
1360
|
+
:machine_transfer,
|
1361
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1362
|
+
)
|
1363
|
+
|
1364
|
+
# Sent as `POP` in the Nacha file.
|
1365
|
+
POINT_OF_PURCHASE =
|
1366
|
+
T.let(
|
1367
|
+
:point_of_purchase,
|
1368
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1369
|
+
)
|
1370
|
+
|
1371
|
+
# Sent as `POS` in the Nacha file.
|
1372
|
+
POINT_OF_SALE =
|
1373
|
+
T.let(
|
1374
|
+
:point_of_sale,
|
1375
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1376
|
+
)
|
1377
|
+
|
1378
|
+
# Sent as `RCK` in the Nacha file.
|
1379
|
+
REPRESENTED_CHECK =
|
1380
|
+
T.let(
|
1381
|
+
:represented_check,
|
1382
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1383
|
+
)
|
1384
|
+
|
1385
|
+
# Sent as `SHR` in the Nacha file.
|
1386
|
+
SHARED_NETWORK_TRANSACTION =
|
1387
|
+
T.let(
|
1388
|
+
:shared_network_transaction,
|
1389
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1390
|
+
)
|
1391
|
+
|
1392
|
+
# Sent as `TEL` in the Nacha file.
|
1393
|
+
TELPHONE_INITIATED =
|
1394
|
+
T.let(
|
1395
|
+
:telphone_initiated,
|
1396
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1397
|
+
)
|
1398
|
+
|
1399
|
+
# Sent as `WEB` in the Nacha file.
|
1400
|
+
INTERNET_INITIATED =
|
1401
|
+
T.let(
|
1402
|
+
:internet_initiated,
|
1403
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1404
|
+
)
|
1405
|
+
|
1406
|
+
sig do
|
1407
|
+
override.returns(
|
1408
|
+
T::Array[
|
1409
|
+
Increase::InboundACHTransfer::InternationalAddenda::InternationalTransactionTypeCode::TaggedSymbol
|
1410
|
+
]
|
1411
|
+
)
|
1412
|
+
end
|
1413
|
+
def self.values
|
1414
|
+
end
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
# An instruction of how to interpret the
|
1418
|
+
# `originating_depository_financial_institution_id` field for this Transaction.
|
1419
|
+
module OriginatingDepositoryFinancialInstitutionIDQualifier
|
1420
|
+
extend Increase::Internal::Type::Enum
|
1421
|
+
|
1422
|
+
TaggedSymbol =
|
1423
|
+
T.type_alias do
|
1424
|
+
T.all(
|
1425
|
+
Symbol,
|
1426
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier
|
1427
|
+
)
|
1428
|
+
end
|
1429
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1430
|
+
|
1431
|
+
# A domestic clearing system number. In the US, for example, this is the American Banking Association (ABA) routing number.
|
1432
|
+
NATIONAL_CLEARING_SYSTEM_NUMBER =
|
1433
|
+
T.let(
|
1434
|
+
:national_clearing_system_number,
|
1435
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1436
|
+
)
|
1437
|
+
|
1438
|
+
# The SWIFT Bank Identifier Code (BIC) of the bank.
|
1439
|
+
BIC_CODE =
|
1440
|
+
T.let(
|
1441
|
+
:bic_code,
|
1442
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1443
|
+
)
|
1444
|
+
|
1445
|
+
# An International Bank Account Number.
|
1446
|
+
IBAN =
|
1447
|
+
T.let(
|
1448
|
+
:iban,
|
1449
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1450
|
+
)
|
1451
|
+
|
1452
|
+
sig do
|
1453
|
+
override.returns(
|
1454
|
+
T::Array[
|
1455
|
+
Increase::InboundACHTransfer::InternationalAddenda::OriginatingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1456
|
+
]
|
1457
|
+
)
|
1458
|
+
end
|
1459
|
+
def self.values
|
1460
|
+
end
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
# An instruction of how to interpret the
|
1464
|
+
# `receiving_depository_financial_institution_id` field for this Transaction.
|
1465
|
+
module ReceivingDepositoryFinancialInstitutionIDQualifier
|
1466
|
+
extend Increase::Internal::Type::Enum
|
1467
|
+
|
1468
|
+
TaggedSymbol =
|
1469
|
+
T.type_alias do
|
1470
|
+
T.all(
|
1471
|
+
Symbol,
|
1472
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier
|
1473
|
+
)
|
1474
|
+
end
|
1475
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1476
|
+
|
1477
|
+
# A domestic clearing system number. In the US, for example, this is the American Banking Association (ABA) routing number.
|
1478
|
+
NATIONAL_CLEARING_SYSTEM_NUMBER =
|
1479
|
+
T.let(
|
1480
|
+
:national_clearing_system_number,
|
1481
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1482
|
+
)
|
1483
|
+
|
1484
|
+
# The SWIFT Bank Identifier Code (BIC) of the bank.
|
1485
|
+
BIC_CODE =
|
1486
|
+
T.let(
|
1487
|
+
:bic_code,
|
1488
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1489
|
+
)
|
1490
|
+
|
1491
|
+
# An International Bank Account Number.
|
1492
|
+
IBAN =
|
1493
|
+
T.let(
|
1494
|
+
:iban,
|
1495
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1496
|
+
)
|
1497
|
+
|
1498
|
+
sig do
|
1499
|
+
override.returns(
|
1500
|
+
T::Array[
|
1501
|
+
Increase::InboundACHTransfer::InternationalAddenda::ReceivingDepositoryFinancialInstitutionIDQualifier::TaggedSymbol
|
1502
|
+
]
|
1503
|
+
)
|
1504
|
+
end
|
1505
|
+
def self.values
|
1506
|
+
end
|
1507
|
+
end
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
class NotificationOfChange < Increase::Internal::Type::BaseModel
|
1511
|
+
OrHash =
|
1512
|
+
T.type_alias do
|
1513
|
+
T.any(
|
1514
|
+
Increase::InboundACHTransfer::NotificationOfChange,
|
1515
|
+
Increase::Internal::AnyHash
|
1516
|
+
)
|
1517
|
+
end
|
1518
|
+
|
1519
|
+
# The new account number provided in the notification of change.
|
1520
|
+
sig { returns(T.nilable(String)) }
|
1521
|
+
attr_accessor :updated_account_number
|
1522
|
+
|
1523
|
+
# The new account number provided in the notification of change.
|
1524
|
+
sig { returns(T.nilable(String)) }
|
1525
|
+
attr_accessor :updated_routing_number
|
1526
|
+
|
1527
|
+
# If you initiate a notification of change in response to the transfer, this will
|
1528
|
+
# contain its details.
|
1529
|
+
sig do
|
1530
|
+
params(
|
1531
|
+
updated_account_number: T.nilable(String),
|
1532
|
+
updated_routing_number: T.nilable(String)
|
1533
|
+
).returns(T.attached_class)
|
1534
|
+
end
|
1535
|
+
def self.new(
|
1536
|
+
# The new account number provided in the notification of change.
|
1537
|
+
updated_account_number:,
|
1538
|
+
# The new account number provided in the notification of change.
|
1539
|
+
updated_routing_number:
|
1540
|
+
)
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
sig do
|
1544
|
+
override.returns(
|
1545
|
+
{
|
1546
|
+
updated_account_number: T.nilable(String),
|
1547
|
+
updated_routing_number: T.nilable(String)
|
1548
|
+
}
|
1549
|
+
)
|
1550
|
+
end
|
1551
|
+
def to_hash
|
1552
|
+
end
|
1553
|
+
end
|
1554
|
+
|
1555
|
+
# The Standard Entry Class (SEC) code of the transfer.
|
1556
|
+
module StandardEntryClassCode
|
1557
|
+
extend Increase::Internal::Type::Enum
|
1558
|
+
|
1559
|
+
TaggedSymbol =
|
1560
|
+
T.type_alias do
|
1561
|
+
T.all(Symbol, Increase::InboundACHTransfer::StandardEntryClassCode)
|
1562
|
+
end
|
1563
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1564
|
+
|
1565
|
+
# Corporate Credit and Debit (CCD).
|
1566
|
+
CORPORATE_CREDIT_OR_DEBIT =
|
1567
|
+
T.let(
|
1568
|
+
:corporate_credit_or_debit,
|
1569
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1570
|
+
)
|
1571
|
+
|
1572
|
+
# Corporate Trade Exchange (CTX).
|
1573
|
+
CORPORATE_TRADE_EXCHANGE =
|
1574
|
+
T.let(
|
1575
|
+
:corporate_trade_exchange,
|
1576
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1577
|
+
)
|
1578
|
+
|
1579
|
+
# Prearranged Payments and Deposits (PPD).
|
1580
|
+
PREARRANGED_PAYMENTS_AND_DEPOSIT =
|
1581
|
+
T.let(
|
1582
|
+
:prearranged_payments_and_deposit,
|
1583
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1584
|
+
)
|
1585
|
+
|
1586
|
+
# Internet Initiated (WEB).
|
1587
|
+
INTERNET_INITIATED =
|
1588
|
+
T.let(
|
1589
|
+
:internet_initiated,
|
1590
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1591
|
+
)
|
1592
|
+
|
1593
|
+
# Point of Sale (POS).
|
1594
|
+
POINT_OF_SALE =
|
1595
|
+
T.let(
|
1596
|
+
:point_of_sale,
|
1597
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1598
|
+
)
|
1599
|
+
|
1600
|
+
# Telephone Initiated (TEL).
|
1601
|
+
TELEPHONE_INITIATED =
|
1602
|
+
T.let(
|
1603
|
+
:telephone_initiated,
|
1604
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1605
|
+
)
|
1606
|
+
|
1607
|
+
# Customer Initiated (CIE).
|
1608
|
+
CUSTOMER_INITIATED =
|
1609
|
+
T.let(
|
1610
|
+
:customer_initiated,
|
1611
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1612
|
+
)
|
1613
|
+
|
1614
|
+
# Accounts Receivable (ARC).
|
1615
|
+
ACCOUNTS_RECEIVABLE =
|
1616
|
+
T.let(
|
1617
|
+
:accounts_receivable,
|
1618
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1619
|
+
)
|
1620
|
+
|
1621
|
+
# Machine Transfer (MTE).
|
1622
|
+
MACHINE_TRANSFER =
|
1623
|
+
T.let(
|
1624
|
+
:machine_transfer,
|
1625
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1626
|
+
)
|
1627
|
+
|
1628
|
+
# Shared Network Transaction (SHR).
|
1629
|
+
SHARED_NETWORK_TRANSACTION =
|
1630
|
+
T.let(
|
1631
|
+
:shared_network_transaction,
|
1632
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1633
|
+
)
|
1634
|
+
|
1635
|
+
# Represented Check (RCK).
|
1636
|
+
REPRESENTED_CHECK =
|
1637
|
+
T.let(
|
1638
|
+
:represented_check,
|
1639
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1640
|
+
)
|
1641
|
+
|
1642
|
+
# Back Office Conversion (BOC).
|
1643
|
+
BACK_OFFICE_CONVERSION =
|
1644
|
+
T.let(
|
1645
|
+
:back_office_conversion,
|
1646
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1647
|
+
)
|
1648
|
+
|
1649
|
+
# Point of Purchase (POP).
|
1650
|
+
POINT_OF_PURCHASE =
|
1651
|
+
T.let(
|
1652
|
+
:point_of_purchase,
|
1653
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1654
|
+
)
|
1655
|
+
|
1656
|
+
# Check Truncation (TRC).
|
1657
|
+
CHECK_TRUNCATION =
|
1658
|
+
T.let(
|
1659
|
+
:check_truncation,
|
1660
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1661
|
+
)
|
1662
|
+
|
1663
|
+
# Destroyed Check (XCK).
|
1664
|
+
DESTROYED_CHECK =
|
1665
|
+
T.let(
|
1666
|
+
:destroyed_check,
|
1667
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1668
|
+
)
|
1669
|
+
|
1670
|
+
# International ACH Transaction (IAT).
|
1671
|
+
INTERNATIONAL_ACH_TRANSACTION =
|
1672
|
+
T.let(
|
1673
|
+
:international_ach_transaction,
|
1674
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1675
|
+
)
|
1676
|
+
|
1677
|
+
sig do
|
1678
|
+
override.returns(
|
1679
|
+
T::Array[
|
1680
|
+
Increase::InboundACHTransfer::StandardEntryClassCode::TaggedSymbol
|
1681
|
+
]
|
1682
|
+
)
|
1683
|
+
end
|
1684
|
+
def self.values
|
1685
|
+
end
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
# The status of the transfer.
|
1689
|
+
module Status
|
1690
|
+
extend Increase::Internal::Type::Enum
|
1691
|
+
|
1692
|
+
TaggedSymbol =
|
1693
|
+
T.type_alias { T.all(Symbol, Increase::InboundACHTransfer::Status) }
|
1694
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1695
|
+
|
1696
|
+
# The Inbound ACH Transfer is awaiting action, will transition automatically if no action is taken.
|
1697
|
+
PENDING =
|
1698
|
+
T.let(:pending, Increase::InboundACHTransfer::Status::TaggedSymbol)
|
1699
|
+
|
1700
|
+
# The Inbound ACH Transfer has been declined.
|
1701
|
+
DECLINED =
|
1702
|
+
T.let(:declined, Increase::InboundACHTransfer::Status::TaggedSymbol)
|
1703
|
+
|
1704
|
+
# The Inbound ACH Transfer is accepted.
|
1705
|
+
ACCEPTED =
|
1706
|
+
T.let(:accepted, Increase::InboundACHTransfer::Status::TaggedSymbol)
|
1707
|
+
|
1708
|
+
# The Inbound ACH Transfer has been returned.
|
1709
|
+
RETURNED =
|
1710
|
+
T.let(:returned, Increase::InboundACHTransfer::Status::TaggedSymbol)
|
1711
|
+
|
1712
|
+
sig do
|
1713
|
+
override.returns(
|
1714
|
+
T::Array[Increase::InboundACHTransfer::Status::TaggedSymbol]
|
1715
|
+
)
|
1716
|
+
end
|
1717
|
+
def self.values
|
1718
|
+
end
|
1719
|
+
end
|
1720
|
+
|
1721
|
+
class TransferReturn < Increase::Internal::Type::BaseModel
|
1722
|
+
OrHash =
|
1723
|
+
T.type_alias do
|
1724
|
+
T.any(
|
1725
|
+
Increase::InboundACHTransfer::TransferReturn,
|
1726
|
+
Increase::Internal::AnyHash
|
1727
|
+
)
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
# The reason for the transfer return.
|
1731
|
+
sig do
|
1732
|
+
returns(
|
1733
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1734
|
+
)
|
1735
|
+
end
|
1736
|
+
attr_accessor :reason
|
1737
|
+
|
1738
|
+
# The time at which the transfer was returned.
|
1739
|
+
sig { returns(Time) }
|
1740
|
+
attr_accessor :returned_at
|
1741
|
+
|
1742
|
+
# The id of the transaction for the returned transfer.
|
1743
|
+
sig { returns(String) }
|
1744
|
+
attr_accessor :transaction_id
|
1745
|
+
|
1746
|
+
# If your transfer is returned, this will contain details of the return.
|
1747
|
+
sig do
|
1748
|
+
params(
|
1749
|
+
reason:
|
1750
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::OrSymbol,
|
1751
|
+
returned_at: Time,
|
1752
|
+
transaction_id: String
|
1753
|
+
).returns(T.attached_class)
|
1754
|
+
end
|
1755
|
+
def self.new(
|
1756
|
+
# The reason for the transfer return.
|
1757
|
+
reason:,
|
1758
|
+
# The time at which the transfer was returned.
|
1759
|
+
returned_at:,
|
1760
|
+
# The id of the transaction for the returned transfer.
|
1761
|
+
transaction_id:
|
1762
|
+
)
|
1763
|
+
end
|
1764
|
+
|
1765
|
+
sig do
|
1766
|
+
override.returns(
|
1767
|
+
{
|
1768
|
+
reason:
|
1769
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol,
|
1770
|
+
returned_at: Time,
|
1771
|
+
transaction_id: String
|
1772
|
+
}
|
1773
|
+
)
|
1774
|
+
end
|
1775
|
+
def to_hash
|
1776
|
+
end
|
1777
|
+
|
1778
|
+
# The reason for the transfer return.
|
1779
|
+
module Reason
|
1780
|
+
extend Increase::Internal::Type::Enum
|
1781
|
+
|
1782
|
+
TaggedSymbol =
|
1783
|
+
T.type_alias do
|
1784
|
+
T.all(
|
1785
|
+
Symbol,
|
1786
|
+
Increase::InboundACHTransfer::TransferReturn::Reason
|
1787
|
+
)
|
1788
|
+
end
|
1789
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1790
|
+
|
1791
|
+
# The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
|
1792
|
+
INSUFFICIENT_FUNDS =
|
1793
|
+
T.let(
|
1794
|
+
:insufficient_funds,
|
1795
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1796
|
+
)
|
1797
|
+
|
1798
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
|
1799
|
+
RETURNED_PER_ODFI_REQUEST =
|
1800
|
+
T.let(
|
1801
|
+
:returned_per_odfi_request,
|
1802
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1803
|
+
)
|
1804
|
+
|
1805
|
+
# The customer no longer authorizes this transaction. The Nacha return code is R07.
|
1806
|
+
AUTHORIZATION_REVOKED_BY_CUSTOMER =
|
1807
|
+
T.let(
|
1808
|
+
:authorization_revoked_by_customer,
|
1809
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1810
|
+
)
|
1811
|
+
|
1812
|
+
# The customer asked for the payment to be stopped. This reason is only allowed for debits. The Nacha return code is R08.
|
1813
|
+
PAYMENT_STOPPED =
|
1814
|
+
T.let(
|
1815
|
+
:payment_stopped,
|
1816
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1817
|
+
)
|
1818
|
+
|
1819
|
+
# The customer advises that the debit was unauthorized. The Nacha return code is R10.
|
1820
|
+
CUSTOMER_ADVISED_UNAUTHORIZED_IMPROPER_INELIGIBLE_OR_INCOMPLETE =
|
1821
|
+
T.let(
|
1822
|
+
:customer_advised_unauthorized_improper_ineligible_or_incomplete,
|
1823
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1824
|
+
)
|
1825
|
+
|
1826
|
+
# The payee is deceased. The Nacha return code is R14.
|
1827
|
+
REPRESENTATIVE_PAYEE_DECEASED_OR_UNABLE_TO_CONTINUE_IN_THAT_CAPACITY =
|
1828
|
+
T.let(
|
1829
|
+
:representative_payee_deceased_or_unable_to_continue_in_that_capacity,
|
1830
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1831
|
+
)
|
1832
|
+
|
1833
|
+
# The account holder is deceased. The Nacha return code is R15.
|
1834
|
+
BENEFICIARY_OR_ACCOUNT_HOLDER_DECEASED =
|
1835
|
+
T.let(
|
1836
|
+
:beneficiary_or_account_holder_deceased,
|
1837
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1838
|
+
)
|
1839
|
+
|
1840
|
+
# The customer refused a credit entry. This reason is only allowed for credits. The Nacha return code is R23.
|
1841
|
+
CREDIT_ENTRY_REFUSED_BY_RECEIVER =
|
1842
|
+
T.let(
|
1843
|
+
:credit_entry_refused_by_receiver,
|
1844
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1845
|
+
)
|
1846
|
+
|
1847
|
+
# The account holder identified this transaction as a duplicate. The Nacha return code is R24.
|
1848
|
+
DUPLICATE_ENTRY =
|
1849
|
+
T.let(
|
1850
|
+
:duplicate_entry,
|
1851
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1852
|
+
)
|
1853
|
+
|
1854
|
+
# The corporate customer no longer authorizes this transaction. The Nacha return code is R29.
|
1855
|
+
CORPORATE_CUSTOMER_ADVISED_NOT_AUTHORIZED =
|
1856
|
+
T.let(
|
1857
|
+
:corporate_customer_advised_not_authorized,
|
1858
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1859
|
+
)
|
1860
|
+
|
1861
|
+
sig do
|
1862
|
+
override.returns(
|
1863
|
+
T::Array[
|
1864
|
+
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol
|
1865
|
+
]
|
1866
|
+
)
|
1867
|
+
end
|
1868
|
+
def self.values
|
1869
|
+
end
|
1870
|
+
end
|
1871
|
+
end
|
1872
|
+
|
1873
|
+
# A constant representing the object's type. For this resource it will always be
|
1874
|
+
# `inbound_ach_transfer`.
|
1875
|
+
module Type
|
1876
|
+
extend Increase::Internal::Type::Enum
|
1877
|
+
|
1878
|
+
TaggedSymbol =
|
1879
|
+
T.type_alias { T.all(Symbol, Increase::InboundACHTransfer::Type) }
|
1880
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1881
|
+
|
1882
|
+
INBOUND_ACH_TRANSFER =
|
1883
|
+
T.let(
|
1884
|
+
:inbound_ach_transfer,
|
1885
|
+
Increase::InboundACHTransfer::Type::TaggedSymbol
|
1886
|
+
)
|
1887
|
+
|
1888
|
+
sig do
|
1889
|
+
override.returns(
|
1890
|
+
T::Array[Increase::InboundACHTransfer::Type::TaggedSymbol]
|
1891
|
+
)
|
1892
|
+
end
|
1893
|
+
def self.values
|
1894
|
+
end
|
1895
|
+
end
|
1896
|
+
end
|
1897
|
+
end
|
1898
|
+
end
|