increase 0.3.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ignore +2 -0
- data/CHANGELOG.md +807 -56
- data/README.md +213 -254
- data/SECURITY.md +3 -0
- data/lib/increase/client.rb +287 -43
- data/lib/increase/errors.rb +223 -63
- data/lib/increase/file_part.rb +55 -0
- data/lib/increase/internal/page.rb +86 -0
- data/lib/increase/internal/transport/base_client.rb +555 -0
- data/lib/increase/internal/transport/pooled_net_requester.rb +209 -0
- data/lib/increase/internal/type/array_of.rb +162 -0
- data/lib/increase/internal/type/base_model.rb +484 -0
- data/lib/increase/internal/type/base_page.rb +55 -0
- data/lib/increase/internal/type/boolean.rb +71 -0
- data/lib/increase/internal/type/converter.rb +292 -0
- data/lib/increase/internal/type/enum.rb +123 -0
- data/lib/increase/internal/type/file_input.rb +103 -0
- data/lib/increase/internal/type/hash_of.rb +182 -0
- data/lib/increase/internal/type/request_parameters.rb +42 -0
- data/lib/increase/internal/type/union.rb +230 -0
- data/lib/increase/internal/type/unknown.rb +75 -0
- data/lib/increase/internal/util.rb +914 -0
- data/lib/increase/internal.rb +20 -0
- data/lib/increase/models/account.rb +224 -0
- data/lib/increase/models/account_balance_params.rb +22 -0
- data/lib/increase/models/account_close_params.rb +14 -0
- data/lib/increase/models/account_create_params.rb +51 -0
- data/lib/increase/models/account_list_params.rb +155 -0
- data/lib/increase/models/account_number.rb +209 -0
- data/lib/increase/models/account_number_create_params.rb +121 -0
- data/lib/increase/models/account_number_list_params.rb +183 -0
- data/lib/increase/models/account_number_retrieve_params.rb +14 -0
- data/lib/increase/models/account_number_update_params.rb +131 -0
- data/lib/increase/models/account_retrieve_params.rb +14 -0
- data/lib/increase/models/account_statement.rb +105 -0
- data/lib/increase/models/account_statement_list_params.rb +92 -0
- data/lib/increase/models/account_statement_retrieve_params.rb +14 -0
- data/lib/increase/models/account_transfer.rb +389 -0
- data/lib/increase/models/account_transfer_approve_params.rb +14 -0
- data/lib/increase/models/account_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/account_transfer_create_params.rb +58 -0
- data/lib/increase/models/account_transfer_list_params.rb +102 -0
- data/lib/increase/models/account_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/account_update_params.rb +22 -0
- data/lib/increase/models/ach_prenotification.rb +562 -0
- data/lib/increase/models/ach_prenotification_create_params.rb +160 -0
- data/lib/increase/models/ach_prenotification_list_params.rb +94 -0
- data/lib/increase/models/ach_prenotification_retrieve_params.rb +14 -0
- data/lib/increase/models/ach_transfer.rb +1481 -0
- data/lib/increase/models/ach_transfer_approve_params.rb +14 -0
- data/lib/increase/models/ach_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/ach_transfer_create_params.rb +430 -0
- data/lib/increase/models/ach_transfer_list_params.rb +168 -0
- data/lib/increase/models/ach_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/balance_lookup.rb +63 -0
- data/lib/increase/models/bookkeeping_account.rb +104 -0
- data/lib/increase/models/bookkeeping_account_balance_params.rb +22 -0
- data/lib/increase/models/bookkeeping_account_create_params.rb +60 -0
- data/lib/increase/models/bookkeeping_account_list_params.rb +45 -0
- data/lib/increase/models/bookkeeping_account_update_params.rb +22 -0
- data/lib/increase/models/bookkeeping_balance_lookup.rb +54 -0
- data/lib/increase/models/bookkeeping_entry.rb +79 -0
- data/lib/increase/models/bookkeeping_entry_list_params.rb +42 -0
- data/lib/increase/models/bookkeeping_entry_retrieve_params.rb +14 -0
- data/lib/increase/models/bookkeeping_entry_set.rb +116 -0
- data/lib/increase/models/bookkeeping_entry_set_create_params.rb +67 -0
- data/lib/increase/models/bookkeeping_entry_set_list_params.rb +53 -0
- data/lib/increase/models/bookkeeping_entry_set_retrieve_params.rb +14 -0
- data/lib/increase/models/card.rb +243 -0
- data/lib/increase/models/card_create_params.rb +145 -0
- data/lib/increase/models/card_details.rb +78 -0
- data/lib/increase/models/card_details_params.rb +14 -0
- data/lib/increase/models/card_dispute.rb +302 -0
- data/lib/increase/models/card_dispute_create_params.rb +45 -0
- data/lib/increase/models/card_dispute_list_params.rb +144 -0
- data/lib/increase/models/card_dispute_retrieve_params.rb +14 -0
- data/lib/increase/models/card_list_params.rb +142 -0
- data/lib/increase/models/card_payment.rb +6511 -0
- data/lib/increase/models/card_payment_list_params.rb +99 -0
- data/lib/increase/models/card_payment_retrieve_params.rb +14 -0
- data/lib/increase/models/card_purchase_supplement.rb +452 -0
- data/lib/increase/models/card_purchase_supplement_list_params.rb +93 -0
- data/lib/increase/models/card_purchase_supplement_retrieve_params.rb +14 -0
- data/lib/increase/models/card_retrieve_params.rb +14 -0
- data/lib/increase/models/card_update_params.rb +158 -0
- data/lib/increase/models/check_deposit.rb +807 -0
- data/lib/increase/models/check_deposit_create_params.rb +57 -0
- data/lib/increase/models/check_deposit_list_params.rb +102 -0
- data/lib/increase/models/check_deposit_retrieve_params.rb +14 -0
- data/lib/increase/models/check_transfer.rb +983 -0
- data/lib/increase/models/check_transfer_approve_params.rb +14 -0
- data/lib/increase/models/check_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/check_transfer_create_params.rb +324 -0
- data/lib/increase/models/check_transfer_list_params.rb +166 -0
- data/lib/increase/models/check_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/check_transfer_stop_payment_params.rb +39 -0
- data/lib/increase/models/declined_transaction.rb +1779 -0
- data/lib/increase/models/declined_transaction_list_params.rb +153 -0
- data/lib/increase/models/declined_transaction_retrieve_params.rb +14 -0
- data/lib/increase/models/digital_card_profile.rb +197 -0
- data/lib/increase/models/digital_card_profile_archive_params.rb +14 -0
- data/lib/increase/models/digital_card_profile_clone_params.rb +115 -0
- data/lib/increase/models/digital_card_profile_create_params.rb +115 -0
- data/lib/increase/models/digital_card_profile_list_params.rb +91 -0
- data/lib/increase/models/digital_card_profile_retrieve_params.rb +14 -0
- data/lib/increase/models/digital_wallet_token.rb +281 -0
- data/lib/increase/models/digital_wallet_token_list_params.rb +91 -0
- data/lib/increase/models/digital_wallet_token_retrieve_params.rb +14 -0
- data/lib/increase/models/document.rb +135 -0
- data/lib/increase/models/document_create_params.rb +62 -0
- data/lib/increase/models/document_list_params.rb +149 -0
- data/lib/increase/models/document_retrieve_params.rb +14 -0
- data/lib/increase/models/entity.rb +1476 -0
- data/lib/increase/models/entity_archive_beneficial_owner_params.rb +26 -0
- data/lib/increase/models/entity_archive_params.rb +14 -0
- data/lib/increase/models/entity_confirm_params.rb +26 -0
- data/lib/increase/models/entity_create_beneficial_owner_params.rb +412 -0
- data/lib/increase/models/entity_create_params.rb +2318 -0
- data/lib/increase/models/entity_list_params.rb +135 -0
- data/lib/increase/models/entity_retrieve_params.rb +14 -0
- data/lib/increase/models/entity_supplemental_document.rb +72 -0
- data/lib/increase/models/entity_update_address_params.rb +76 -0
- data/lib/increase/models/entity_update_beneficial_owner_address_params.rb +95 -0
- data/lib/increase/models/entity_update_industry_code_params.rb +28 -0
- data/lib/increase/models/event.rb +363 -0
- data/lib/increase/models/event_list_params.rb +395 -0
- data/lib/increase/models/event_retrieve_params.rb +14 -0
- data/lib/increase/models/event_subscription.rb +408 -0
- data/lib/increase/models/event_subscription_create_params.rb +334 -0
- data/lib/increase/models/event_subscription_list_params.rb +45 -0
- data/lib/increase/models/event_subscription_retrieve_params.rb +14 -0
- data/lib/increase/models/event_subscription_update_params.rb +39 -0
- data/lib/increase/models/export.rb +152 -0
- data/lib/increase/models/export_create_params.rb +444 -0
- data/lib/increase/models/export_list_params.rb +188 -0
- data/lib/increase/models/export_retrieve_params.rb +14 -0
- data/lib/increase/models/external_account.rb +166 -0
- data/lib/increase/models/external_account_create_params.rb +92 -0
- data/lib/increase/models/external_account_list_params.rb +93 -0
- data/lib/increase/models/external_account_retrieve_params.rb +14 -0
- data/lib/increase/models/external_account_update_params.rb +91 -0
- data/lib/increase/models/file.rb +213 -0
- data/lib/increase/models/file_create_params.rb +99 -0
- data/lib/increase/models/file_link.rb +90 -0
- data/lib/increase/models/file_link_create_params.rb +34 -0
- data/lib/increase/models/file_list_params.rb +203 -0
- data/lib/increase/models/file_retrieve_params.rb +14 -0
- data/lib/increase/models/group.rb +104 -0
- data/lib/increase/models/group_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_ach_transfer.rb +1095 -0
- data/lib/increase/models/inbound_ach_transfer_create_notification_of_change_params.rb +30 -0
- data/lib/increase/models/inbound_ach_transfer_decline_params.rb +69 -0
- data/lib/increase/models/inbound_ach_transfer_list_params.rb +145 -0
- data/lib/increase/models/inbound_ach_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_ach_transfer_transfer_return_params.rb +67 -0
- data/lib/increase/models/inbound_check_deposit.rb +391 -0
- data/lib/increase/models/inbound_check_deposit_decline_params.rb +14 -0
- data/lib/increase/models/inbound_check_deposit_list_params.rb +100 -0
- data/lib/increase/models/inbound_check_deposit_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_check_deposit_return_params.rb +45 -0
- data/lib/increase/models/inbound_mail_item.rb +132 -0
- data/lib/increase/models/inbound_mail_item_list_params.rb +91 -0
- data/lib/increase/models/inbound_mail_item_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +290 -0
- data/lib/increase/models/inbound_real_time_payments_transfer_list_params.rb +102 -0
- data/lib/increase/models/inbound_real_time_payments_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_wire_drawdown_request.rb +221 -0
- data/lib/increase/models/inbound_wire_drawdown_request_list_params.rb +34 -0
- data/lib/increase/models/inbound_wire_drawdown_request_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_wire_transfer.rb +307 -0
- data/lib/increase/models/inbound_wire_transfer_list_params.rb +145 -0
- data/lib/increase/models/inbound_wire_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/inbound_wire_transfer_reverse_params.rb +36 -0
- data/lib/increase/models/intrafi_account_enrollment.rb +121 -0
- data/lib/increase/models/intrafi_account_enrollment_create_params.rb +30 -0
- data/lib/increase/models/intrafi_account_enrollment_list_params.rb +102 -0
- data/lib/increase/models/intrafi_account_enrollment_retrieve_params.rb +14 -0
- data/lib/increase/models/intrafi_account_enrollment_unenroll_params.rb +14 -0
- data/lib/increase/models/intrafi_balance.rb +180 -0
- data/lib/increase/models/intrafi_balance_intrafi_balance_params.rb +14 -0
- data/lib/increase/models/intrafi_exclusion.rb +134 -0
- data/lib/increase/models/intrafi_exclusion_archive_params.rb +14 -0
- data/lib/increase/models/intrafi_exclusion_create_params.rb +30 -0
- data/lib/increase/models/intrafi_exclusion_list_params.rb +53 -0
- data/lib/increase/models/intrafi_exclusion_retrieve_params.rb +14 -0
- data/lib/increase/models/lockbox.rb +182 -0
- data/lib/increase/models/lockbox_create_params.rb +38 -0
- data/lib/increase/models/lockbox_list_params.rb +102 -0
- data/lib/increase/models/lockbox_retrieve_params.rb +14 -0
- data/lib/increase/models/lockbox_update_params.rb +52 -0
- data/lib/increase/models/oauth_application.rb +106 -0
- data/lib/increase/models/oauth_application_list_params.rb +122 -0
- data/lib/increase/models/oauth_application_retrieve_params.rb +14 -0
- data/lib/increase/models/oauth_connection.rb +104 -0
- data/lib/increase/models/oauth_connection_list_params.rb +83 -0
- data/lib/increase/models/oauth_connection_retrieve_params.rb +14 -0
- data/lib/increase/models/oauth_token.rb +67 -0
- data/lib/increase/models/oauth_token_create_params.rb +78 -0
- data/lib/increase/models/pending_transaction.rb +1747 -0
- data/lib/increase/models/pending_transaction_create_params.rb +43 -0
- data/lib/increase/models/pending_transaction_list_params.rb +212 -0
- data/lib/increase/models/pending_transaction_release_params.rb +14 -0
- data/lib/increase/models/pending_transaction_retrieve_params.rb +14 -0
- data/lib/increase/models/physical_card.rb +433 -0
- data/lib/increase/models/physical_card_create_params.rb +185 -0
- data/lib/increase/models/physical_card_list_params.rb +102 -0
- data/lib/increase/models/physical_card_profile.rb +182 -0
- data/lib/increase/models/physical_card_profile_archive_params.rb +14 -0
- data/lib/increase/models/physical_card_profile_clone_params.rb +85 -0
- data/lib/increase/models/physical_card_profile_create_params.rb +93 -0
- data/lib/increase/models/physical_card_profile_list_params.rb +97 -0
- data/lib/increase/models/physical_card_profile_retrieve_params.rb +14 -0
- data/lib/increase/models/physical_card_retrieve_params.rb +14 -0
- data/lib/increase/models/physical_card_update_params.rb +39 -0
- data/lib/increase/models/program.rb +126 -0
- data/lib/increase/models/program_list_params.rb +34 -0
- data/lib/increase/models/program_retrieve_params.rb +14 -0
- data/lib/increase/models/real_time_decision.rb +1303 -0
- data/lib/increase/models/real_time_decision_action_params.rb +351 -0
- data/lib/increase/models/real_time_decision_retrieve_params.rb +14 -0
- data/lib/increase/models/real_time_payments_transfer.rb +622 -0
- data/lib/increase/models/real_time_payments_transfer_approve_params.rb +14 -0
- data/lib/increase/models/real_time_payments_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +112 -0
- data/lib/increase/models/real_time_payments_transfer_list_params.rb +169 -0
- data/lib/increase/models/real_time_payments_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models/routing_number_list_params.rb +42 -0
- data/lib/increase/models/routing_number_list_response.rb +125 -0
- data/lib/increase/models/simulations/account_statement_create_params.rb +24 -0
- data/lib/increase/models/simulations/account_transfer_complete_params.rb +16 -0
- data/lib/increase/models/simulations/ach_transfer_acknowledge_params.rb +16 -0
- data/lib/increase/models/simulations/ach_transfer_create_notification_of_change_params.rb +104 -0
- data/lib/increase/models/simulations/ach_transfer_return_params.rb +250 -0
- data/lib/increase/models/simulations/ach_transfer_settle_params.rb +16 -0
- data/lib/increase/models/simulations/ach_transfer_submit_params.rb +16 -0
- data/lib/increase/models/simulations/card_authorization_create_params.rb +309 -0
- data/lib/increase/models/simulations/card_authorization_create_response.rb +59 -0
- data/lib/increase/models/simulations/card_authorization_expiration_create_params.rb +24 -0
- data/lib/increase/models/simulations/card_dispute_action_params.rb +55 -0
- data/lib/increase/models/simulations/card_fuel_confirmation_create_params.rb +37 -0
- data/lib/increase/models/simulations/card_increment_create_params.rb +46 -0
- data/lib/increase/models/simulations/card_refund_create_params.rb +28 -0
- data/lib/increase/models/simulations/card_reversal_create_params.rb +36 -0
- data/lib/increase/models/simulations/card_settlement_create_params.rb +45 -0
- data/lib/increase/models/simulations/check_deposit_reject_params.rb +16 -0
- data/lib/increase/models/simulations/check_deposit_return_params.rb +16 -0
- data/lib/increase/models/simulations/check_deposit_submit_params.rb +16 -0
- data/lib/increase/models/simulations/check_transfer_mail_params.rb +16 -0
- data/lib/increase/models/simulations/digital_wallet_token_request_create_params.rb +24 -0
- data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +83 -0
- data/lib/increase/models/simulations/document_create_params.rb +24 -0
- data/lib/increase/models/simulations/inbound_ach_transfer_create_params.rb +241 -0
- data/lib/increase/models/simulations/inbound_check_deposit_create_params.rb +40 -0
- data/lib/increase/models/simulations/inbound_funds_hold_release_params.rb +16 -0
- data/lib/increase/models/simulations/inbound_funds_hold_release_response.rb +161 -0
- data/lib/increase/models/simulations/inbound_mail_item_create_params.rb +44 -0
- data/lib/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rb +77 -0
- data/lib/increase/models/simulations/inbound_wire_drawdown_request_create_params.rb +186 -0
- data/lib/increase/models/simulations/inbound_wire_transfer_create_params.rb +171 -0
- data/lib/increase/models/simulations/interest_payment_create_params.rb +59 -0
- data/lib/increase/models/simulations/physical_card_advance_shipment_params.rb +57 -0
- data/lib/increase/models/simulations/physical_card_tracking_updates_params.rb +81 -0
- data/lib/increase/models/simulations/program_create_params.rb +32 -0
- data/lib/increase/models/simulations/real_time_payments_transfer_complete_params.rb +113 -0
- data/lib/increase/models/simulations/wire_transfer_reverse_params.rb +16 -0
- data/lib/increase/models/simulations/wire_transfer_submit_params.rb +16 -0
- data/lib/increase/models/supplemental_document_create_params.rb +30 -0
- data/lib/increase/models/supplemental_document_list_params.rb +53 -0
- data/lib/increase/models/transaction.rb +5823 -0
- data/lib/increase/models/transaction_list_params.rb +226 -0
- data/lib/increase/models/transaction_retrieve_params.rb +14 -0
- data/lib/increase/models/wire_drawdown_request.rb +249 -0
- data/lib/increase/models/wire_drawdown_request_create_params.rb +129 -0
- data/lib/increase/models/wire_drawdown_request_list_params.rb +91 -0
- data/lib/increase/models/wire_drawdown_request_retrieve_params.rb +14 -0
- data/lib/increase/models/wire_transfer.rb +677 -0
- data/lib/increase/models/wire_transfer_approve_params.rb +14 -0
- data/lib/increase/models/wire_transfer_cancel_params.rb +14 -0
- data/lib/increase/models/wire_transfer_create_params.rb +151 -0
- data/lib/increase/models/wire_transfer_list_params.rb +110 -0
- data/lib/increase/models/wire_transfer_retrieve_params.rb +14 -0
- data/lib/increase/models.rb +483 -0
- data/lib/increase/request_options.rb +77 -0
- data/lib/increase/resources/account_numbers.rb +130 -13
- data/lib/increase/resources/account_statements.rb +60 -9
- data/lib/increase/resources/account_transfers.rb +135 -15
- data/lib/increase/resources/accounts.rb +168 -15
- data/lib/increase/resources/ach_prenotifications.rb +109 -11
- data/lib/increase/resources/ach_transfers.rb +167 -15
- data/lib/increase/resources/bookkeeping_accounts.rb +120 -0
- data/lib/increase/resources/bookkeeping_entries.rb +64 -0
- data/lib/increase/resources/bookkeeping_entry_sets.rb +95 -0
- data/lib/increase/resources/card_disputes.rb +91 -11
- data/lib/increase/resources/card_payments.rb +68 -0
- data/lib/increase/resources/card_purchase_supplements.rb +66 -0
- data/lib/increase/resources/cards.rb +146 -15
- data/lib/increase/resources/check_deposits.rb +95 -11
- data/lib/increase/resources/check_transfers.rb +167 -17
- data/lib/increase/resources/declined_transactions.rb +64 -9
- data/lib/increase/resources/digital_card_profiles.rb +164 -0
- data/lib/increase/resources/digital_wallet_tokens.rb +60 -9
- data/lib/increase/resources/documents.rb +89 -10
- data/lib/increase/resources/entities.rb +293 -14
- data/lib/increase/resources/event_subscriptions.rb +113 -13
- data/lib/increase/resources/events.rb +62 -9
- data/lib/increase/resources/exports.rb +109 -0
- data/lib/increase/resources/external_accounts.rb +125 -13
- data/lib/increase/resources/file_links.rb +41 -0
- data/lib/increase/resources/files.rb +94 -11
- data/lib/increase/resources/groups.rb +26 -7
- data/lib/increase/resources/inbound_ach_transfers.rb +154 -0
- data/lib/increase/resources/inbound_check_deposits.rb +112 -0
- data/lib/increase/resources/inbound_mail_items.rb +66 -0
- data/lib/increase/resources/inbound_real_time_payments_transfers.rb +68 -0
- data/lib/increase/resources/inbound_wire_drawdown_requests.rb +56 -9
- data/lib/increase/resources/inbound_wire_transfers.rb +94 -0
- data/lib/increase/resources/intrafi_account_enrollments.rb +112 -0
- data/lib/increase/resources/intrafi_balances.rb +36 -0
- data/lib/increase/resources/intrafi_exclusions.rb +113 -0
- data/lib/increase/resources/lockboxes.rb +122 -0
- data/lib/increase/resources/oauth_applications.rb +66 -0
- data/lib/increase/resources/oauth_connections.rb +60 -9
- data/lib/increase/resources/oauth_tokens.rb +47 -0
- data/lib/increase/resources/pending_transactions.rb +122 -10
- data/lib/increase/resources/physical_card_profiles.rb +156 -0
- data/lib/increase/resources/physical_cards.rb +123 -0
- data/lib/increase/resources/programs.rb +62 -0
- data/lib/increase/resources/real_time_decisions.rb +63 -9
- data/lib/increase/resources/real_time_payments_transfers.rb +157 -0
- data/lib/increase/resources/routing_numbers.rb +41 -7
- data/lib/increase/resources/simulations/account_statements.rb +39 -0
- data/lib/increase/resources/simulations/account_transfers.rb +39 -0
- data/lib/increase/resources/simulations/ach_transfers.rb +151 -0
- data/lib/increase/resources/simulations/card_authorization_expirations.rb +38 -0
- data/lib/increase/resources/simulations/card_authorizations.rb +79 -0
- data/lib/increase/resources/simulations/card_disputes.rb +45 -0
- data/lib/increase/resources/simulations/card_fuel_confirmations.rb +46 -0
- data/lib/increase/resources/simulations/card_increments.rb +46 -0
- data/lib/increase/resources/simulations/card_refunds.rb +42 -0
- data/lib/increase/resources/simulations/card_reversals.rb +46 -0
- data/lib/increase/resources/simulations/card_settlements.rb +49 -0
- data/lib/increase/resources/simulations/check_deposits.rb +80 -0
- data/lib/increase/resources/simulations/check_transfers.rb +39 -0
- data/lib/increase/resources/simulations/digital_wallet_token_requests.rb +39 -0
- data/lib/increase/resources/simulations/documents.rb +38 -0
- data/lib/increase/resources/simulations/inbound_ach_transfers.rb +73 -0
- data/lib/increase/resources/simulations/inbound_check_deposits.rb +47 -0
- data/lib/increase/resources/simulations/inbound_funds_holds.rb +37 -0
- data/lib/increase/resources/simulations/inbound_mail_items.rb +46 -0
- data/lib/increase/resources/simulations/inbound_real_time_payments_transfers.rb +56 -0
- data/lib/increase/resources/simulations/inbound_wire_drawdown_requests.rb +81 -0
- data/lib/increase/resources/simulations/inbound_wire_transfers.rb +74 -0
- data/lib/increase/resources/simulations/interest_payments.rb +50 -0
- data/lib/increase/resources/simulations/physical_cards.rb +79 -0
- data/lib/increase/resources/simulations/programs.rb +43 -0
- data/lib/increase/resources/simulations/real_time_payments_transfers.rb +43 -0
- data/lib/increase/resources/simulations/wire_transfers.rb +61 -0
- data/lib/increase/resources/simulations.rb +127 -0
- data/lib/increase/resources/supplemental_documents.rb +70 -0
- data/lib/increase/resources/transactions.rb +64 -9
- data/lib/increase/resources/wire_drawdown_requests.rb +109 -11
- data/lib/increase/resources/wire_transfers.rb +159 -15
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +386 -22
- data/manifest.yaml +15 -0
- data/rbi/increase/client.rbi +221 -0
- data/rbi/increase/errors.rbi +206 -0
- data/rbi/increase/file_part.rbi +37 -0
- data/rbi/increase/internal/page.rbi +22 -0
- data/rbi/increase/internal/transport/base_client.rbi +293 -0
- data/rbi/increase/internal/transport/pooled_net_requester.rbi +79 -0
- data/rbi/increase/internal/type/array_of.rbi +104 -0
- data/rbi/increase/internal/type/base_model.rbi +302 -0
- data/rbi/increase/internal/type/base_page.rbi +42 -0
- data/rbi/increase/internal/type/boolean.rbi +56 -0
- data/rbi/increase/internal/type/converter.rbi +162 -0
- data/rbi/increase/internal/type/enum.rbi +82 -0
- data/rbi/increase/internal/type/file_input.rbi +59 -0
- data/rbi/increase/internal/type/hash_of.rbi +104 -0
- data/rbi/increase/internal/type/request_parameters.rbi +29 -0
- data/rbi/increase/internal/type/union.rbi +116 -0
- data/rbi/increase/internal/type/unknown.rbi +56 -0
- data/rbi/increase/internal/util.rbi +487 -0
- data/rbi/increase/internal.rbi +16 -0
- data/rbi/increase/models/account.rbi +269 -0
- data/rbi/increase/models/account_balance_params.rbi +43 -0
- data/rbi/increase/models/account_close_params.rbi +27 -0
- data/rbi/increase/models/account_create_params.rbi +80 -0
- data/rbi/increase/models/account_list_params.rbi +280 -0
- data/rbi/increase/models/account_number.rbi +348 -0
- data/rbi/increase/models/account_number_create_params.rbi +262 -0
- data/rbi/increase/models/account_number_list_params.rbi +396 -0
- data/rbi/increase/models/account_number_retrieve_params.rbi +30 -0
- data/rbi/increase/models/account_number_update_params.rbi +320 -0
- data/rbi/increase/models/account_retrieve_params.rbi +27 -0
- data/rbi/increase/models/account_statement.rbi +136 -0
- data/rbi/increase/models/account_statement_list_params.rbi +167 -0
- data/rbi/increase/models/account_statement_retrieve_params.rbi +30 -0
- data/rbi/increase/models/account_transfer.rbi +634 -0
- data/rbi/increase/models/account_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/account_transfer_cancel_params.rbi +30 -0
- data/rbi/increase/models/account_transfer_create_params.rbi +83 -0
- data/rbi/increase/models/account_transfer_list_params.rbi +177 -0
- data/rbi/increase/models/account_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/account_update_params.rbi +43 -0
- data/rbi/increase/models/ach_prenotification.rbi +1094 -0
- data/rbi/increase/models/ach_prenotification_create_params.rbi +294 -0
- data/rbi/increase/models/ach_prenotification_list_params.rbi +168 -0
- data/rbi/increase/models/ach_prenotification_retrieve_params.rbi +30 -0
- data/rbi/increase/models/ach_transfer.rbi +2672 -0
- data/rbi/increase/models/ach_transfer_approve_params.rbi +27 -0
- data/rbi/increase/models/ach_transfer_cancel_params.rbi +27 -0
- data/rbi/increase/models/ach_transfer_create_params.rbi +904 -0
- data/rbi/increase/models/ach_transfer_list_params.rbi +330 -0
- data/rbi/increase/models/ach_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/balance_lookup.rbi +90 -0
- data/rbi/increase/models/bookkeeping_account.rbi +165 -0
- data/rbi/increase/models/bookkeeping_account_balance_params.rbi +46 -0
- data/rbi/increase/models/bookkeeping_account_create_params.rbi +130 -0
- data/rbi/increase/models/bookkeeping_account_list_params.rbi +79 -0
- data/rbi/increase/models/bookkeeping_account_update_params.rbi +43 -0
- data/rbi/increase/models/bookkeeping_balance_lookup.rbi +85 -0
- data/rbi/increase/models/bookkeeping_entry.rbi +108 -0
- data/rbi/increase/models/bookkeeping_entry_list_params.rbi +73 -0
- data/rbi/increase/models/bookkeeping_entry_retrieve_params.rbi +30 -0
- data/rbi/increase/models/bookkeeping_entry_set.rbi +162 -0
- data/rbi/increase/models/bookkeeping_entry_set_create_params.rbi +110 -0
- data/rbi/increase/models/bookkeeping_entry_set_list_params.rbi +90 -0
- data/rbi/increase/models/bookkeeping_entry_set_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card.rbi +317 -0
- data/rbi/increase/models/card_create_params.rbi +241 -0
- data/rbi/increase/models/card_details.rbi +103 -0
- data/rbi/increase/models/card_details_params.rbi +27 -0
- data/rbi/increase/models/card_dispute.rbi +425 -0
- data/rbi/increase/models/card_dispute_create_params.rbi +70 -0
- data/rbi/increase/models/card_dispute_list_params.rbi +289 -0
- data/rbi/increase/models/card_dispute_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card_list_params.rbi +252 -0
- data/rbi/increase/models/card_payment.rbi +11956 -0
- data/rbi/increase/models/card_payment_list_params.rbi +168 -0
- data/rbi/increase/models/card_payment_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card_purchase_supplement.rbi +687 -0
- data/rbi/increase/models/card_purchase_supplement_list_params.rbi +168 -0
- data/rbi/increase/models/card_purchase_supplement_retrieve_params.rbi +30 -0
- data/rbi/increase/models/card_retrieve_params.rbi +27 -0
- data/rbi/increase/models/card_update_params.rbi +267 -0
- data/rbi/increase/models/check_deposit.rbi +1393 -0
- data/rbi/increase/models/check_deposit_create_params.rbi +78 -0
- data/rbi/increase/models/check_deposit_list_params.rbi +174 -0
- data/rbi/increase/models/check_deposit_retrieve_params.rbi +30 -0
- data/rbi/increase/models/check_transfer.rbi +1670 -0
- data/rbi/increase/models/check_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/check_transfer_cancel_params.rbi +30 -0
- data/rbi/increase/models/check_transfer_create_params.rbi +573 -0
- data/rbi/increase/models/check_transfer_list_params.rbi +332 -0
- data/rbi/increase/models/check_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/check_transfer_stop_payment_params.rbi +99 -0
- data/rbi/increase/models/declined_transaction.rbi +3355 -0
- data/rbi/increase/models/declined_transaction_list_params.rbi +322 -0
- data/rbi/increase/models/declined_transaction_retrieve_params.rbi +30 -0
- data/rbi/increase/models/digital_card_profile.rbi +258 -0
- data/rbi/increase/models/digital_card_profile_archive_params.rbi +30 -0
- data/rbi/increase/models/digital_card_profile_clone_params.rbi +188 -0
- data/rbi/increase/models/digital_card_profile_create_params.rbi +174 -0
- data/rbi/increase/models/digital_card_profile_list_params.rbi +203 -0
- data/rbi/increase/models/digital_card_profile_retrieve_params.rbi +30 -0
- data/rbi/increase/models/digital_wallet_token.rbi +508 -0
- data/rbi/increase/models/digital_wallet_token_list_params.rbi +162 -0
- data/rbi/increase/models/digital_wallet_token_retrieve_params.rbi +30 -0
- data/rbi/increase/models/document.rbi +198 -0
- data/rbi/increase/models/document_create_params.rbi +132 -0
- data/rbi/increase/models/document_list_params.rbi +289 -0
- data/rbi/increase/models/document_retrieve_params.rbi +27 -0
- data/rbi/increase/models/entity.rbi +2531 -0
- data/rbi/increase/models/entity_archive_beneficial_owner_params.rbi +48 -0
- data/rbi/increase/models/entity_archive_params.rbi +27 -0
- data/rbi/increase/models/entity_confirm_params.rbi +45 -0
- data/rbi/increase/models/entity_create_beneficial_owner_params.rbi +764 -0
- data/rbi/increase/models/entity_create_params.rbi +4200 -0
- data/rbi/increase/models/entity_list_params.rbi +256 -0
- data/rbi/increase/models/entity_retrieve_params.rbi +27 -0
- data/rbi/increase/models/entity_supplemental_document.rbi +108 -0
- data/rbi/increase/models/entity_update_address_params.rbi +129 -0
- data/rbi/increase/models/entity_update_beneficial_owner_address_params.rbi +163 -0
- data/rbi/increase/models/entity_update_industry_code_params.rbi +49 -0
- data/rbi/increase/models/event.rbi +698 -0
- data/rbi/increase/models/event_list_params.rbi +862 -0
- data/rbi/increase/models/event_retrieve_params.rbi +27 -0
- data/rbi/increase/models/event_subscription.rbi +833 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +753 -0
- data/rbi/increase/models/event_subscription_list_params.rbi +79 -0
- data/rbi/increase/models/event_subscription_retrieve_params.rbi +30 -0
- data/rbi/increase/models/event_subscription_update_params.rbi +99 -0
- data/rbi/increase/models/export.rbi +196 -0
- data/rbi/increase/models/export_create_params.rbi +933 -0
- data/rbi/increase/models/export_list_params.rbi +386 -0
- data/rbi/increase/models/export_retrieve_params.rbi +27 -0
- data/rbi/increase/models/external_account.rbi +236 -0
- data/rbi/increase/models/external_account_create_params.rbi +191 -0
- data/rbi/increase/models/external_account_list_params.rbi +198 -0
- data/rbi/increase/models/external_account_retrieve_params.rbi +30 -0
- data/rbi/increase/models/external_account_update_params.rbi +223 -0
- data/rbi/increase/models/file.rbi +291 -0
- data/rbi/increase/models/file_create_params.rbi +188 -0
- data/rbi/increase/models/file_link.rbi +115 -0
- data/rbi/increase/models/file_link_create_params.rbi +56 -0
- data/rbi/increase/models/file_list_params.rbi +410 -0
- data/rbi/increase/models/file_retrieve_params.rbi +27 -0
- data/rbi/increase/models/group.rbi +139 -0
- data/rbi/increase/models/group_retrieve_params.rbi +27 -0
- data/rbi/increase/models/inbound_ach_transfer.rbi +1898 -0
- data/rbi/increase/models/inbound_ach_transfer_create_notification_of_change_params.rbi +60 -0
- data/rbi/increase/models/inbound_ach_transfer_decline_params.rbi +154 -0
- data/rbi/increase/models/inbound_ach_transfer_list_params.rbi +297 -0
- data/rbi/increase/models/inbound_ach_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_ach_transfer_transfer_return_params.rbi +149 -0
- data/rbi/increase/models/inbound_check_deposit.rbi +609 -0
- data/rbi/increase/models/inbound_check_deposit_decline_params.rbi +30 -0
- data/rbi/increase/models/inbound_check_deposit_list_params.rbi +176 -0
- data/rbi/increase/models/inbound_check_deposit_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_check_deposit_return_params.rbi +104 -0
- data/rbi/increase/models/inbound_mail_item.rbi +201 -0
- data/rbi/increase/models/inbound_mail_item_list_params.rbi +160 -0
- data/rbi/increase/models/inbound_mail_item_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +516 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer_list_params.rbi +184 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_wire_drawdown_request.rbi +261 -0
- data/rbi/increase/models/inbound_wire_drawdown_request_list_params.rbi +62 -0
- data/rbi/increase/models/inbound_wire_drawdown_request_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_wire_transfer.rbi +400 -0
- data/rbi/increase/models/inbound_wire_transfer_list_params.rbi +300 -0
- data/rbi/increase/models/inbound_wire_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/inbound_wire_transfer_reverse_params.rbi +84 -0
- data/rbi/increase/models/intrafi_account_enrollment.rbi +185 -0
- data/rbi/increase/models/intrafi_account_enrollment_create_params.rbi +54 -0
- data/rbi/increase/models/intrafi_account_enrollment_list_params.rbi +226 -0
- data/rbi/increase/models/intrafi_account_enrollment_retrieve_params.rbi +30 -0
- data/rbi/increase/models/intrafi_account_enrollment_unenroll_params.rbi +30 -0
- data/rbi/increase/models/intrafi_balance.rbi +262 -0
- data/rbi/increase/models/intrafi_balance_intrafi_balance_params.rbi +30 -0
- data/rbi/increase/models/intrafi_exclusion.rbi +176 -0
- data/rbi/increase/models/intrafi_exclusion_archive_params.rbi +30 -0
- data/rbi/increase/models/intrafi_exclusion_create_params.rbi +54 -0
- data/rbi/increase/models/intrafi_exclusion_list_params.rbi +90 -0
- data/rbi/increase/models/intrafi_exclusion_retrieve_params.rbi +30 -0
- data/rbi/increase/models/lockbox.rbi +232 -0
- data/rbi/increase/models/lockbox_create_params.rbi +65 -0
- data/rbi/increase/models/lockbox_list_params.rbi +172 -0
- data/rbi/increase/models/lockbox_retrieve_params.rbi +27 -0
- data/rbi/increase/models/lockbox_update_params.rbi +97 -0
- data/rbi/increase/models/oauth_application.rbi +146 -0
- data/rbi/increase/models/oauth_application_list_params.rbi +259 -0
- data/rbi/increase/models/oauth_application_retrieve_params.rbi +30 -0
- data/rbi/increase/models/oauth_connection.rbi +142 -0
- data/rbi/increase/models/oauth_connection_list_params.rbi +183 -0
- data/rbi/increase/models/oauth_connection_retrieve_params.rbi +30 -0
- data/rbi/increase/models/oauth_token.rbi +98 -0
- data/rbi/increase/models/oauth_token_create_params.rbi +133 -0
- data/rbi/increase/models/pending_transaction.rbi +3220 -0
- data/rbi/increase/models/pending_transaction_create_params.rbi +69 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +475 -0
- data/rbi/increase/models/pending_transaction_release_params.rbi +30 -0
- data/rbi/increase/models/pending_transaction_retrieve_params.rbi +30 -0
- data/rbi/increase/models/physical_card.rbi +691 -0
- data/rbi/increase/models/physical_card_create_params.rbi +327 -0
- data/rbi/increase/models/physical_card_list_params.rbi +174 -0
- data/rbi/increase/models/physical_card_profile.rbi +245 -0
- data/rbi/increase/models/physical_card_profile_archive_params.rbi +30 -0
- data/rbi/increase/models/physical_card_profile_clone_params.rbi +143 -0
- data/rbi/increase/models/physical_card_profile_create_params.rbi +139 -0
- data/rbi/increase/models/physical_card_profile_list_params.rbi +219 -0
- data/rbi/increase/models/physical_card_profile_retrieve_params.rbi +30 -0
- data/rbi/increase/models/physical_card_retrieve_params.rbi +30 -0
- data/rbi/increase/models/physical_card_update_params.rbi +83 -0
- data/rbi/increase/models/program.rbi +155 -0
- data/rbi/increase/models/program_list_params.rbi +59 -0
- data/rbi/increase/models/program_retrieve_params.rbi +27 -0
- data/rbi/increase/models/real_time_decision.rbi +2466 -0
- data/rbi/increase/models/real_time_decision_action_params.rbi +806 -0
- data/rbi/increase/models/real_time_decision_retrieve_params.rbi +30 -0
- data/rbi/increase/models/real_time_payments_transfer.rbi +1151 -0
- data/rbi/increase/models/real_time_payments_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/real_time_payments_transfer_cancel_params.rbi +30 -0
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +161 -0
- data/rbi/increase/models/real_time_payments_transfer_list_params.rbi +351 -0
- data/rbi/increase/models/real_time_payments_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models/routing_number_list_params.rbi +67 -0
- data/rbi/increase/models/routing_number_list_response.rbi +246 -0
- data/rbi/increase/models/simulations/account_statement_create_params.rbi +45 -0
- data/rbi/increase/models/simulations/account_transfer_complete_params.rbi +32 -0
- data/rbi/increase/models/simulations/ach_transfer_acknowledge_params.rbi +32 -0
- data/rbi/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbi +219 -0
- data/rbi/increase/models/simulations/ach_transfer_return_params.rbi +581 -0
- data/rbi/increase/models/simulations/ach_transfer_settle_params.rbi +32 -0
- data/rbi/increase/models/simulations/ach_transfer_submit_params.rbi +32 -0
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +648 -0
- data/rbi/increase/models/simulations/card_authorization_create_response.rbi +123 -0
- data/rbi/increase/models/simulations/card_authorization_expiration_create_params.rbi +48 -0
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +124 -0
- data/rbi/increase/models/simulations/card_fuel_confirmation_create_params.rbi +58 -0
- data/rbi/increase/models/simulations/card_increment_create_params.rbi +73 -0
- data/rbi/increase/models/simulations/card_refund_create_params.rbi +50 -0
- data/rbi/increase/models/simulations/card_reversal_create_params.rbi +61 -0
- data/rbi/increase/models/simulations/card_settlement_create_params.rbi +71 -0
- data/rbi/increase/models/simulations/check_deposit_reject_params.rbi +32 -0
- data/rbi/increase/models/simulations/check_deposit_return_params.rbi +32 -0
- data/rbi/increase/models/simulations/check_deposit_submit_params.rbi +32 -0
- data/rbi/increase/models/simulations/check_transfer_mail_params.rbi +32 -0
- data/rbi/increase/models/simulations/digital_wallet_token_request_create_params.rbi +45 -0
- data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +167 -0
- data/rbi/increase/models/simulations/document_create_params.rbi +45 -0
- data/rbi/increase/models/simulations/inbound_ach_transfer_create_params.rbi +508 -0
- data/rbi/increase/models/simulations/inbound_check_deposit_create_params.rbi +64 -0
- data/rbi/increase/models/simulations/inbound_funds_hold_release_params.rbi +32 -0
- data/rbi/increase/models/simulations/inbound_funds_hold_release_response.rbi +280 -0
- data/rbi/increase/models/simulations/inbound_mail_item_create_params.rbi +69 -0
- data/rbi/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbi +113 -0
- data/rbi/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbi +248 -0
- data/rbi/increase/models/simulations/inbound_wire_transfer_create_params.rbi +251 -0
- data/rbi/increase/models/simulations/interest_payment_create_params.rbi +89 -0
- data/rbi/increase/models/simulations/physical_card_advance_shipment_params.rbi +134 -0
- data/rbi/increase/models/simulations/physical_card_tracking_updates_params.rbi +152 -0
- data/rbi/increase/models/simulations/program_create_params.rbi +59 -0
- data/rbi/increase/models/simulations/real_time_payments_transfer_complete_params.rbi +277 -0
- data/rbi/increase/models/simulations/wire_transfer_reverse_params.rbi +32 -0
- data/rbi/increase/models/simulations/wire_transfer_submit_params.rbi +32 -0
- data/rbi/increase/models/supplemental_document_create_params.rbi +54 -0
- data/rbi/increase/models/supplemental_document_list_params.rbi +87 -0
- data/rbi/increase/models/transaction.rbi +10456 -0
- data/rbi/increase/models/transaction_list_params.rbi +473 -0
- data/rbi/increase/models/transaction_retrieve_params.rbi +30 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +324 -0
- data/rbi/increase/models/wire_drawdown_request_create_params.rbi +179 -0
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +205 -0
- data/rbi/increase/models/wire_drawdown_request_retrieve_params.rbi +30 -0
- data/rbi/increase/models/wire_transfer.rbi +974 -0
- data/rbi/increase/models/wire_transfer_approve_params.rbi +30 -0
- data/rbi/increase/models/wire_transfer_cancel_params.rbi +27 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +211 -0
- data/rbi/increase/models/wire_transfer_list_params.rbi +185 -0
- data/rbi/increase/models/wire_transfer_retrieve_params.rbi +30 -0
- data/rbi/increase/models.rbi +517 -0
- data/rbi/increase/request_options.rbi +59 -0
- data/rbi/increase/resources/account_numbers.rbi +113 -0
- data/rbi/increase/resources/account_statements.rbi +50 -0
- data/rbi/increase/resources/account_transfers.rbi +110 -0
- data/rbi/increase/resources/accounts.rbi +137 -0
- data/rbi/increase/resources/ach_prenotifications.rbi +107 -0
- data/rbi/increase/resources/ach_transfers.rbi +179 -0
- data/rbi/increase/resources/bookkeeping_accounts.rbi +94 -0
- data/rbi/increase/resources/bookkeeping_entries.rbi +47 -0
- data/rbi/increase/resources/bookkeeping_entry_sets.rbi +75 -0
- data/rbi/increase/resources/card_disputes.rbi +78 -0
- data/rbi/increase/resources/card_payments.rbi +52 -0
- data/rbi/increase/resources/card_purchase_supplements.rbi +51 -0
- data/rbi/increase/resources/cards.rbi +134 -0
- data/rbi/increase/resources/check_deposits.rbi +81 -0
- data/rbi/increase/resources/check_transfers.rbi +146 -0
- data/rbi/increase/resources/declined_transactions.rbi +55 -0
- data/rbi/increase/resources/digital_card_profiles.rbi +147 -0
- data/rbi/increase/resources/digital_wallet_tokens.rbi +49 -0
- data/rbi/increase/resources/documents.rbi +75 -0
- data/rbi/increase/resources/entities.rbi +241 -0
- data/rbi/increase/resources/event_subscriptions.rbi +94 -0
- data/rbi/increase/resources/events.rbi +51 -0
- data/rbi/increase/resources/exports.rbi +94 -0
- data/rbi/increase/resources/external_accounts.rbi +110 -0
- data/rbi/increase/resources/file_links.rbi +30 -0
- data/rbi/increase/resources/files.rbi +78 -0
- data/rbi/increase/resources/groups.rbi +21 -0
- data/rbi/increase/resources/inbound_ach_transfers.rbi +114 -0
- data/rbi/increase/resources/inbound_check_deposits.rbi +85 -0
- data/rbi/increase/resources/inbound_mail_items.rbi +49 -0
- data/rbi/increase/resources/inbound_real_time_payments_transfers.rbi +57 -0
- data/rbi/increase/resources/inbound_wire_drawdown_requests.rbi +46 -0
- data/rbi/increase/resources/inbound_wire_transfers.rbi +72 -0
- data/rbi/increase/resources/intrafi_account_enrollments.rbi +86 -0
- data/rbi/increase/resources/intrafi_balances.rbi +28 -0
- data/rbi/increase/resources/intrafi_exclusions.rbi +86 -0
- data/rbi/increase/resources/lockboxes.rbi +98 -0
- data/rbi/increase/resources/oauth_applications.rbi +48 -0
- data/rbi/increase/resources/oauth_connections.rbi +50 -0
- data/rbi/increase/resources/oauth_tokens.rbi +44 -0
- data/rbi/increase/resources/pending_transactions.rbi +98 -0
- data/rbi/increase/resources/physical_card_profiles.rbi +128 -0
- data/rbi/increase/resources/physical_cards.rbi +96 -0
- data/rbi/increase/resources/programs.rbi +44 -0
- data/rbi/increase/resources/real_time_decisions.rbi +65 -0
- data/rbi/increase/resources/real_time_payments_transfers.rbi +141 -0
- data/rbi/increase/resources/routing_numbers.rbi +38 -0
- data/rbi/increase/resources/simulations/account_statements.rbi +29 -0
- data/rbi/increase/resources/simulations/account_transfers.rbi +31 -0
- data/rbi/increase/resources/simulations/ach_transfers.rbi +115 -0
- data/rbi/increase/resources/simulations/card_authorization_expirations.rbi +28 -0
- data/rbi/increase/resources/simulations/card_authorizations.rbi +97 -0
- data/rbi/increase/resources/simulations/card_disputes.rbi +38 -0
- data/rbi/increase/resources/simulations/card_fuel_confirmations.rbi +34 -0
- data/rbi/increase/resources/simulations/card_increments.rbi +38 -0
- data/rbi/increase/resources/simulations/card_refunds.rbi +30 -0
- data/rbi/increase/resources/simulations/card_reversals.rbi +35 -0
- data/rbi/increase/resources/simulations/card_settlements.rbi +40 -0
- data/rbi/increase/resources/simulations/check_deposits.rbi +60 -0
- data/rbi/increase/resources/simulations/check_transfers.rbi +31 -0
- data/rbi/increase/resources/simulations/digital_wallet_token_requests.rbi +31 -0
- data/rbi/increase/resources/simulations/documents.rbi +28 -0
- data/rbi/increase/resources/simulations/inbound_ach_transfers.rbi +75 -0
- data/rbi/increase/resources/simulations/inbound_check_deposits.rbi +39 -0
- data/rbi/increase/resources/simulations/inbound_funds_holds.rbi +31 -0
- data/rbi/increase/resources/simulations/inbound_mail_items.rbi +36 -0
- data/rbi/increase/resources/simulations/inbound_real_time_payments_transfers.rbi +49 -0
- data/rbi/increase/resources/simulations/inbound_wire_drawdown_requests.rbi +92 -0
- data/rbi/increase/resources/simulations/inbound_wire_transfers.rbi +91 -0
- data/rbi/increase/resources/simulations/interest_payments.rbi +41 -0
- data/rbi/increase/resources/simulations/physical_cards.rbi +66 -0
- data/rbi/increase/resources/simulations/programs.rbi +34 -0
- data/rbi/increase/resources/simulations/real_time_payments_transfers.rbi +35 -0
- data/rbi/increase/resources/simulations/wire_transfers.rbi +47 -0
- data/rbi/increase/resources/simulations.rbi +105 -0
- data/rbi/increase/resources/supplemental_documents.rbi +58 -0
- data/rbi/increase/resources/transactions.rbi +55 -0
- data/rbi/increase/resources/wire_drawdown_requests.rbi +110 -0
- data/rbi/increase/resources/wire_transfers.rbi +151 -0
- data/rbi/increase/version.rbi +5 -0
- data/sig/increase/client.rbs +135 -0
- data/sig/increase/errors.rbs +145 -0
- data/sig/increase/file_part.rbs +21 -0
- data/sig/increase/internal/page.rbs +13 -0
- data/sig/increase/internal/transport/base_client.rbs +131 -0
- data/sig/increase/internal/transport/pooled_net_requester.rbs +45 -0
- data/sig/increase/internal/type/array_of.rbs +48 -0
- data/sig/increase/internal/type/base_model.rbs +102 -0
- data/sig/increase/internal/type/base_page.rbs +24 -0
- data/sig/increase/internal/type/boolean.rbs +26 -0
- data/sig/increase/internal/type/converter.rbs +56 -0
- data/sig/increase/internal/type/enum.rbs +32 -0
- data/sig/increase/internal/type/file_input.rbs +25 -0
- data/sig/increase/internal/type/hash_of.rbs +48 -0
- data/sig/increase/internal/type/request_parameters.rbs +17 -0
- data/sig/increase/internal/type/union.rbs +52 -0
- data/sig/increase/internal/type/unknown.rbs +26 -0
- data/sig/increase/internal/util.rbs +185 -0
- data/sig/increase/internal.rbs +9 -0
- data/sig/increase/models/account.rbs +157 -0
- data/sig/increase/models/account_balance_params.rbs +25 -0
- data/sig/increase/models/account_close_params.rbs +15 -0
- data/sig/increase/models/account_create_params.rbs +47 -0
- data/sig/increase/models/account_list_params.rbs +149 -0
- data/sig/increase/models/account_number.rbs +157 -0
- data/sig/increase/models/account_number_create_params.rbs +111 -0
- data/sig/increase/models/account_number_list_params.rbs +182 -0
- data/sig/increase/models/account_number_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_number_update_params.rbs +138 -0
- data/sig/increase/models/account_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_statement.rbs +70 -0
- data/sig/increase/models/account_statement_list_params.rbs +86 -0
- data/sig/increase/models/account_statement_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_transfer.rbs +266 -0
- data/sig/increase/models/account_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/account_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/account_transfer_create_params.rbs +48 -0
- data/sig/increase/models/account_transfer_list_params.rbs +93 -0
- data/sig/increase/models/account_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/account_update_params.rbs +25 -0
- data/sig/increase/models/ach_prenotification.rbs +561 -0
- data/sig/increase/models/ach_prenotification_create_params.rbs +148 -0
- data/sig/increase/models/ach_prenotification_list_params.rbs +86 -0
- data/sig/increase/models/ach_prenotification_retrieve_params.rbs +15 -0
- data/sig/increase/models/ach_transfer.rbs +1207 -0
- data/sig/increase/models/ach_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/ach_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/ach_transfer_create_params.rbs +379 -0
- data/sig/increase/models/ach_transfer_list_params.rbs +172 -0
- data/sig/increase/models/ach_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/balance_lookup.rbs +45 -0
- data/sig/increase/models/bookkeeping_account.rbs +74 -0
- data/sig/increase/models/bookkeeping_account_balance_params.rbs +25 -0
- data/sig/increase/models/bookkeeping_account_create_params.rbs +63 -0
- data/sig/increase/models/bookkeeping_account_list_params.rbs +38 -0
- data/sig/increase/models/bookkeeping_account_update_params.rbs +23 -0
- data/sig/increase/models/bookkeeping_balance_lookup.rbs +40 -0
- data/sig/increase/models/bookkeeping_entry.rbs +55 -0
- data/sig/increase/models/bookkeeping_entry_list_params.rbs +38 -0
- data/sig/increase/models/bookkeeping_entry_retrieve_params.rbs +15 -0
- data/sig/increase/models/bookkeeping_entry_set.rbs +78 -0
- data/sig/increase/models/bookkeeping_entry_set_create_params.rbs +52 -0
- data/sig/increase/models/bookkeeping_entry_set_list_params.rbs +49 -0
- data/sig/increase/models/bookkeeping_entry_set_retrieve_params.rbs +15 -0
- data/sig/increase/models/card.rbs +167 -0
- data/sig/increase/models/card_create_params.rbs +126 -0
- data/sig/increase/models/card_details.rbs +55 -0
- data/sig/increase/models/card_details_params.rbs +15 -0
- data/sig/increase/models/card_dispute.rbs +207 -0
- data/sig/increase/models/card_dispute_create_params.rbs +34 -0
- data/sig/increase/models/card_dispute_list_params.rbs +146 -0
- data/sig/increase/models/card_dispute_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_list_params.rbs +138 -0
- data/sig/increase/models/card_payment.rbs +4955 -0
- data/sig/increase/models/card_payment_list_params.rbs +93 -0
- data/sig/increase/models/card_payment_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_purchase_supplement.rbs +329 -0
- data/sig/increase/models/card_purchase_supplement_list_params.rbs +86 -0
- data/sig/increase/models/card_purchase_supplement_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_retrieve_params.rbs +15 -0
- data/sig/increase/models/card_update_params.rbs +147 -0
- data/sig/increase/models/check_deposit.rbs +643 -0
- data/sig/increase/models/check_deposit_create_params.rbs +48 -0
- data/sig/increase/models/check_deposit_list_params.rbs +93 -0
- data/sig/increase/models/check_deposit_retrieve_params.rbs +15 -0
- data/sig/increase/models/check_transfer.rbs +729 -0
- data/sig/increase/models/check_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/check_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/check_transfer_create_params.rbs +262 -0
- data/sig/increase/models/check_transfer_list_params.rbs +169 -0
- data/sig/increase/models/check_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/check_transfer_stop_payment_params.rbs +45 -0
- data/sig/increase/models/declined_transaction.rbs +1469 -0
- data/sig/increase/models/declined_transaction_list_params.rbs +159 -0
- data/sig/increase/models/declined_transaction_retrieve_params.rbs +15 -0
- data/sig/increase/models/digital_card_profile.rbs +129 -0
- data/sig/increase/models/digital_card_profile_archive_params.rbs +15 -0
- data/sig/increase/models/digital_card_profile_clone_params.rbs +100 -0
- data/sig/increase/models/digital_card_profile_create_params.rbs +90 -0
- data/sig/increase/models/digital_card_profile_list_params.rbs +92 -0
- data/sig/increase/models/digital_card_profile_retrieve_params.rbs +15 -0
- data/sig/increase/models/digital_wallet_token.rbs +238 -0
- data/sig/increase/models/digital_wallet_token_list_params.rbs +86 -0
- data/sig/increase/models/digital_wallet_token_retrieve_params.rbs +15 -0
- data/sig/increase/models/document.rbs +103 -0
- data/sig/increase/models/document_create_params.rbs +61 -0
- data/sig/increase/models/document_list_params.rbs +149 -0
- data/sig/increase/models/document_retrieve_params.rbs +15 -0
- data/sig/increase/models/entity.rbs +1170 -0
- data/sig/increase/models/entity_archive_beneficial_owner_params.rbs +24 -0
- data/sig/increase/models/entity_archive_params.rbs +15 -0
- data/sig/increase/models/entity_confirm_params.rbs +25 -0
- data/sig/increase/models/entity_create_beneficial_owner_params.rbs +333 -0
- data/sig/increase/models/entity_create_params.rbs +1889 -0
- data/sig/increase/models/entity_list_params.rbs +131 -0
- data/sig/increase/models/entity_retrieve_params.rbs +15 -0
- data/sig/increase/models/entity_supplemental_document.rbs +50 -0
- data/sig/increase/models/entity_update_address_params.rbs +63 -0
- data/sig/increase/models/entity_update_beneficial_owner_address_params.rbs +81 -0
- data/sig/increase/models/entity_update_industry_code_params.rbs +23 -0
- data/sig/increase/models/event.rbs +423 -0
- data/sig/increase/models/event_list_params.rbs +482 -0
- data/sig/increase/models/event_retrieve_params.rbs +15 -0
- data/sig/increase/models/event_subscription.rbs +453 -0
- data/sig/increase/models/event_subscription_create_params.rbs +417 -0
- data/sig/increase/models/event_subscription_list_params.rbs +38 -0
- data/sig/increase/models/event_subscription_retrieve_params.rbs +15 -0
- data/sig/increase/models/event_subscription_update_params.rbs +45 -0
- data/sig/increase/models/export.rbs +118 -0
- data/sig/increase/models/export_create_params.rbs +427 -0
- data/sig/increase/models/export_list_params.rbs +195 -0
- data/sig/increase/models/export_retrieve_params.rbs +15 -0
- data/sig/increase/models/external_account.rbs +123 -0
- data/sig/increase/models/external_account_create_params.rbs +88 -0
- data/sig/increase/models/external_account_list_params.rbs +93 -0
- data/sig/increase/models/external_account_retrieve_params.rbs +15 -0
- data/sig/increase/models/external_account_update_params.rbs +100 -0
- data/sig/increase/models/file.rbs +196 -0
- data/sig/increase/models/file_create_params.rbs +110 -0
- data/sig/increase/models/file_link.rbs +60 -0
- data/sig/increase/models/file_link_create_params.rbs +30 -0
- data/sig/increase/models/file_list_params.rbs +226 -0
- data/sig/increase/models/file_retrieve_params.rbs +15 -0
- data/sig/increase/models/group.rbs +78 -0
- data/sig/increase/models/group_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +886 -0
- data/sig/increase/models/inbound_ach_transfer_create_notification_of_change_params.rbs +32 -0
- data/sig/increase/models/inbound_ach_transfer_decline_params.rbs +76 -0
- data/sig/increase/models/inbound_ach_transfer_list_params.rbs +143 -0
- data/sig/increase/models/inbound_ach_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_ach_transfer_transfer_return_params.rbs +74 -0
- data/sig/increase/models/inbound_check_deposit.rbs +304 -0
- data/sig/increase/models/inbound_check_deposit_decline_params.rbs +15 -0
- data/sig/increase/models/inbound_check_deposit_list_params.rbs +93 -0
- data/sig/increase/models/inbound_check_deposit_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_check_deposit_return_params.rbs +52 -0
- data/sig/increase/models/inbound_mail_item.rbs +100 -0
- data/sig/increase/models/inbound_mail_item_list_params.rbs +86 -0
- data/sig/increase/models/inbound_mail_item_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +222 -0
- data/sig/increase/models/inbound_real_time_payments_transfer_list_params.rbs +93 -0
- data/sig/increase/models/inbound_real_time_payments_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_wire_drawdown_request.rbs +140 -0
- data/sig/increase/models/inbound_wire_drawdown_request_list_params.rbs +32 -0
- data/sig/increase/models/inbound_wire_drawdown_request_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_wire_transfer.rbs +211 -0
- data/sig/increase/models/inbound_wire_transfer_list_params.rbs +143 -0
- data/sig/increase/models/inbound_wire_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/inbound_wire_transfer_reverse_params.rbs +38 -0
- data/sig/increase/models/intrafi_account_enrollment.rbs +88 -0
- data/sig/increase/models/intrafi_account_enrollment_create_params.rbs +28 -0
- data/sig/increase/models/intrafi_account_enrollment_list_params.rbs +107 -0
- data/sig/increase/models/intrafi_account_enrollment_retrieve_params.rbs +15 -0
- data/sig/increase/models/intrafi_account_enrollment_unenroll_params.rbs +15 -0
- data/sig/increase/models/intrafi_balance.rbs +130 -0
- data/sig/increase/models/intrafi_balance_intrafi_balance_params.rbs +15 -0
- data/sig/increase/models/intrafi_exclusion.rbs +92 -0
- data/sig/increase/models/intrafi_exclusion_archive_params.rbs +15 -0
- data/sig/increase/models/intrafi_exclusion_create_params.rbs +28 -0
- data/sig/increase/models/intrafi_exclusion_list_params.rbs +49 -0
- data/sig/increase/models/intrafi_exclusion_retrieve_params.rbs +15 -0
- data/sig/increase/models/lockbox.rbs +126 -0
- data/sig/increase/models/lockbox_create_params.rbs +36 -0
- data/sig/increase/models/lockbox_list_params.rbs +93 -0
- data/sig/increase/models/lockbox_retrieve_params.rbs +15 -0
- data/sig/increase/models/lockbox_update_params.rbs +58 -0
- data/sig/increase/models/oauth_application.rbs +74 -0
- data/sig/increase/models/oauth_application_list_params.rbs +123 -0
- data/sig/increase/models/oauth_application_retrieve_params.rbs +15 -0
- data/sig/increase/models/oauth_connection.rbs +74 -0
- data/sig/increase/models/oauth_connection_list_params.rbs +86 -0
- data/sig/increase/models/oauth_connection_retrieve_params.rbs +15 -0
- data/sig/increase/models/oauth_token.rbs +50 -0
- data/sig/increase/models/oauth_token_create_params.rbs +68 -0
- data/sig/increase/models/pending_transaction.rbs +1266 -0
- data/sig/increase/models/pending_transaction_create_params.rbs +34 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +227 -0
- data/sig/increase/models/pending_transaction_release_params.rbs +15 -0
- data/sig/increase/models/pending_transaction_retrieve_params.rbs +15 -0
- data/sig/increase/models/physical_card.rbs +338 -0
- data/sig/increase/models/physical_card_create_params.rbs +152 -0
- data/sig/increase/models/physical_card_list_params.rbs +93 -0
- data/sig/increase/models/physical_card_profile.rbs +136 -0
- data/sig/increase/models/physical_card_profile_archive_params.rbs +15 -0
- data/sig/increase/models/physical_card_profile_clone_params.rbs +72 -0
- data/sig/increase/models/physical_card_profile_create_params.rbs +69 -0
- data/sig/increase/models/physical_card_profile_list_params.rbs +104 -0
- data/sig/increase/models/physical_card_profile_retrieve_params.rbs +15 -0
- data/sig/increase/models/physical_card_retrieve_params.rbs +15 -0
- data/sig/increase/models/physical_card_update_params.rbs +41 -0
- data/sig/increase/models/program.rbs +87 -0
- data/sig/increase/models/program_list_params.rbs +32 -0
- data/sig/increase/models/program_retrieve_params.rbs +15 -0
- data/sig/increase/models/real_time_decision.rbs +998 -0
- data/sig/increase/models/real_time_decision_action_params.rbs +317 -0
- data/sig/increase/models/real_time_decision_retrieve_params.rbs +15 -0
- data/sig/increase/models/real_time_payments_transfer.rbs +467 -0
- data/sig/increase/models/real_time_payments_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/real_time_payments_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +90 -0
- data/sig/increase/models/real_time_payments_transfer_list_params.rbs +170 -0
- data/sig/increase/models/real_time_payments_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models/routing_number_list_params.rbs +36 -0
- data/sig/increase/models/routing_number_list_response.rbs +97 -0
- data/sig/increase/models/simulations/account_statement_create_params.rbs +25 -0
- data/sig/increase/models/simulations/account_transfer_complete_params.rbs +17 -0
- data/sig/increase/models/simulations/ach_transfer_acknowledge_params.rbs +17 -0
- data/sig/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbs +117 -0
- data/sig/increase/models/simulations/ach_transfer_return_params.rbs +320 -0
- data/sig/increase/models/simulations/ach_transfer_settle_params.rbs +17 -0
- data/sig/increase/models/simulations/ach_transfer_submit_params.rbs +17 -0
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +314 -0
- data/sig/increase/models/simulations/card_authorization_create_response.rbs +42 -0
- data/sig/increase/models/simulations/card_authorization_expiration_create_params.rbs +26 -0
- data/sig/increase/models/simulations/card_dispute_action_params.rbs +59 -0
- data/sig/increase/models/simulations/card_fuel_confirmation_create_params.rbs +30 -0
- data/sig/increase/models/simulations/card_increment_create_params.rbs +40 -0
- data/sig/increase/models/simulations/card_refund_create_params.rbs +26 -0
- data/sig/increase/models/simulations/card_reversal_create_params.rbs +32 -0
- data/sig/increase/models/simulations/card_settlement_create_params.rbs +36 -0
- data/sig/increase/models/simulations/check_deposit_reject_params.rbs +17 -0
- data/sig/increase/models/simulations/check_deposit_return_params.rbs +17 -0
- data/sig/increase/models/simulations/check_deposit_submit_params.rbs +17 -0
- data/sig/increase/models/simulations/check_transfer_mail_params.rbs +17 -0
- data/sig/increase/models/simulations/digital_wallet_token_request_create_params.rbs +25 -0
- data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +66 -0
- data/sig/increase/models/simulations/document_create_params.rbs +25 -0
- data/sig/increase/models/simulations/inbound_ach_transfer_create_params.rbs +243 -0
- data/sig/increase/models/simulations/inbound_check_deposit_create_params.rbs +34 -0
- data/sig/increase/models/simulations/inbound_funds_hold_release_params.rbs +17 -0
- data/sig/increase/models/simulations/inbound_funds_hold_release_response.rbs +117 -0
- data/sig/increase/models/simulations/inbound_mail_item_create_params.rbs +36 -0
- data/sig/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbs +68 -0
- data/sig/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbs +147 -0
- data/sig/increase/models/simulations/inbound_wire_transfer_create_params.rbs +138 -0
- data/sig/increase/models/simulations/interest_payment_create_params.rbs +54 -0
- data/sig/increase/models/simulations/physical_card_advance_shipment_params.rbs +68 -0
- data/sig/increase/models/simulations/physical_card_tracking_updates_params.rbs +80 -0
- data/sig/increase/models/simulations/program_create_params.rbs +32 -0
- data/sig/increase/models/simulations/real_time_payments_transfer_complete_params.rbs +141 -0
- data/sig/increase/models/simulations/wire_transfer_reverse_params.rbs +17 -0
- data/sig/increase/models/simulations/wire_transfer_submit_params.rbs +17 -0
- data/sig/increase/models/supplemental_document_create_params.rbs +28 -0
- data/sig/increase/models/supplemental_document_list_params.rbs +47 -0
- data/sig/increase/models/transaction.rbs +4400 -0
- data/sig/increase/models/transaction_list_params.rbs +253 -0
- data/sig/increase/models/transaction_retrieve_params.rbs +15 -0
- data/sig/increase/models/wire_drawdown_request.rbs +161 -0
- data/sig/increase/models/wire_drawdown_request_create_params.rbs +100 -0
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +93 -0
- data/sig/increase/models/wire_drawdown_request_retrieve_params.rbs +15 -0
- data/sig/increase/models/wire_transfer.rbs +469 -0
- data/sig/increase/models/wire_transfer_approve_params.rbs +15 -0
- data/sig/increase/models/wire_transfer_cancel_params.rbs +15 -0
- data/sig/increase/models/wire_transfer_create_params.rbs +125 -0
- data/sig/increase/models/wire_transfer_list_params.rbs +100 -0
- data/sig/increase/models/wire_transfer_retrieve_params.rbs +15 -0
- data/sig/increase/models.rbs +441 -0
- data/sig/increase/request_options.rbs +34 -0
- data/sig/increase/resources/account_numbers.rbs +40 -0
- data/sig/increase/resources/account_statements.rbs +20 -0
- data/sig/increase/resources/account_transfers.rbs +40 -0
- data/sig/increase/resources/accounts.rbs +49 -0
- data/sig/increase/resources/ach_prenotifications.rbs +37 -0
- data/sig/increase/resources/ach_transfers.rbs +56 -0
- data/sig/increase/resources/bookkeeping_accounts.rbs +34 -0
- data/sig/increase/resources/bookkeeping_entries.rbs +19 -0
- data/sig/increase/resources/bookkeeping_entry_sets.rbs +27 -0
- data/sig/increase/resources/card_disputes.rbs +28 -0
- data/sig/increase/resources/card_payments.rbs +21 -0
- data/sig/increase/resources/card_purchase_supplements.rbs +20 -0
- data/sig/increase/resources/cards.rbs +46 -0
- data/sig/increase/resources/check_deposits.rbs +30 -0
- data/sig/increase/resources/check_transfers.rbs +50 -0
- data/sig/increase/resources/declined_transactions.rbs +22 -0
- data/sig/increase/resources/digital_card_profiles.rbs +52 -0
- data/sig/increase/resources/digital_wallet_tokens.rbs +20 -0
- data/sig/increase/resources/documents.rbs +28 -0
- data/sig/increase/resources/entities.rbs +76 -0
- data/sig/increase/resources/event_subscriptions.rbs +33 -0
- data/sig/increase/resources/events.rbs +21 -0
- data/sig/increase/resources/exports.rbs +33 -0
- data/sig/increase/resources/external_accounts.rbs +39 -0
- data/sig/increase/resources/file_links.rbs +13 -0
- data/sig/increase/resources/files.rbs +28 -0
- data/sig/increase/resources/groups.rbs +11 -0
- data/sig/increase/resources/inbound_ach_transfers.rbs +41 -0
- data/sig/increase/resources/inbound_check_deposits.rbs +32 -0
- data/sig/increase/resources/inbound_mail_items.rbs +20 -0
- data/sig/increase/resources/inbound_real_time_payments_transfers.rbs +21 -0
- data/sig/increase/resources/inbound_wire_drawdown_requests.rbs +18 -0
- data/sig/increase/resources/inbound_wire_transfers.rbs +28 -0
- data/sig/increase/resources/intrafi_account_enrollments.rbs +32 -0
- data/sig/increase/resources/intrafi_balances.rbs +12 -0
- data/sig/increase/resources/intrafi_exclusions.rbs +31 -0
- data/sig/increase/resources/lockboxes.rbs +36 -0
- data/sig/increase/resources/oauth_applications.rbs +20 -0
- data/sig/increase/resources/oauth_connections.rbs +20 -0
- data/sig/increase/resources/oauth_tokens.rbs +16 -0
- data/sig/increase/resources/pending_transactions.rbs +35 -0
- data/sig/increase/resources/physical_card_profiles.rbs +45 -0
- data/sig/increase/resources/physical_cards.rbs +35 -0
- data/sig/increase/resources/programs.rbs +18 -0
- data/sig/increase/resources/real_time_decisions.rbs +22 -0
- data/sig/increase/resources/real_time_payments_transfers.rbs +48 -0
- data/sig/increase/resources/routing_numbers.rbs +14 -0
- data/sig/increase/resources/simulations/account_statements.rbs +14 -0
- data/sig/increase/resources/simulations/account_transfers.rbs +14 -0
- data/sig/increase/resources/simulations/ach_transfers.rbs +37 -0
- data/sig/increase/resources/simulations/card_authorization_expirations.rbs +14 -0
- data/sig/increase/resources/simulations/card_authorizations.rbs +30 -0
- data/sig/increase/resources/simulations/card_disputes.rbs +16 -0
- data/sig/increase/resources/simulations/card_fuel_confirmations.rbs +15 -0
- data/sig/increase/resources/simulations/card_increments.rbs +16 -0
- data/sig/increase/resources/simulations/card_refunds.rbs +14 -0
- data/sig/increase/resources/simulations/card_reversals.rbs +15 -0
- data/sig/increase/resources/simulations/card_settlements.rbs +16 -0
- data/sig/increase/resources/simulations/check_deposits.rbs +24 -0
- data/sig/increase/resources/simulations/check_transfers.rbs +14 -0
- data/sig/increase/resources/simulations/digital_wallet_token_requests.rbs +14 -0
- data/sig/increase/resources/simulations/documents.rbs +14 -0
- data/sig/increase/resources/simulations/inbound_ach_transfers.rbs +25 -0
- data/sig/increase/resources/simulations/inbound_check_deposits.rbs +16 -0
- data/sig/increase/resources/simulations/inbound_funds_holds.rbs +14 -0
- data/sig/increase/resources/simulations/inbound_mail_items.rbs +16 -0
- data/sig/increase/resources/simulations/inbound_real_time_payments_transfers.rbs +20 -0
- data/sig/increase/resources/simulations/inbound_wire_drawdown_requests.rbs +33 -0
- data/sig/increase/resources/simulations/inbound_wire_transfers.rbs +30 -0
- data/sig/increase/resources/simulations/interest_payments.rbs +18 -0
- data/sig/increase/resources/simulations/physical_cards.rbs +25 -0
- data/sig/increase/resources/simulations/programs.rbs +15 -0
- data/sig/increase/resources/simulations/real_time_payments_transfers.rbs +15 -0
- data/sig/increase/resources/simulations/wire_transfers.rbs +19 -0
- data/sig/increase/resources/simulations.rbs +61 -0
- data/sig/increase/resources/supplemental_documents.rbs +21 -0
- data/sig/increase/resources/transactions.rbs +22 -0
- data/sig/increase/resources/wire_drawdown_requests.rbs +37 -0
- data/sig/increase/resources/wire_transfers.rbs +52 -0
- data/sig/increase/version.rbs +3 -0
- metadata +1068 -176
- data/.rspec +0 -3
- data/.standard.yml +0 -3
- data/Gemfile +0 -6
- data/LICENSE.txt +0 -21
- data/OPENAPI_VERSION +0 -1
- data/Rakefile +0 -10
- data/bin/generate +0 -152
- data/bin/setup +0 -8
- data/generate/resource.rb.erb +0 -18
- data/lib/increase/configuration.rb +0 -50
- data/lib/increase/file_upload.rb +0 -57
- data/lib/increase/middleware/encode_json.rb +0 -57
- data/lib/increase/middleware/parse_json.rb +0 -42
- data/lib/increase/middleware/raise_api_error.rb +0 -13
- data/lib/increase/resource.rb +0 -205
- data/lib/increase/resources/card_profiles.rb +0 -17
- data/lib/increase/resources/inbound_ach_transfer_returns.rb +0 -17
- data/lib/increase/resources/limits.rb +0 -19
- data/lib/increase/resources.rb +0 -4
- data/lib/increase/response_array.rb +0 -19
- data/lib/increase/response_hash.rb +0 -15
- data/lib/increase/util.rb +0 -15
- data/lib/increase/webhook/signature.rb +0 -70
- data/openapi.json +0 -32098
- data/sig/increase.rbs +0 -4
@@ -0,0 +1,4400 @@
|
|
1
|
+
module Increase
|
2
|
+
module Models
|
3
|
+
type transaction =
|
4
|
+
{
|
5
|
+
id: String,
|
6
|
+
account_id: String,
|
7
|
+
amount: Integer,
|
8
|
+
created_at: Time,
|
9
|
+
currency: Increase::Models::Transaction::currency,
|
10
|
+
description: String,
|
11
|
+
route_id: String?,
|
12
|
+
route_type: Increase::Models::Transaction::route_type?,
|
13
|
+
source: Increase::Transaction::Source,
|
14
|
+
type: Increase::Models::Transaction::type_
|
15
|
+
}
|
16
|
+
|
17
|
+
class Transaction < Increase::Internal::Type::BaseModel
|
18
|
+
attr_accessor id: String
|
19
|
+
|
20
|
+
attr_accessor account_id: String
|
21
|
+
|
22
|
+
attr_accessor amount: Integer
|
23
|
+
|
24
|
+
attr_accessor created_at: Time
|
25
|
+
|
26
|
+
attr_accessor currency: Increase::Models::Transaction::currency
|
27
|
+
|
28
|
+
attr_accessor description: String
|
29
|
+
|
30
|
+
attr_accessor route_id: String?
|
31
|
+
|
32
|
+
attr_accessor route_type: Increase::Models::Transaction::route_type?
|
33
|
+
|
34
|
+
attr_accessor source: Increase::Transaction::Source
|
35
|
+
|
36
|
+
attr_accessor type: Increase::Models::Transaction::type_
|
37
|
+
|
38
|
+
def initialize: (
|
39
|
+
id: String,
|
40
|
+
account_id: String,
|
41
|
+
amount: Integer,
|
42
|
+
created_at: Time,
|
43
|
+
currency: Increase::Models::Transaction::currency,
|
44
|
+
description: String,
|
45
|
+
route_id: String?,
|
46
|
+
route_type: Increase::Models::Transaction::route_type?,
|
47
|
+
source: Increase::Transaction::Source,
|
48
|
+
type: Increase::Models::Transaction::type_
|
49
|
+
) -> void
|
50
|
+
|
51
|
+
def to_hash: -> {
|
52
|
+
id: String,
|
53
|
+
account_id: String,
|
54
|
+
amount: Integer,
|
55
|
+
created_at: Time,
|
56
|
+
currency: Increase::Models::Transaction::currency,
|
57
|
+
description: String,
|
58
|
+
route_id: String?,
|
59
|
+
route_type: Increase::Models::Transaction::route_type?,
|
60
|
+
source: Increase::Transaction::Source,
|
61
|
+
type: Increase::Models::Transaction::type_
|
62
|
+
}
|
63
|
+
|
64
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
65
|
+
|
66
|
+
module Currency
|
67
|
+
extend Increase::Internal::Type::Enum
|
68
|
+
|
69
|
+
# Canadian Dollar (CAD)
|
70
|
+
CAD: :CAD
|
71
|
+
|
72
|
+
# Swiss Franc (CHF)
|
73
|
+
CHF: :CHF
|
74
|
+
|
75
|
+
# Euro (EUR)
|
76
|
+
EUR: :EUR
|
77
|
+
|
78
|
+
# British Pound (GBP)
|
79
|
+
GBP: :GBP
|
80
|
+
|
81
|
+
# Japanese Yen (JPY)
|
82
|
+
JPY: :JPY
|
83
|
+
|
84
|
+
# US Dollar (USD)
|
85
|
+
USD: :USD
|
86
|
+
|
87
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::currency]
|
88
|
+
end
|
89
|
+
|
90
|
+
type route_type = :account_number | :card | :lockbox
|
91
|
+
|
92
|
+
module RouteType
|
93
|
+
extend Increase::Internal::Type::Enum
|
94
|
+
|
95
|
+
# An Account Number.
|
96
|
+
ACCOUNT_NUMBER: :account_number
|
97
|
+
|
98
|
+
# A Card.
|
99
|
+
CARD: :card
|
100
|
+
|
101
|
+
# A Lockbox.
|
102
|
+
LOCKBOX: :lockbox
|
103
|
+
|
104
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::route_type]
|
105
|
+
end
|
106
|
+
|
107
|
+
type source =
|
108
|
+
{
|
109
|
+
account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?,
|
110
|
+
ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?,
|
111
|
+
ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?,
|
112
|
+
ach_transfer_return: Increase::Transaction::Source::ACHTransferReturn?,
|
113
|
+
card_dispute_acceptance: Increase::Transaction::Source::CardDisputeAcceptance?,
|
114
|
+
card_dispute_loss: Increase::Transaction::Source::CardDisputeLoss?,
|
115
|
+
card_refund: Increase::Transaction::Source::CardRefund?,
|
116
|
+
card_revenue_payment: Increase::Transaction::Source::CardRevenuePayment?,
|
117
|
+
card_settlement: Increase::Transaction::Source::CardSettlement?,
|
118
|
+
cashback_payment: Increase::Transaction::Source::CashbackPayment?,
|
119
|
+
category: Increase::Models::Transaction::Source::category,
|
120
|
+
check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?,
|
121
|
+
check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
|
122
|
+
check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
|
123
|
+
fee_payment: Increase::Transaction::Source::FeePayment?,
|
124
|
+
inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
|
125
|
+
inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
|
126
|
+
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
127
|
+
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
128
|
+
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
129
|
+
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
130
|
+
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
131
|
+
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
132
|
+
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
133
|
+
interest_payment: Increase::Transaction::Source::InterestPayment?,
|
134
|
+
internal_source: Increase::Transaction::Source::InternalSource?,
|
135
|
+
other: top?,
|
136
|
+
outbound_card_push_transfer_acceptance: Increase::Transaction::Source::OutboundCardPushTransferAcceptance?,
|
137
|
+
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
138
|
+
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
139
|
+
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
140
|
+
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
141
|
+
}
|
142
|
+
|
143
|
+
class Source < Increase::Internal::Type::BaseModel
|
144
|
+
attr_accessor account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?
|
145
|
+
|
146
|
+
attr_accessor ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?
|
147
|
+
|
148
|
+
attr_accessor ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?
|
149
|
+
|
150
|
+
attr_accessor ach_transfer_return: Increase::Transaction::Source::ACHTransferReturn?
|
151
|
+
|
152
|
+
attr_accessor card_dispute_acceptance: Increase::Transaction::Source::CardDisputeAcceptance?
|
153
|
+
|
154
|
+
attr_accessor card_dispute_loss: Increase::Transaction::Source::CardDisputeLoss?
|
155
|
+
|
156
|
+
attr_accessor card_refund: Increase::Transaction::Source::CardRefund?
|
157
|
+
|
158
|
+
attr_accessor card_revenue_payment: Increase::Transaction::Source::CardRevenuePayment?
|
159
|
+
|
160
|
+
attr_accessor card_settlement: Increase::Transaction::Source::CardSettlement?
|
161
|
+
|
162
|
+
attr_accessor cashback_payment: Increase::Transaction::Source::CashbackPayment?
|
163
|
+
|
164
|
+
attr_accessor category: Increase::Models::Transaction::Source::category
|
165
|
+
|
166
|
+
attr_accessor check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?
|
167
|
+
|
168
|
+
attr_accessor check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?
|
169
|
+
|
170
|
+
attr_accessor check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?
|
171
|
+
|
172
|
+
attr_accessor fee_payment: Increase::Transaction::Source::FeePayment?
|
173
|
+
|
174
|
+
attr_accessor inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?
|
175
|
+
|
176
|
+
attr_accessor inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?
|
177
|
+
|
178
|
+
attr_accessor inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?
|
179
|
+
|
180
|
+
attr_accessor inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?
|
181
|
+
|
182
|
+
attr_accessor inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?
|
183
|
+
|
184
|
+
attr_accessor inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?
|
185
|
+
|
186
|
+
attr_accessor inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?
|
187
|
+
|
188
|
+
attr_accessor inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?
|
189
|
+
|
190
|
+
attr_accessor inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?
|
191
|
+
|
192
|
+
attr_accessor interest_payment: Increase::Transaction::Source::InterestPayment?
|
193
|
+
|
194
|
+
attr_accessor internal_source: Increase::Transaction::Source::InternalSource?
|
195
|
+
|
196
|
+
attr_accessor other: top?
|
197
|
+
|
198
|
+
attr_accessor outbound_card_push_transfer_acceptance: Increase::Transaction::Source::OutboundCardPushTransferAcceptance?
|
199
|
+
|
200
|
+
attr_accessor real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?
|
201
|
+
|
202
|
+
attr_accessor sample_funds: Increase::Transaction::Source::SampleFunds?
|
203
|
+
|
204
|
+
attr_accessor swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?
|
205
|
+
|
206
|
+
attr_accessor wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
207
|
+
|
208
|
+
def initialize: (
|
209
|
+
account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?,
|
210
|
+
ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?,
|
211
|
+
ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?,
|
212
|
+
ach_transfer_return: Increase::Transaction::Source::ACHTransferReturn?,
|
213
|
+
card_dispute_acceptance: Increase::Transaction::Source::CardDisputeAcceptance?,
|
214
|
+
card_dispute_loss: Increase::Transaction::Source::CardDisputeLoss?,
|
215
|
+
card_refund: Increase::Transaction::Source::CardRefund?,
|
216
|
+
card_revenue_payment: Increase::Transaction::Source::CardRevenuePayment?,
|
217
|
+
card_settlement: Increase::Transaction::Source::CardSettlement?,
|
218
|
+
cashback_payment: Increase::Transaction::Source::CashbackPayment?,
|
219
|
+
category: Increase::Models::Transaction::Source::category,
|
220
|
+
check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?,
|
221
|
+
check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
|
222
|
+
check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
|
223
|
+
fee_payment: Increase::Transaction::Source::FeePayment?,
|
224
|
+
inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
|
225
|
+
inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
|
226
|
+
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
227
|
+
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
228
|
+
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
229
|
+
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
230
|
+
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
231
|
+
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
232
|
+
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
233
|
+
interest_payment: Increase::Transaction::Source::InterestPayment?,
|
234
|
+
internal_source: Increase::Transaction::Source::InternalSource?,
|
235
|
+
other: top?,
|
236
|
+
outbound_card_push_transfer_acceptance: Increase::Transaction::Source::OutboundCardPushTransferAcceptance?,
|
237
|
+
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
238
|
+
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
239
|
+
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
240
|
+
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
241
|
+
) -> void
|
242
|
+
|
243
|
+
def to_hash: -> {
|
244
|
+
account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?,
|
245
|
+
ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?,
|
246
|
+
ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?,
|
247
|
+
ach_transfer_return: Increase::Transaction::Source::ACHTransferReturn?,
|
248
|
+
card_dispute_acceptance: Increase::Transaction::Source::CardDisputeAcceptance?,
|
249
|
+
card_dispute_loss: Increase::Transaction::Source::CardDisputeLoss?,
|
250
|
+
card_refund: Increase::Transaction::Source::CardRefund?,
|
251
|
+
card_revenue_payment: Increase::Transaction::Source::CardRevenuePayment?,
|
252
|
+
card_settlement: Increase::Transaction::Source::CardSettlement?,
|
253
|
+
cashback_payment: Increase::Transaction::Source::CashbackPayment?,
|
254
|
+
category: Increase::Models::Transaction::Source::category,
|
255
|
+
check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?,
|
256
|
+
check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
|
257
|
+
check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
|
258
|
+
fee_payment: Increase::Transaction::Source::FeePayment?,
|
259
|
+
inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
|
260
|
+
inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
|
261
|
+
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
262
|
+
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
263
|
+
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
264
|
+
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
265
|
+
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
266
|
+
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
267
|
+
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
268
|
+
interest_payment: Increase::Transaction::Source::InterestPayment?,
|
269
|
+
internal_source: Increase::Transaction::Source::InternalSource?,
|
270
|
+
other: top?,
|
271
|
+
outbound_card_push_transfer_acceptance: Increase::Transaction::Source::OutboundCardPushTransferAcceptance?,
|
272
|
+
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
273
|
+
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
274
|
+
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
275
|
+
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
276
|
+
}
|
277
|
+
|
278
|
+
type account_transfer_intention =
|
279
|
+
{
|
280
|
+
amount: Integer,
|
281
|
+
currency: Increase::Models::Transaction::Source::AccountTransferIntention::currency,
|
282
|
+
description: String,
|
283
|
+
destination_account_id: String,
|
284
|
+
source_account_id: String,
|
285
|
+
transfer_id: String
|
286
|
+
}
|
287
|
+
|
288
|
+
class AccountTransferIntention < Increase::Internal::Type::BaseModel
|
289
|
+
attr_accessor amount: Integer
|
290
|
+
|
291
|
+
attr_accessor currency: Increase::Models::Transaction::Source::AccountTransferIntention::currency
|
292
|
+
|
293
|
+
attr_accessor description: String
|
294
|
+
|
295
|
+
attr_accessor destination_account_id: String
|
296
|
+
|
297
|
+
attr_accessor source_account_id: String
|
298
|
+
|
299
|
+
attr_accessor transfer_id: String
|
300
|
+
|
301
|
+
def initialize: (
|
302
|
+
amount: Integer,
|
303
|
+
currency: Increase::Models::Transaction::Source::AccountTransferIntention::currency,
|
304
|
+
description: String,
|
305
|
+
destination_account_id: String,
|
306
|
+
source_account_id: String,
|
307
|
+
transfer_id: String
|
308
|
+
) -> void
|
309
|
+
|
310
|
+
def to_hash: -> {
|
311
|
+
amount: Integer,
|
312
|
+
currency: Increase::Models::Transaction::Source::AccountTransferIntention::currency,
|
313
|
+
description: String,
|
314
|
+
destination_account_id: String,
|
315
|
+
source_account_id: String,
|
316
|
+
transfer_id: String
|
317
|
+
}
|
318
|
+
|
319
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
320
|
+
|
321
|
+
module Currency
|
322
|
+
extend Increase::Internal::Type::Enum
|
323
|
+
|
324
|
+
# Canadian Dollar (CAD)
|
325
|
+
CAD: :CAD
|
326
|
+
|
327
|
+
# Swiss Franc (CHF)
|
328
|
+
CHF: :CHF
|
329
|
+
|
330
|
+
# Euro (EUR)
|
331
|
+
EUR: :EUR
|
332
|
+
|
333
|
+
# British Pound (GBP)
|
334
|
+
GBP: :GBP
|
335
|
+
|
336
|
+
# Japanese Yen (JPY)
|
337
|
+
JPY: :JPY
|
338
|
+
|
339
|
+
# US Dollar (USD)
|
340
|
+
USD: :USD
|
341
|
+
|
342
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::AccountTransferIntention::currency]
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
type ach_transfer_intention =
|
347
|
+
{
|
348
|
+
account_number: String,
|
349
|
+
amount: Integer,
|
350
|
+
routing_number: String,
|
351
|
+
statement_descriptor: String,
|
352
|
+
transfer_id: String
|
353
|
+
}
|
354
|
+
|
355
|
+
class ACHTransferIntention < Increase::Internal::Type::BaseModel
|
356
|
+
attr_accessor account_number: String
|
357
|
+
|
358
|
+
attr_accessor amount: Integer
|
359
|
+
|
360
|
+
attr_accessor routing_number: String
|
361
|
+
|
362
|
+
attr_accessor statement_descriptor: String
|
363
|
+
|
364
|
+
attr_accessor transfer_id: String
|
365
|
+
|
366
|
+
def initialize: (
|
367
|
+
account_number: String,
|
368
|
+
amount: Integer,
|
369
|
+
routing_number: String,
|
370
|
+
statement_descriptor: String,
|
371
|
+
transfer_id: String
|
372
|
+
) -> void
|
373
|
+
|
374
|
+
def to_hash: -> {
|
375
|
+
account_number: String,
|
376
|
+
amount: Integer,
|
377
|
+
routing_number: String,
|
378
|
+
statement_descriptor: String,
|
379
|
+
transfer_id: String
|
380
|
+
}
|
381
|
+
end
|
382
|
+
|
383
|
+
type ach_transfer_rejection = { transfer_id: String }
|
384
|
+
|
385
|
+
class ACHTransferRejection < Increase::Internal::Type::BaseModel
|
386
|
+
attr_accessor transfer_id: String
|
387
|
+
|
388
|
+
def initialize: (transfer_id: String) -> void
|
389
|
+
|
390
|
+
def to_hash: -> { transfer_id: String }
|
391
|
+
end
|
392
|
+
|
393
|
+
type ach_transfer_return =
|
394
|
+
{
|
395
|
+
created_at: Time,
|
396
|
+
raw_return_reason_code: String,
|
397
|
+
return_reason_code: Increase::Models::Transaction::Source::ACHTransferReturn::return_reason_code,
|
398
|
+
trace_number: String,
|
399
|
+
transaction_id: String,
|
400
|
+
transfer_id: String
|
401
|
+
}
|
402
|
+
|
403
|
+
class ACHTransferReturn < Increase::Internal::Type::BaseModel
|
404
|
+
attr_accessor created_at: Time
|
405
|
+
|
406
|
+
attr_accessor raw_return_reason_code: String
|
407
|
+
|
408
|
+
attr_accessor return_reason_code: Increase::Models::Transaction::Source::ACHTransferReturn::return_reason_code
|
409
|
+
|
410
|
+
attr_accessor trace_number: String
|
411
|
+
|
412
|
+
attr_accessor transaction_id: String
|
413
|
+
|
414
|
+
attr_accessor transfer_id: String
|
415
|
+
|
416
|
+
def initialize: (
|
417
|
+
created_at: Time,
|
418
|
+
raw_return_reason_code: String,
|
419
|
+
return_reason_code: Increase::Models::Transaction::Source::ACHTransferReturn::return_reason_code,
|
420
|
+
trace_number: String,
|
421
|
+
transaction_id: String,
|
422
|
+
transfer_id: String
|
423
|
+
) -> void
|
424
|
+
|
425
|
+
def to_hash: -> {
|
426
|
+
created_at: Time,
|
427
|
+
raw_return_reason_code: String,
|
428
|
+
return_reason_code: Increase::Models::Transaction::Source::ACHTransferReturn::return_reason_code,
|
429
|
+
trace_number: String,
|
430
|
+
transaction_id: String,
|
431
|
+
transfer_id: String
|
432
|
+
}
|
433
|
+
|
434
|
+
type return_reason_code =
|
435
|
+
:insufficient_fund
|
436
|
+
| :no_account
|
437
|
+
| :account_closed
|
438
|
+
| :invalid_account_number_structure
|
439
|
+
| :account_frozen_entry_returned_per_ofac_instruction
|
440
|
+
| :credit_entry_refused_by_receiver
|
441
|
+
| :unauthorized_debit_to_consumer_account_using_corporate_sec_code
|
442
|
+
| :corporate_customer_advised_not_authorized
|
443
|
+
| :payment_stopped
|
444
|
+
| :non_transaction_account
|
445
|
+
| :uncollected_funds
|
446
|
+
| :routing_number_check_digit_error
|
447
|
+
| :customer_advised_unauthorized_improper_ineligible_or_incomplete
|
448
|
+
| :amount_field_error
|
449
|
+
| :authorization_revoked_by_customer
|
450
|
+
| :invalid_ach_routing_number
|
451
|
+
| :file_record_edit_criteria
|
452
|
+
| :enr_invalid_individual_name
|
453
|
+
| :returned_per_odfi_request
|
454
|
+
| :limited_participation_dfi
|
455
|
+
| :incorrectly_coded_outbound_international_payment
|
456
|
+
| :account_sold_to_another_dfi
|
457
|
+
| :addenda_error
|
458
|
+
| :beneficiary_or_account_holder_deceased
|
459
|
+
| :customer_advised_not_within_authorization_terms
|
460
|
+
| :corrected_return
|
461
|
+
| :duplicate_entry
|
462
|
+
| :duplicate_return
|
463
|
+
| :enr_duplicate_enrollment
|
464
|
+
| :enr_invalid_dfi_account_number
|
465
|
+
| :enr_invalid_individual_id_number
|
466
|
+
| :enr_invalid_representative_payee_indicator
|
467
|
+
| :enr_invalid_transaction_code
|
468
|
+
| :enr_return_of_enr_entry
|
469
|
+
| :enr_routing_number_check_digit_error
|
470
|
+
| :entry_not_processed_by_gateway
|
471
|
+
| :field_error
|
472
|
+
| :foreign_receiving_dfi_unable_to_settle
|
473
|
+
| :iat_entry_coding_error
|
474
|
+
| :improper_effective_entry_date
|
475
|
+
| :improper_source_document_source_document_presented
|
476
|
+
| :invalid_company_id
|
477
|
+
| :invalid_foreign_receiving_dfi_identification
|
478
|
+
| :invalid_individual_id_number
|
479
|
+
| :item_and_rck_entry_presented_for_payment
|
480
|
+
| :item_related_to_rck_entry_is_ineligible
|
481
|
+
| :mandatory_field_error
|
482
|
+
| :misrouted_dishonored_return
|
483
|
+
| :misrouted_return
|
484
|
+
| :no_errors_found
|
485
|
+
| :non_acceptance_of_r62_dishonored_return
|
486
|
+
| :non_participant_in_iat_program
|
487
|
+
| :permissible_return_entry
|
488
|
+
| :permissible_return_entry_not_accepted
|
489
|
+
| :rdfi_non_settlement
|
490
|
+
| :rdfi_participant_in_check_truncation_program
|
491
|
+
| :representative_payee_deceased_or_unable_to_continue_in_that_capacity
|
492
|
+
| :return_not_a_duplicate
|
493
|
+
| :return_of_erroneous_or_reversing_debit
|
494
|
+
| :return_of_improper_credit_entry
|
495
|
+
| :return_of_improper_debit_entry
|
496
|
+
| :return_of_xck_entry
|
497
|
+
| :source_document_presented_for_payment
|
498
|
+
| :state_law_affecting_rck_acceptance
|
499
|
+
| :stop_payment_on_item_related_to_rck_entry
|
500
|
+
| :stop_payment_on_source_document
|
501
|
+
| :timely_original_return
|
502
|
+
| :trace_number_error
|
503
|
+
| :untimely_dishonored_return
|
504
|
+
| :untimely_return
|
505
|
+
|
506
|
+
module ReturnReasonCode
|
507
|
+
extend Increase::Internal::Type::Enum
|
508
|
+
|
509
|
+
# Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
|
510
|
+
INSUFFICIENT_FUND: :insufficient_fund
|
511
|
+
|
512
|
+
# Code R03. The account does not exist or the receiving bank was unable to locate it.
|
513
|
+
NO_ACCOUNT: :no_account
|
514
|
+
|
515
|
+
# Code R02. The account is closed at the receiving bank.
|
516
|
+
ACCOUNT_CLOSED: :account_closed
|
517
|
+
|
518
|
+
# Code R04. The account number is invalid at the receiving bank.
|
519
|
+
INVALID_ACCOUNT_NUMBER_STRUCTURE: :invalid_account_number_structure
|
520
|
+
|
521
|
+
# Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
|
522
|
+
ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION: :account_frozen_entry_returned_per_ofac_instruction
|
523
|
+
|
524
|
+
# Code R23. The receiving bank account refused a credit transfer.
|
525
|
+
CREDIT_ENTRY_REFUSED_BY_RECEIVER: :credit_entry_refused_by_receiver
|
526
|
+
|
527
|
+
# Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
|
528
|
+
UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE: :unauthorized_debit_to_consumer_account_using_corporate_sec_code
|
529
|
+
|
530
|
+
# Code R29. The corporate customer at the receiving bank reversed the transfer.
|
531
|
+
CORPORATE_CUSTOMER_ADVISED_NOT_AUTHORIZED: :corporate_customer_advised_not_authorized
|
532
|
+
|
533
|
+
# Code R08. The receiving bank stopped payment on this transfer.
|
534
|
+
PAYMENT_STOPPED: :payment_stopped
|
535
|
+
|
536
|
+
# Code R20. The receiving bank account does not perform transfers.
|
537
|
+
NON_TRANSACTION_ACCOUNT: :non_transaction_account
|
538
|
+
|
539
|
+
# Code R09. The receiving bank account does not have enough available balance for the transfer.
|
540
|
+
UNCOLLECTED_FUNDS: :uncollected_funds
|
541
|
+
|
542
|
+
# Code R28. The routing number is incorrect.
|
543
|
+
ROUTING_NUMBER_CHECK_DIGIT_ERROR: :routing_number_check_digit_error
|
544
|
+
|
545
|
+
# Code R10. The customer at the receiving bank reversed the transfer.
|
546
|
+
CUSTOMER_ADVISED_UNAUTHORIZED_IMPROPER_INELIGIBLE_OR_INCOMPLETE: :customer_advised_unauthorized_improper_ineligible_or_incomplete
|
547
|
+
|
548
|
+
# Code R19. The amount field is incorrect or too large.
|
549
|
+
AMOUNT_FIELD_ERROR: :amount_field_error
|
550
|
+
|
551
|
+
# Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
|
552
|
+
AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
|
553
|
+
|
554
|
+
# Code R13. The routing number is invalid.
|
555
|
+
INVALID_ACH_ROUTING_NUMBER: :invalid_ach_routing_number
|
556
|
+
|
557
|
+
# Code R17. The receiving bank is unable to process a field in the transfer.
|
558
|
+
FILE_RECORD_EDIT_CRITERIA: :file_record_edit_criteria
|
559
|
+
|
560
|
+
# Code R45. The individual name field was invalid.
|
561
|
+
ENR_INVALID_INDIVIDUAL_NAME: :enr_invalid_individual_name
|
562
|
+
|
563
|
+
# Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
564
|
+
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
|
565
|
+
|
566
|
+
# Code R34. The receiving bank's regulatory supervisor has limited their participation in the ACH network.
|
567
|
+
LIMITED_PARTICIPATION_DFI: :limited_participation_dfi
|
568
|
+
|
569
|
+
# Code R85. The outbound international ACH transfer was incorrect.
|
570
|
+
INCORRECTLY_CODED_OUTBOUND_INTERNATIONAL_PAYMENT: :incorrectly_coded_outbound_international_payment
|
571
|
+
|
572
|
+
# Code R12. A rare return reason. The account was sold to another bank.
|
573
|
+
ACCOUNT_SOLD_TO_ANOTHER_DFI: :account_sold_to_another_dfi
|
574
|
+
|
575
|
+
# Code R25. The addenda record is incorrect or missing.
|
576
|
+
ADDENDA_ERROR: :addenda_error
|
577
|
+
|
578
|
+
# Code R15. A rare return reason. The account holder is deceased.
|
579
|
+
BENEFICIARY_OR_ACCOUNT_HOLDER_DECEASED: :beneficiary_or_account_holder_deceased
|
580
|
+
|
581
|
+
# Code R11. A rare return reason. The customer authorized some payment to the sender, but this payment was not in error.
|
582
|
+
CUSTOMER_ADVISED_NOT_WITHIN_AUTHORIZATION_TERMS: :customer_advised_not_within_authorization_terms
|
583
|
+
|
584
|
+
# Code R74. A rare return reason. Sent in response to a return that was returned with code `field_error`. The latest return should include the corrected field(s).
|
585
|
+
CORRECTED_RETURN: :corrected_return
|
586
|
+
|
587
|
+
# Code R24. A rare return reason. The receiving bank received an exact duplicate entry with the same trace number and amount.
|
588
|
+
DUPLICATE_ENTRY: :duplicate_entry
|
589
|
+
|
590
|
+
# Code R67. A rare return reason. The return this message refers to was a duplicate.
|
591
|
+
DUPLICATE_RETURN: :duplicate_return
|
592
|
+
|
593
|
+
# Code R47. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
594
|
+
ENR_DUPLICATE_ENROLLMENT: :enr_duplicate_enrollment
|
595
|
+
|
596
|
+
# Code R43. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
597
|
+
ENR_INVALID_DFI_ACCOUNT_NUMBER: :enr_invalid_dfi_account_number
|
598
|
+
|
599
|
+
# Code R44. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
600
|
+
ENR_INVALID_INDIVIDUAL_ID_NUMBER: :enr_invalid_individual_id_number
|
601
|
+
|
602
|
+
# Code R46. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
603
|
+
ENR_INVALID_REPRESENTATIVE_PAYEE_INDICATOR: :enr_invalid_representative_payee_indicator
|
604
|
+
|
605
|
+
# Code R41. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
606
|
+
ENR_INVALID_TRANSACTION_CODE: :enr_invalid_transaction_code
|
607
|
+
|
608
|
+
# Code R40. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
609
|
+
ENR_RETURN_OF_ENR_ENTRY: :enr_return_of_enr_entry
|
610
|
+
|
611
|
+
# Code R42. A rare return reason. Only used for US Government agency non-monetary automatic enrollment messages.
|
612
|
+
ENR_ROUTING_NUMBER_CHECK_DIGIT_ERROR: :enr_routing_number_check_digit_error
|
613
|
+
|
614
|
+
# Code R84. A rare return reason. The International ACH Transfer cannot be processed by the gateway.
|
615
|
+
ENTRY_NOT_PROCESSED_BY_GATEWAY: :entry_not_processed_by_gateway
|
616
|
+
|
617
|
+
# Code R69. A rare return reason. One or more of the fields in the ACH were malformed.
|
618
|
+
FIELD_ERROR: :field_error
|
619
|
+
|
620
|
+
# Code R83. A rare return reason. The Foreign receiving bank was unable to settle this ACH transfer.
|
621
|
+
FOREIGN_RECEIVING_DFI_UNABLE_TO_SETTLE: :foreign_receiving_dfi_unable_to_settle
|
622
|
+
|
623
|
+
# Code R80. A rare return reason. The International ACH Transfer is malformed.
|
624
|
+
IAT_ENTRY_CODING_ERROR: :iat_entry_coding_error
|
625
|
+
|
626
|
+
# Code R18. A rare return reason. The ACH has an improper effective entry date field.
|
627
|
+
IMPROPER_EFFECTIVE_ENTRY_DATE: :improper_effective_entry_date
|
628
|
+
|
629
|
+
# Code R39. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
|
630
|
+
IMPROPER_SOURCE_DOCUMENT_SOURCE_DOCUMENT_PRESENTED: :improper_source_document_source_document_presented
|
631
|
+
|
632
|
+
# Code R21. A rare return reason. The Company ID field of the ACH was invalid.
|
633
|
+
INVALID_COMPANY_ID: :invalid_company_id
|
634
|
+
|
635
|
+
# Code R82. A rare return reason. The foreign receiving bank identifier for an International ACH Transfer was invalid.
|
636
|
+
INVALID_FOREIGN_RECEIVING_DFI_IDENTIFICATION: :invalid_foreign_receiving_dfi_identification
|
637
|
+
|
638
|
+
# Code R22. A rare return reason. The Individual ID number field of the ACH was invalid.
|
639
|
+
INVALID_INDIVIDUAL_ID_NUMBER: :invalid_individual_id_number
|
640
|
+
|
641
|
+
# Code R53. A rare return reason. Both the Represented Check ("RCK") entry and the original check were presented to the bank.
|
642
|
+
ITEM_AND_RCK_ENTRY_PRESENTED_FOR_PAYMENT: :item_and_rck_entry_presented_for_payment
|
643
|
+
|
644
|
+
# Code R51. A rare return reason. The Represented Check ("RCK") entry is ineligible.
|
645
|
+
ITEM_RELATED_TO_RCK_ENTRY_IS_INELIGIBLE: :item_related_to_rck_entry_is_ineligible
|
646
|
+
|
647
|
+
# Code R26. A rare return reason. The ACH is missing a required field.
|
648
|
+
MANDATORY_FIELD_ERROR: :mandatory_field_error
|
649
|
+
|
650
|
+
# Code R71. A rare return reason. The receiving bank does not recognize the routing number in a dishonored return entry.
|
651
|
+
MISROUTED_DISHONORED_RETURN: :misrouted_dishonored_return
|
652
|
+
|
653
|
+
# Code R61. A rare return reason. The receiving bank does not recognize the routing number in a return entry.
|
654
|
+
MISROUTED_RETURN: :misrouted_return
|
655
|
+
|
656
|
+
# Code R76. A rare return reason. Sent in response to a return, the bank does not find the errors alleged by the returning bank.
|
657
|
+
NO_ERRORS_FOUND: :no_errors_found
|
658
|
+
|
659
|
+
# Code R77. A rare return reason. The receiving bank does not accept the return of the erroneous debit. The funds are not available at the receiving bank.
|
660
|
+
NON_ACCEPTANCE_OF_R62_DISHONORED_RETURN: :non_acceptance_of_r62_dishonored_return
|
661
|
+
|
662
|
+
# Code R81. A rare return reason. The receiving bank does not accept International ACH Transfers.
|
663
|
+
NON_PARTICIPANT_IN_IAT_PROGRAM: :non_participant_in_iat_program
|
664
|
+
|
665
|
+
# Code R31. A rare return reason. A return that has been agreed to be accepted by the receiving bank, despite falling outside of the usual return timeframe.
|
666
|
+
PERMISSIBLE_RETURN_ENTRY: :permissible_return_entry
|
667
|
+
|
668
|
+
# Code R70. A rare return reason. The receiving bank had not approved this return.
|
669
|
+
PERMISSIBLE_RETURN_ENTRY_NOT_ACCEPTED: :permissible_return_entry_not_accepted
|
670
|
+
|
671
|
+
# Code R32. A rare return reason. The receiving bank could not settle this transaction.
|
672
|
+
RDFI_NON_SETTLEMENT: :rdfi_non_settlement
|
673
|
+
|
674
|
+
# Code R30. A rare return reason. The receiving bank does not accept Check Truncation ACH transfers.
|
675
|
+
RDFI_PARTICIPANT_IN_CHECK_TRUNCATION_PROGRAM: :rdfi_participant_in_check_truncation_program
|
676
|
+
|
677
|
+
# Code R14. A rare return reason. The payee is deceased.
|
678
|
+
REPRESENTATIVE_PAYEE_DECEASED_OR_UNABLE_TO_CONTINUE_IN_THAT_CAPACITY: :representative_payee_deceased_or_unable_to_continue_in_that_capacity
|
679
|
+
|
680
|
+
# Code R75. A rare return reason. The originating bank disputes that an earlier `duplicate_entry` return was actually a duplicate.
|
681
|
+
RETURN_NOT_A_DUPLICATE: :return_not_a_duplicate
|
682
|
+
|
683
|
+
# Code R62. A rare return reason. The originating financial institution made a mistake and this return corrects it.
|
684
|
+
RETURN_OF_ERRONEOUS_OR_REVERSING_DEBIT: :return_of_erroneous_or_reversing_debit
|
685
|
+
|
686
|
+
# Code R36. A rare return reason. Return of a malformed credit entry.
|
687
|
+
RETURN_OF_IMPROPER_CREDIT_ENTRY: :return_of_improper_credit_entry
|
688
|
+
|
689
|
+
# Code R35. A rare return reason. Return of a malformed debit entry.
|
690
|
+
RETURN_OF_IMPROPER_DEBIT_ENTRY: :return_of_improper_debit_entry
|
691
|
+
|
692
|
+
# Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
|
693
|
+
RETURN_OF_XCK_ENTRY: :return_of_xck_entry
|
694
|
+
|
695
|
+
# Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
|
696
|
+
SOURCE_DOCUMENT_PRESENTED_FOR_PAYMENT: :source_document_presented_for_payment
|
697
|
+
|
698
|
+
# Code R50. A rare return reason. State law prevents the bank from accepting the Represented Check ("RCK") entry.
|
699
|
+
STATE_LAW_AFFECTING_RCK_ACCEPTANCE: :state_law_affecting_rck_acceptance
|
700
|
+
|
701
|
+
# Code R52. A rare return reason. A stop payment was issued on a Represented Check ("RCK") entry.
|
702
|
+
STOP_PAYMENT_ON_ITEM_RELATED_TO_RCK_ENTRY: :stop_payment_on_item_related_to_rck_entry
|
703
|
+
|
704
|
+
# Code R38. A rare return reason. The source attached to the ACH, usually an ACH check conversion, includes a stop payment.
|
705
|
+
STOP_PAYMENT_ON_SOURCE_DOCUMENT: :stop_payment_on_source_document
|
706
|
+
|
707
|
+
# Code R73. A rare return reason. The bank receiving an `untimely_return` believes it was on time.
|
708
|
+
TIMELY_ORIGINAL_RETURN: :timely_original_return
|
709
|
+
|
710
|
+
# Code R27. A rare return reason. An ACH return's trace number does not match an originated ACH.
|
711
|
+
TRACE_NUMBER_ERROR: :trace_number_error
|
712
|
+
|
713
|
+
# Code R72. A rare return reason. The dishonored return was sent too late.
|
714
|
+
UNTIMELY_DISHONORED_RETURN: :untimely_dishonored_return
|
715
|
+
|
716
|
+
# Code R68. A rare return reason. The return was sent too late.
|
717
|
+
UNTIMELY_RETURN: :untimely_return
|
718
|
+
|
719
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::ACHTransferReturn::return_reason_code]
|
720
|
+
end
|
721
|
+
end
|
722
|
+
|
723
|
+
type card_dispute_acceptance =
|
724
|
+
{ accepted_at: Time, card_dispute_id: String, transaction_id: String }
|
725
|
+
|
726
|
+
class CardDisputeAcceptance < Increase::Internal::Type::BaseModel
|
727
|
+
attr_accessor accepted_at: Time
|
728
|
+
|
729
|
+
attr_accessor card_dispute_id: String
|
730
|
+
|
731
|
+
attr_accessor transaction_id: String
|
732
|
+
|
733
|
+
def initialize: (
|
734
|
+
accepted_at: Time,
|
735
|
+
card_dispute_id: String,
|
736
|
+
transaction_id: String
|
737
|
+
) -> void
|
738
|
+
|
739
|
+
def to_hash: -> {
|
740
|
+
accepted_at: Time,
|
741
|
+
card_dispute_id: String,
|
742
|
+
transaction_id: String
|
743
|
+
}
|
744
|
+
end
|
745
|
+
|
746
|
+
type card_dispute_loss =
|
747
|
+
{
|
748
|
+
card_dispute_id: String,
|
749
|
+
explanation: String,
|
750
|
+
lost_at: Time,
|
751
|
+
transaction_id: String
|
752
|
+
}
|
753
|
+
|
754
|
+
class CardDisputeLoss < Increase::Internal::Type::BaseModel
|
755
|
+
attr_accessor card_dispute_id: String
|
756
|
+
|
757
|
+
attr_accessor explanation: String
|
758
|
+
|
759
|
+
attr_accessor lost_at: Time
|
760
|
+
|
761
|
+
attr_accessor transaction_id: String
|
762
|
+
|
763
|
+
def initialize: (
|
764
|
+
card_dispute_id: String,
|
765
|
+
explanation: String,
|
766
|
+
lost_at: Time,
|
767
|
+
transaction_id: String
|
768
|
+
) -> void
|
769
|
+
|
770
|
+
def to_hash: -> {
|
771
|
+
card_dispute_id: String,
|
772
|
+
explanation: String,
|
773
|
+
lost_at: Time,
|
774
|
+
transaction_id: String
|
775
|
+
}
|
776
|
+
end
|
777
|
+
|
778
|
+
type card_refund =
|
779
|
+
{
|
780
|
+
id: String,
|
781
|
+
amount: Integer,
|
782
|
+
card_payment_id: String,
|
783
|
+
cashback: Increase::Transaction::Source::CardRefund::Cashback?,
|
784
|
+
currency: Increase::Models::Transaction::Source::CardRefund::currency,
|
785
|
+
interchange: Increase::Transaction::Source::CardRefund::Interchange?,
|
786
|
+
merchant_acceptor_id: String,
|
787
|
+
merchant_category_code: String,
|
788
|
+
merchant_city: String,
|
789
|
+
merchant_country: String,
|
790
|
+
merchant_name: String,
|
791
|
+
merchant_postal_code: String?,
|
792
|
+
merchant_state: String?,
|
793
|
+
network_identifiers: Increase::Transaction::Source::CardRefund::NetworkIdentifiers,
|
794
|
+
presentment_amount: Integer,
|
795
|
+
presentment_currency: String,
|
796
|
+
purchase_details: Increase::Transaction::Source::CardRefund::PurchaseDetails?,
|
797
|
+
transaction_id: String,
|
798
|
+
type: Increase::Models::Transaction::Source::CardRefund::type_
|
799
|
+
}
|
800
|
+
|
801
|
+
class CardRefund < Increase::Internal::Type::BaseModel
|
802
|
+
attr_accessor id: String
|
803
|
+
|
804
|
+
attr_accessor amount: Integer
|
805
|
+
|
806
|
+
attr_accessor card_payment_id: String
|
807
|
+
|
808
|
+
attr_accessor cashback: Increase::Transaction::Source::CardRefund::Cashback?
|
809
|
+
|
810
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardRefund::currency
|
811
|
+
|
812
|
+
attr_accessor interchange: Increase::Transaction::Source::CardRefund::Interchange?
|
813
|
+
|
814
|
+
attr_accessor merchant_acceptor_id: String
|
815
|
+
|
816
|
+
attr_accessor merchant_category_code: String
|
817
|
+
|
818
|
+
attr_accessor merchant_city: String
|
819
|
+
|
820
|
+
attr_accessor merchant_country: String
|
821
|
+
|
822
|
+
attr_accessor merchant_name: String
|
823
|
+
|
824
|
+
attr_accessor merchant_postal_code: String?
|
825
|
+
|
826
|
+
attr_accessor merchant_state: String?
|
827
|
+
|
828
|
+
attr_accessor network_identifiers: Increase::Transaction::Source::CardRefund::NetworkIdentifiers
|
829
|
+
|
830
|
+
attr_accessor presentment_amount: Integer
|
831
|
+
|
832
|
+
attr_accessor presentment_currency: String
|
833
|
+
|
834
|
+
attr_accessor purchase_details: Increase::Transaction::Source::CardRefund::PurchaseDetails?
|
835
|
+
|
836
|
+
attr_accessor transaction_id: String
|
837
|
+
|
838
|
+
attr_accessor type: Increase::Models::Transaction::Source::CardRefund::type_
|
839
|
+
|
840
|
+
def initialize: (
|
841
|
+
id: String,
|
842
|
+
amount: Integer,
|
843
|
+
card_payment_id: String,
|
844
|
+
cashback: Increase::Transaction::Source::CardRefund::Cashback?,
|
845
|
+
currency: Increase::Models::Transaction::Source::CardRefund::currency,
|
846
|
+
interchange: Increase::Transaction::Source::CardRefund::Interchange?,
|
847
|
+
merchant_acceptor_id: String,
|
848
|
+
merchant_category_code: String,
|
849
|
+
merchant_city: String,
|
850
|
+
merchant_country: String,
|
851
|
+
merchant_name: String,
|
852
|
+
merchant_postal_code: String?,
|
853
|
+
merchant_state: String?,
|
854
|
+
network_identifiers: Increase::Transaction::Source::CardRefund::NetworkIdentifiers,
|
855
|
+
presentment_amount: Integer,
|
856
|
+
presentment_currency: String,
|
857
|
+
purchase_details: Increase::Transaction::Source::CardRefund::PurchaseDetails?,
|
858
|
+
transaction_id: String,
|
859
|
+
type: Increase::Models::Transaction::Source::CardRefund::type_
|
860
|
+
) -> void
|
861
|
+
|
862
|
+
def to_hash: -> {
|
863
|
+
id: String,
|
864
|
+
amount: Integer,
|
865
|
+
card_payment_id: String,
|
866
|
+
cashback: Increase::Transaction::Source::CardRefund::Cashback?,
|
867
|
+
currency: Increase::Models::Transaction::Source::CardRefund::currency,
|
868
|
+
interchange: Increase::Transaction::Source::CardRefund::Interchange?,
|
869
|
+
merchant_acceptor_id: String,
|
870
|
+
merchant_category_code: String,
|
871
|
+
merchant_city: String,
|
872
|
+
merchant_country: String,
|
873
|
+
merchant_name: String,
|
874
|
+
merchant_postal_code: String?,
|
875
|
+
merchant_state: String?,
|
876
|
+
network_identifiers: Increase::Transaction::Source::CardRefund::NetworkIdentifiers,
|
877
|
+
presentment_amount: Integer,
|
878
|
+
presentment_currency: String,
|
879
|
+
purchase_details: Increase::Transaction::Source::CardRefund::PurchaseDetails?,
|
880
|
+
transaction_id: String,
|
881
|
+
type: Increase::Models::Transaction::Source::CardRefund::type_
|
882
|
+
}
|
883
|
+
|
884
|
+
type cashback =
|
885
|
+
{
|
886
|
+
amount: String,
|
887
|
+
currency: Increase::Models::Transaction::Source::CardRefund::Cashback::currency
|
888
|
+
}
|
889
|
+
|
890
|
+
class Cashback < Increase::Internal::Type::BaseModel
|
891
|
+
attr_accessor amount: String
|
892
|
+
|
893
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardRefund::Cashback::currency
|
894
|
+
|
895
|
+
def initialize: (
|
896
|
+
amount: String,
|
897
|
+
currency: Increase::Models::Transaction::Source::CardRefund::Cashback::currency
|
898
|
+
) -> void
|
899
|
+
|
900
|
+
def to_hash: -> {
|
901
|
+
amount: String,
|
902
|
+
currency: Increase::Models::Transaction::Source::CardRefund::Cashback::currency
|
903
|
+
}
|
904
|
+
|
905
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
906
|
+
|
907
|
+
module Currency
|
908
|
+
extend Increase::Internal::Type::Enum
|
909
|
+
|
910
|
+
# Canadian Dollar (CAD)
|
911
|
+
CAD: :CAD
|
912
|
+
|
913
|
+
# Swiss Franc (CHF)
|
914
|
+
CHF: :CHF
|
915
|
+
|
916
|
+
# Euro (EUR)
|
917
|
+
EUR: :EUR
|
918
|
+
|
919
|
+
# British Pound (GBP)
|
920
|
+
GBP: :GBP
|
921
|
+
|
922
|
+
# Japanese Yen (JPY)
|
923
|
+
JPY: :JPY
|
924
|
+
|
925
|
+
# US Dollar (USD)
|
926
|
+
USD: :USD
|
927
|
+
|
928
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::Cashback::currency]
|
929
|
+
end
|
930
|
+
end
|
931
|
+
|
932
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
933
|
+
|
934
|
+
module Currency
|
935
|
+
extend Increase::Internal::Type::Enum
|
936
|
+
|
937
|
+
# Canadian Dollar (CAD)
|
938
|
+
CAD: :CAD
|
939
|
+
|
940
|
+
# Swiss Franc (CHF)
|
941
|
+
CHF: :CHF
|
942
|
+
|
943
|
+
# Euro (EUR)
|
944
|
+
EUR: :EUR
|
945
|
+
|
946
|
+
# British Pound (GBP)
|
947
|
+
GBP: :GBP
|
948
|
+
|
949
|
+
# Japanese Yen (JPY)
|
950
|
+
JPY: :JPY
|
951
|
+
|
952
|
+
# US Dollar (USD)
|
953
|
+
USD: :USD
|
954
|
+
|
955
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::currency]
|
956
|
+
end
|
957
|
+
|
958
|
+
type interchange =
|
959
|
+
{
|
960
|
+
amount: String,
|
961
|
+
code: String?,
|
962
|
+
currency: Increase::Models::Transaction::Source::CardRefund::Interchange::currency
|
963
|
+
}
|
964
|
+
|
965
|
+
class Interchange < Increase::Internal::Type::BaseModel
|
966
|
+
attr_accessor amount: String
|
967
|
+
|
968
|
+
attr_accessor code: String?
|
969
|
+
|
970
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardRefund::Interchange::currency
|
971
|
+
|
972
|
+
def initialize: (
|
973
|
+
amount: String,
|
974
|
+
code: String?,
|
975
|
+
currency: Increase::Models::Transaction::Source::CardRefund::Interchange::currency
|
976
|
+
) -> void
|
977
|
+
|
978
|
+
def to_hash: -> {
|
979
|
+
amount: String,
|
980
|
+
code: String?,
|
981
|
+
currency: Increase::Models::Transaction::Source::CardRefund::Interchange::currency
|
982
|
+
}
|
983
|
+
|
984
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
985
|
+
|
986
|
+
module Currency
|
987
|
+
extend Increase::Internal::Type::Enum
|
988
|
+
|
989
|
+
# Canadian Dollar (CAD)
|
990
|
+
CAD: :CAD
|
991
|
+
|
992
|
+
# Swiss Franc (CHF)
|
993
|
+
CHF: :CHF
|
994
|
+
|
995
|
+
# Euro (EUR)
|
996
|
+
EUR: :EUR
|
997
|
+
|
998
|
+
# British Pound (GBP)
|
999
|
+
GBP: :GBP
|
1000
|
+
|
1001
|
+
# Japanese Yen (JPY)
|
1002
|
+
JPY: :JPY
|
1003
|
+
|
1004
|
+
# US Dollar (USD)
|
1005
|
+
USD: :USD
|
1006
|
+
|
1007
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::Interchange::currency]
|
1008
|
+
end
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
type network_identifiers =
|
1012
|
+
{
|
1013
|
+
acquirer_business_id: String,
|
1014
|
+
acquirer_reference_number: String,
|
1015
|
+
transaction_id: String?
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
1019
|
+
attr_accessor acquirer_business_id: String
|
1020
|
+
|
1021
|
+
attr_accessor acquirer_reference_number: String
|
1022
|
+
|
1023
|
+
attr_accessor transaction_id: String?
|
1024
|
+
|
1025
|
+
def initialize: (
|
1026
|
+
acquirer_business_id: String,
|
1027
|
+
acquirer_reference_number: String,
|
1028
|
+
transaction_id: String?
|
1029
|
+
) -> void
|
1030
|
+
|
1031
|
+
def to_hash: -> {
|
1032
|
+
acquirer_business_id: String,
|
1033
|
+
acquirer_reference_number: String,
|
1034
|
+
transaction_id: String?
|
1035
|
+
}
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
type purchase_details =
|
1039
|
+
{
|
1040
|
+
car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?,
|
1041
|
+
customer_reference_identifier: String?,
|
1042
|
+
local_tax_amount: Integer?,
|
1043
|
+
local_tax_currency: String?,
|
1044
|
+
lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?,
|
1045
|
+
national_tax_amount: Integer?,
|
1046
|
+
national_tax_currency: String?,
|
1047
|
+
purchase_identifier: String?,
|
1048
|
+
purchase_identifier_format: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::purchase_identifier_format?,
|
1049
|
+
travel: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel?
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
class PurchaseDetails < Increase::Internal::Type::BaseModel
|
1053
|
+
attr_accessor car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?
|
1054
|
+
|
1055
|
+
attr_accessor customer_reference_identifier: String?
|
1056
|
+
|
1057
|
+
attr_accessor local_tax_amount: Integer?
|
1058
|
+
|
1059
|
+
attr_accessor local_tax_currency: String?
|
1060
|
+
|
1061
|
+
attr_accessor lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?
|
1062
|
+
|
1063
|
+
attr_accessor national_tax_amount: Integer?
|
1064
|
+
|
1065
|
+
attr_accessor national_tax_currency: String?
|
1066
|
+
|
1067
|
+
attr_accessor purchase_identifier: String?
|
1068
|
+
|
1069
|
+
attr_accessor purchase_identifier_format: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::purchase_identifier_format?
|
1070
|
+
|
1071
|
+
attr_accessor travel: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel?
|
1072
|
+
|
1073
|
+
def initialize: (
|
1074
|
+
car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?,
|
1075
|
+
customer_reference_identifier: String?,
|
1076
|
+
local_tax_amount: Integer?,
|
1077
|
+
local_tax_currency: String?,
|
1078
|
+
lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?,
|
1079
|
+
national_tax_amount: Integer?,
|
1080
|
+
national_tax_currency: String?,
|
1081
|
+
purchase_identifier: String?,
|
1082
|
+
purchase_identifier_format: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::purchase_identifier_format?,
|
1083
|
+
travel: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel?
|
1084
|
+
) -> void
|
1085
|
+
|
1086
|
+
def to_hash: -> {
|
1087
|
+
car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?,
|
1088
|
+
customer_reference_identifier: String?,
|
1089
|
+
local_tax_amount: Integer?,
|
1090
|
+
local_tax_currency: String?,
|
1091
|
+
lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?,
|
1092
|
+
national_tax_amount: Integer?,
|
1093
|
+
national_tax_currency: String?,
|
1094
|
+
purchase_identifier: String?,
|
1095
|
+
purchase_identifier_format: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::purchase_identifier_format?,
|
1096
|
+
travel: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel?
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
type car_rental =
|
1100
|
+
{
|
1101
|
+
car_class_code: String?,
|
1102
|
+
checkout_date: Date?,
|
1103
|
+
daily_rental_rate_amount: Integer?,
|
1104
|
+
daily_rental_rate_currency: String?,
|
1105
|
+
days_rented: Integer?,
|
1106
|
+
extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::extra_charges?,
|
1107
|
+
fuel_charges_amount: Integer?,
|
1108
|
+
fuel_charges_currency: String?,
|
1109
|
+
insurance_charges_amount: Integer?,
|
1110
|
+
insurance_charges_currency: String?,
|
1111
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::no_show_indicator?,
|
1112
|
+
one_way_drop_off_charges_amount: Integer?,
|
1113
|
+
one_way_drop_off_charges_currency: String?,
|
1114
|
+
renter_name: String?,
|
1115
|
+
weekly_rental_rate_amount: Integer?,
|
1116
|
+
weekly_rental_rate_currency: String?
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
class CarRental < Increase::Internal::Type::BaseModel
|
1120
|
+
attr_accessor car_class_code: String?
|
1121
|
+
|
1122
|
+
attr_accessor checkout_date: Date?
|
1123
|
+
|
1124
|
+
attr_accessor daily_rental_rate_amount: Integer?
|
1125
|
+
|
1126
|
+
attr_accessor daily_rental_rate_currency: String?
|
1127
|
+
|
1128
|
+
attr_accessor days_rented: Integer?
|
1129
|
+
|
1130
|
+
attr_accessor extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::extra_charges?
|
1131
|
+
|
1132
|
+
attr_accessor fuel_charges_amount: Integer?
|
1133
|
+
|
1134
|
+
attr_accessor fuel_charges_currency: String?
|
1135
|
+
|
1136
|
+
attr_accessor insurance_charges_amount: Integer?
|
1137
|
+
|
1138
|
+
attr_accessor insurance_charges_currency: String?
|
1139
|
+
|
1140
|
+
attr_accessor no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::no_show_indicator?
|
1141
|
+
|
1142
|
+
attr_accessor one_way_drop_off_charges_amount: Integer?
|
1143
|
+
|
1144
|
+
attr_accessor one_way_drop_off_charges_currency: String?
|
1145
|
+
|
1146
|
+
attr_accessor renter_name: String?
|
1147
|
+
|
1148
|
+
attr_accessor weekly_rental_rate_amount: Integer?
|
1149
|
+
|
1150
|
+
attr_accessor weekly_rental_rate_currency: String?
|
1151
|
+
|
1152
|
+
def initialize: (
|
1153
|
+
car_class_code: String?,
|
1154
|
+
checkout_date: Date?,
|
1155
|
+
daily_rental_rate_amount: Integer?,
|
1156
|
+
daily_rental_rate_currency: String?,
|
1157
|
+
days_rented: Integer?,
|
1158
|
+
extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::extra_charges?,
|
1159
|
+
fuel_charges_amount: Integer?,
|
1160
|
+
fuel_charges_currency: String?,
|
1161
|
+
insurance_charges_amount: Integer?,
|
1162
|
+
insurance_charges_currency: String?,
|
1163
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::no_show_indicator?,
|
1164
|
+
one_way_drop_off_charges_amount: Integer?,
|
1165
|
+
one_way_drop_off_charges_currency: String?,
|
1166
|
+
renter_name: String?,
|
1167
|
+
weekly_rental_rate_amount: Integer?,
|
1168
|
+
weekly_rental_rate_currency: String?
|
1169
|
+
) -> void
|
1170
|
+
|
1171
|
+
def to_hash: -> {
|
1172
|
+
car_class_code: String?,
|
1173
|
+
checkout_date: Date?,
|
1174
|
+
daily_rental_rate_amount: Integer?,
|
1175
|
+
daily_rental_rate_currency: String?,
|
1176
|
+
days_rented: Integer?,
|
1177
|
+
extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::extra_charges?,
|
1178
|
+
fuel_charges_amount: Integer?,
|
1179
|
+
fuel_charges_currency: String?,
|
1180
|
+
insurance_charges_amount: Integer?,
|
1181
|
+
insurance_charges_currency: String?,
|
1182
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::no_show_indicator?,
|
1183
|
+
one_way_drop_off_charges_amount: Integer?,
|
1184
|
+
one_way_drop_off_charges_currency: String?,
|
1185
|
+
renter_name: String?,
|
1186
|
+
weekly_rental_rate_amount: Integer?,
|
1187
|
+
weekly_rental_rate_currency: String?
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
type extra_charges =
|
1191
|
+
:no_extra_charge
|
1192
|
+
| :gas
|
1193
|
+
| :extra_mileage
|
1194
|
+
| :late_return
|
1195
|
+
| :one_way_service_fee
|
1196
|
+
| :parking_violation
|
1197
|
+
|
1198
|
+
module ExtraCharges
|
1199
|
+
extend Increase::Internal::Type::Enum
|
1200
|
+
|
1201
|
+
# No extra charge
|
1202
|
+
NO_EXTRA_CHARGE: :no_extra_charge
|
1203
|
+
|
1204
|
+
# Gas
|
1205
|
+
GAS: :gas
|
1206
|
+
|
1207
|
+
# Extra mileage
|
1208
|
+
EXTRA_MILEAGE: :extra_mileage
|
1209
|
+
|
1210
|
+
# Late return
|
1211
|
+
LATE_RETURN: :late_return
|
1212
|
+
|
1213
|
+
# One way service fee
|
1214
|
+
ONE_WAY_SERVICE_FEE: :one_way_service_fee
|
1215
|
+
|
1216
|
+
# Parking violation
|
1217
|
+
PARKING_VIOLATION: :parking_violation
|
1218
|
+
|
1219
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::extra_charges]
|
1220
|
+
end
|
1221
|
+
|
1222
|
+
type no_show_indicator =
|
1223
|
+
:not_applicable | :no_show_for_specialized_vehicle
|
1224
|
+
|
1225
|
+
module NoShowIndicator
|
1226
|
+
extend Increase::Internal::Type::Enum
|
1227
|
+
|
1228
|
+
# Not applicable
|
1229
|
+
NOT_APPLICABLE: :not_applicable
|
1230
|
+
|
1231
|
+
# No show for specialized vehicle
|
1232
|
+
NO_SHOW_FOR_SPECIALIZED_VEHICLE: :no_show_for_specialized_vehicle
|
1233
|
+
|
1234
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental::no_show_indicator]
|
1235
|
+
end
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
type lodging =
|
1239
|
+
{
|
1240
|
+
check_in_date: Date?,
|
1241
|
+
daily_room_rate_amount: Integer?,
|
1242
|
+
daily_room_rate_currency: String?,
|
1243
|
+
extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::extra_charges?,
|
1244
|
+
folio_cash_advances_amount: Integer?,
|
1245
|
+
folio_cash_advances_currency: String?,
|
1246
|
+
food_beverage_charges_amount: Integer?,
|
1247
|
+
food_beverage_charges_currency: String?,
|
1248
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::no_show_indicator?,
|
1249
|
+
prepaid_expenses_amount: Integer?,
|
1250
|
+
prepaid_expenses_currency: String?,
|
1251
|
+
room_nights: Integer?,
|
1252
|
+
total_room_tax_amount: Integer?,
|
1253
|
+
total_room_tax_currency: String?,
|
1254
|
+
total_tax_amount: Integer?,
|
1255
|
+
total_tax_currency: String?
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
class Lodging < Increase::Internal::Type::BaseModel
|
1259
|
+
attr_accessor check_in_date: Date?
|
1260
|
+
|
1261
|
+
attr_accessor daily_room_rate_amount: Integer?
|
1262
|
+
|
1263
|
+
attr_accessor daily_room_rate_currency: String?
|
1264
|
+
|
1265
|
+
attr_accessor extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::extra_charges?
|
1266
|
+
|
1267
|
+
attr_accessor folio_cash_advances_amount: Integer?
|
1268
|
+
|
1269
|
+
attr_accessor folio_cash_advances_currency: String?
|
1270
|
+
|
1271
|
+
attr_accessor food_beverage_charges_amount: Integer?
|
1272
|
+
|
1273
|
+
attr_accessor food_beverage_charges_currency: String?
|
1274
|
+
|
1275
|
+
attr_accessor no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::no_show_indicator?
|
1276
|
+
|
1277
|
+
attr_accessor prepaid_expenses_amount: Integer?
|
1278
|
+
|
1279
|
+
attr_accessor prepaid_expenses_currency: String?
|
1280
|
+
|
1281
|
+
attr_accessor room_nights: Integer?
|
1282
|
+
|
1283
|
+
attr_accessor total_room_tax_amount: Integer?
|
1284
|
+
|
1285
|
+
attr_accessor total_room_tax_currency: String?
|
1286
|
+
|
1287
|
+
attr_accessor total_tax_amount: Integer?
|
1288
|
+
|
1289
|
+
attr_accessor total_tax_currency: String?
|
1290
|
+
|
1291
|
+
def initialize: (
|
1292
|
+
check_in_date: Date?,
|
1293
|
+
daily_room_rate_amount: Integer?,
|
1294
|
+
daily_room_rate_currency: String?,
|
1295
|
+
extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::extra_charges?,
|
1296
|
+
folio_cash_advances_amount: Integer?,
|
1297
|
+
folio_cash_advances_currency: String?,
|
1298
|
+
food_beverage_charges_amount: Integer?,
|
1299
|
+
food_beverage_charges_currency: String?,
|
1300
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::no_show_indicator?,
|
1301
|
+
prepaid_expenses_amount: Integer?,
|
1302
|
+
prepaid_expenses_currency: String?,
|
1303
|
+
room_nights: Integer?,
|
1304
|
+
total_room_tax_amount: Integer?,
|
1305
|
+
total_room_tax_currency: String?,
|
1306
|
+
total_tax_amount: Integer?,
|
1307
|
+
total_tax_currency: String?
|
1308
|
+
) -> void
|
1309
|
+
|
1310
|
+
def to_hash: -> {
|
1311
|
+
check_in_date: Date?,
|
1312
|
+
daily_room_rate_amount: Integer?,
|
1313
|
+
daily_room_rate_currency: String?,
|
1314
|
+
extra_charges: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::extra_charges?,
|
1315
|
+
folio_cash_advances_amount: Integer?,
|
1316
|
+
folio_cash_advances_currency: String?,
|
1317
|
+
food_beverage_charges_amount: Integer?,
|
1318
|
+
food_beverage_charges_currency: String?,
|
1319
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::no_show_indicator?,
|
1320
|
+
prepaid_expenses_amount: Integer?,
|
1321
|
+
prepaid_expenses_currency: String?,
|
1322
|
+
room_nights: Integer?,
|
1323
|
+
total_room_tax_amount: Integer?,
|
1324
|
+
total_room_tax_currency: String?,
|
1325
|
+
total_tax_amount: Integer?,
|
1326
|
+
total_tax_currency: String?
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
type extra_charges =
|
1330
|
+
:no_extra_charge
|
1331
|
+
| :restaurant
|
1332
|
+
| :gift_shop
|
1333
|
+
| :mini_bar
|
1334
|
+
| :telephone
|
1335
|
+
| :other
|
1336
|
+
| :laundry
|
1337
|
+
|
1338
|
+
module ExtraCharges
|
1339
|
+
extend Increase::Internal::Type::Enum
|
1340
|
+
|
1341
|
+
# No extra charge
|
1342
|
+
NO_EXTRA_CHARGE: :no_extra_charge
|
1343
|
+
|
1344
|
+
# Restaurant
|
1345
|
+
RESTAURANT: :restaurant
|
1346
|
+
|
1347
|
+
# Gift shop
|
1348
|
+
GIFT_SHOP: :gift_shop
|
1349
|
+
|
1350
|
+
# Mini bar
|
1351
|
+
MINI_BAR: :mini_bar
|
1352
|
+
|
1353
|
+
# Telephone
|
1354
|
+
TELEPHONE: :telephone
|
1355
|
+
|
1356
|
+
# Other
|
1357
|
+
OTHER: :other
|
1358
|
+
|
1359
|
+
# Laundry
|
1360
|
+
LAUNDRY: :laundry
|
1361
|
+
|
1362
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::extra_charges]
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
type no_show_indicator = :not_applicable | :no_show
|
1366
|
+
|
1367
|
+
module NoShowIndicator
|
1368
|
+
extend Increase::Internal::Type::Enum
|
1369
|
+
|
1370
|
+
# Not applicable
|
1371
|
+
NOT_APPLICABLE: :not_applicable
|
1372
|
+
|
1373
|
+
# No show
|
1374
|
+
NO_SHOW: :no_show
|
1375
|
+
|
1376
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Lodging::no_show_indicator]
|
1377
|
+
end
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
type purchase_identifier_format =
|
1381
|
+
:free_text
|
1382
|
+
| :order_number
|
1383
|
+
| :rental_agreement_number
|
1384
|
+
| :hotel_folio_number
|
1385
|
+
| :invoice_number
|
1386
|
+
|
1387
|
+
module PurchaseIdentifierFormat
|
1388
|
+
extend Increase::Internal::Type::Enum
|
1389
|
+
|
1390
|
+
# Free text
|
1391
|
+
FREE_TEXT: :free_text
|
1392
|
+
|
1393
|
+
# Order number
|
1394
|
+
ORDER_NUMBER: :order_number
|
1395
|
+
|
1396
|
+
# Rental agreement number
|
1397
|
+
RENTAL_AGREEMENT_NUMBER: :rental_agreement_number
|
1398
|
+
|
1399
|
+
# Hotel folio number
|
1400
|
+
HOTEL_FOLIO_NUMBER: :hotel_folio_number
|
1401
|
+
|
1402
|
+
# Invoice number
|
1403
|
+
INVOICE_NUMBER: :invoice_number
|
1404
|
+
|
1405
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::purchase_identifier_format]
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
type travel =
|
1409
|
+
{
|
1410
|
+
ancillary: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary?,
|
1411
|
+
computerized_reservation_system: String?,
|
1412
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::credit_reason_indicator?,
|
1413
|
+
departure_date: Date?,
|
1414
|
+
origination_city_airport_code: String?,
|
1415
|
+
passenger_name: String?,
|
1416
|
+
restricted_ticket_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::restricted_ticket_indicator?,
|
1417
|
+
ticket_change_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::ticket_change_indicator?,
|
1418
|
+
ticket_number: String?,
|
1419
|
+
travel_agency_code: String?,
|
1420
|
+
travel_agency_name: String?,
|
1421
|
+
trip_legs: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg]?
|
1422
|
+
}
|
1423
|
+
|
1424
|
+
class Travel < Increase::Internal::Type::BaseModel
|
1425
|
+
attr_accessor ancillary: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary?
|
1426
|
+
|
1427
|
+
attr_accessor computerized_reservation_system: String?
|
1428
|
+
|
1429
|
+
attr_accessor credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::credit_reason_indicator?
|
1430
|
+
|
1431
|
+
attr_accessor departure_date: Date?
|
1432
|
+
|
1433
|
+
attr_accessor origination_city_airport_code: String?
|
1434
|
+
|
1435
|
+
attr_accessor passenger_name: String?
|
1436
|
+
|
1437
|
+
attr_accessor restricted_ticket_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::restricted_ticket_indicator?
|
1438
|
+
|
1439
|
+
attr_accessor ticket_change_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::ticket_change_indicator?
|
1440
|
+
|
1441
|
+
attr_accessor ticket_number: String?
|
1442
|
+
|
1443
|
+
attr_accessor travel_agency_code: String?
|
1444
|
+
|
1445
|
+
attr_accessor travel_agency_name: String?
|
1446
|
+
|
1447
|
+
attr_accessor trip_legs: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg]?
|
1448
|
+
|
1449
|
+
def initialize: (
|
1450
|
+
ancillary: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary?,
|
1451
|
+
computerized_reservation_system: String?,
|
1452
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::credit_reason_indicator?,
|
1453
|
+
departure_date: Date?,
|
1454
|
+
origination_city_airport_code: String?,
|
1455
|
+
passenger_name: String?,
|
1456
|
+
restricted_ticket_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::restricted_ticket_indicator?,
|
1457
|
+
ticket_change_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::ticket_change_indicator?,
|
1458
|
+
ticket_number: String?,
|
1459
|
+
travel_agency_code: String?,
|
1460
|
+
travel_agency_name: String?,
|
1461
|
+
trip_legs: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg]?
|
1462
|
+
) -> void
|
1463
|
+
|
1464
|
+
def to_hash: -> {
|
1465
|
+
ancillary: Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary?,
|
1466
|
+
computerized_reservation_system: String?,
|
1467
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::credit_reason_indicator?,
|
1468
|
+
departure_date: Date?,
|
1469
|
+
origination_city_airport_code: String?,
|
1470
|
+
passenger_name: String?,
|
1471
|
+
restricted_ticket_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::restricted_ticket_indicator?,
|
1472
|
+
ticket_change_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::ticket_change_indicator?,
|
1473
|
+
ticket_number: String?,
|
1474
|
+
travel_agency_code: String?,
|
1475
|
+
travel_agency_name: String?,
|
1476
|
+
trip_legs: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg]?
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
type ancillary =
|
1480
|
+
{
|
1481
|
+
connected_ticket_document_number: String?,
|
1482
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?,
|
1483
|
+
passenger_name_or_description: String?,
|
1484
|
+
services: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service],
|
1485
|
+
ticket_document_number: String?
|
1486
|
+
}
|
1487
|
+
|
1488
|
+
class Ancillary < Increase::Internal::Type::BaseModel
|
1489
|
+
attr_accessor connected_ticket_document_number: String?
|
1490
|
+
|
1491
|
+
attr_accessor credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?
|
1492
|
+
|
1493
|
+
attr_accessor passenger_name_or_description: String?
|
1494
|
+
|
1495
|
+
attr_accessor services: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service]
|
1496
|
+
|
1497
|
+
attr_accessor ticket_document_number: String?
|
1498
|
+
|
1499
|
+
def initialize: (
|
1500
|
+
connected_ticket_document_number: String?,
|
1501
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?,
|
1502
|
+
passenger_name_or_description: String?,
|
1503
|
+
services: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service],
|
1504
|
+
ticket_document_number: String?
|
1505
|
+
) -> void
|
1506
|
+
|
1507
|
+
def to_hash: -> {
|
1508
|
+
connected_ticket_document_number: String?,
|
1509
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?,
|
1510
|
+
passenger_name_or_description: String?,
|
1511
|
+
services: ::Array[Increase::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service],
|
1512
|
+
ticket_document_number: String?
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
type credit_reason_indicator =
|
1516
|
+
:no_credit
|
1517
|
+
| :passenger_transport_ancillary_purchase_cancellation
|
1518
|
+
| :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
1519
|
+
| :other
|
1520
|
+
|
1521
|
+
module CreditReasonIndicator
|
1522
|
+
extend Increase::Internal::Type::Enum
|
1523
|
+
|
1524
|
+
# No credit
|
1525
|
+
NO_CREDIT: :no_credit
|
1526
|
+
|
1527
|
+
# Passenger transport ancillary purchase cancellation
|
1528
|
+
PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :passenger_transport_ancillary_purchase_cancellation
|
1529
|
+
|
1530
|
+
# Airline ticket and passenger transport ancillary purchase cancellation
|
1531
|
+
AIRLINE_TICKET_AND_PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
1532
|
+
|
1533
|
+
# Other
|
1534
|
+
OTHER: :other
|
1535
|
+
|
1536
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::credit_reason_indicator]
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
type service =
|
1540
|
+
{
|
1541
|
+
category: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service::category?,
|
1542
|
+
sub_category: String?
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
class Service < Increase::Internal::Type::BaseModel
|
1546
|
+
attr_accessor category: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service::category?
|
1547
|
+
|
1548
|
+
attr_accessor sub_category: String?
|
1549
|
+
|
1550
|
+
def initialize: (
|
1551
|
+
category: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service::category?,
|
1552
|
+
sub_category: String?
|
1553
|
+
) -> void
|
1554
|
+
|
1555
|
+
def to_hash: -> {
|
1556
|
+
category: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service::category?,
|
1557
|
+
sub_category: String?
|
1558
|
+
}
|
1559
|
+
|
1560
|
+
type category =
|
1561
|
+
:none
|
1562
|
+
| :bundled_service
|
1563
|
+
| :baggage_fee
|
1564
|
+
| :change_fee
|
1565
|
+
| :cargo
|
1566
|
+
| :carbon_offset
|
1567
|
+
| :frequent_flyer
|
1568
|
+
| :gift_card
|
1569
|
+
| :ground_transport
|
1570
|
+
| :in_flight_entertainment
|
1571
|
+
| :lounge
|
1572
|
+
| :medical
|
1573
|
+
| :meal_beverage
|
1574
|
+
| :other
|
1575
|
+
| :passenger_assist_fee
|
1576
|
+
| :pets
|
1577
|
+
| :seat_fees
|
1578
|
+
| :standby
|
1579
|
+
| :service_fee
|
1580
|
+
| :store
|
1581
|
+
| :travel_service
|
1582
|
+
| :unaccompanied_travel
|
1583
|
+
| :upgrades
|
1584
|
+
| :wifi
|
1585
|
+
|
1586
|
+
module Category
|
1587
|
+
extend Increase::Internal::Type::Enum
|
1588
|
+
|
1589
|
+
# None
|
1590
|
+
NONE: :none
|
1591
|
+
|
1592
|
+
# Bundled service
|
1593
|
+
BUNDLED_SERVICE: :bundled_service
|
1594
|
+
|
1595
|
+
# Baggage fee
|
1596
|
+
BAGGAGE_FEE: :baggage_fee
|
1597
|
+
|
1598
|
+
# Change fee
|
1599
|
+
CHANGE_FEE: :change_fee
|
1600
|
+
|
1601
|
+
# Cargo
|
1602
|
+
CARGO: :cargo
|
1603
|
+
|
1604
|
+
# Carbon offset
|
1605
|
+
CARBON_OFFSET: :carbon_offset
|
1606
|
+
|
1607
|
+
# Frequent flyer
|
1608
|
+
FREQUENT_FLYER: :frequent_flyer
|
1609
|
+
|
1610
|
+
# Gift card
|
1611
|
+
GIFT_CARD: :gift_card
|
1612
|
+
|
1613
|
+
# Ground transport
|
1614
|
+
GROUND_TRANSPORT: :ground_transport
|
1615
|
+
|
1616
|
+
# In-flight entertainment
|
1617
|
+
IN_FLIGHT_ENTERTAINMENT: :in_flight_entertainment
|
1618
|
+
|
1619
|
+
# Lounge
|
1620
|
+
LOUNGE: :lounge
|
1621
|
+
|
1622
|
+
# Medical
|
1623
|
+
MEDICAL: :medical
|
1624
|
+
|
1625
|
+
# Meal beverage
|
1626
|
+
MEAL_BEVERAGE: :meal_beverage
|
1627
|
+
|
1628
|
+
# Other
|
1629
|
+
OTHER: :other
|
1630
|
+
|
1631
|
+
# Passenger assist fee
|
1632
|
+
PASSENGER_ASSIST_FEE: :passenger_assist_fee
|
1633
|
+
|
1634
|
+
# Pets
|
1635
|
+
PETS: :pets
|
1636
|
+
|
1637
|
+
# Seat fees
|
1638
|
+
SEAT_FEES: :seat_fees
|
1639
|
+
|
1640
|
+
# Standby
|
1641
|
+
STANDBY: :standby
|
1642
|
+
|
1643
|
+
# Service fee
|
1644
|
+
SERVICE_FEE: :service_fee
|
1645
|
+
|
1646
|
+
# Store
|
1647
|
+
STORE: :store
|
1648
|
+
|
1649
|
+
# Travel service
|
1650
|
+
TRAVEL_SERVICE: :travel_service
|
1651
|
+
|
1652
|
+
# Unaccompanied travel
|
1653
|
+
UNACCOMPANIED_TRAVEL: :unaccompanied_travel
|
1654
|
+
|
1655
|
+
# Upgrades
|
1656
|
+
UPGRADES: :upgrades
|
1657
|
+
|
1658
|
+
# Wi-fi
|
1659
|
+
WIFI: :wifi
|
1660
|
+
|
1661
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::Ancillary::Service::category]
|
1662
|
+
end
|
1663
|
+
end
|
1664
|
+
end
|
1665
|
+
|
1666
|
+
type credit_reason_indicator =
|
1667
|
+
:no_credit
|
1668
|
+
| :passenger_transport_ancillary_purchase_cancellation
|
1669
|
+
| :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
1670
|
+
| :airline_ticket_cancellation
|
1671
|
+
| :other
|
1672
|
+
| :partial_refund_of_airline_ticket
|
1673
|
+
|
1674
|
+
module CreditReasonIndicator
|
1675
|
+
extend Increase::Internal::Type::Enum
|
1676
|
+
|
1677
|
+
# No credit
|
1678
|
+
NO_CREDIT: :no_credit
|
1679
|
+
|
1680
|
+
# Passenger transport ancillary purchase cancellation
|
1681
|
+
PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :passenger_transport_ancillary_purchase_cancellation
|
1682
|
+
|
1683
|
+
# Airline ticket and passenger transport ancillary purchase cancellation
|
1684
|
+
AIRLINE_TICKET_AND_PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
1685
|
+
|
1686
|
+
# Airline ticket cancellation
|
1687
|
+
AIRLINE_TICKET_CANCELLATION: :airline_ticket_cancellation
|
1688
|
+
|
1689
|
+
# Other
|
1690
|
+
OTHER: :other
|
1691
|
+
|
1692
|
+
# Partial refund of airline ticket
|
1693
|
+
PARTIAL_REFUND_OF_AIRLINE_TICKET: :partial_refund_of_airline_ticket
|
1694
|
+
|
1695
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::credit_reason_indicator]
|
1696
|
+
end
|
1697
|
+
|
1698
|
+
type restricted_ticket_indicator =
|
1699
|
+
:no_restrictions | :restricted_non_refundable_ticket
|
1700
|
+
|
1701
|
+
module RestrictedTicketIndicator
|
1702
|
+
extend Increase::Internal::Type::Enum
|
1703
|
+
|
1704
|
+
# No restrictions
|
1705
|
+
NO_RESTRICTIONS: :no_restrictions
|
1706
|
+
|
1707
|
+
# Restricted non-refundable ticket
|
1708
|
+
RESTRICTED_NON_REFUNDABLE_TICKET: :restricted_non_refundable_ticket
|
1709
|
+
|
1710
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::restricted_ticket_indicator]
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
type ticket_change_indicator =
|
1714
|
+
:none | :change_to_existing_ticket | :new_ticket
|
1715
|
+
|
1716
|
+
module TicketChangeIndicator
|
1717
|
+
extend Increase::Internal::Type::Enum
|
1718
|
+
|
1719
|
+
# None
|
1720
|
+
NONE: :none
|
1721
|
+
|
1722
|
+
# Change to existing ticket
|
1723
|
+
CHANGE_TO_EXISTING_TICKET: :change_to_existing_ticket
|
1724
|
+
|
1725
|
+
# New ticket
|
1726
|
+
NEW_TICKET: :new_ticket
|
1727
|
+
|
1728
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::ticket_change_indicator]
|
1729
|
+
end
|
1730
|
+
|
1731
|
+
type trip_leg =
|
1732
|
+
{
|
1733
|
+
carrier_code: String?,
|
1734
|
+
destination_city_airport_code: String?,
|
1735
|
+
fare_basis_code: String?,
|
1736
|
+
flight_number: String?,
|
1737
|
+
service_class: String?,
|
1738
|
+
stop_over_code: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
class TripLeg < Increase::Internal::Type::BaseModel
|
1742
|
+
attr_accessor carrier_code: String?
|
1743
|
+
|
1744
|
+
attr_accessor destination_city_airport_code: String?
|
1745
|
+
|
1746
|
+
attr_accessor fare_basis_code: String?
|
1747
|
+
|
1748
|
+
attr_accessor flight_number: String?
|
1749
|
+
|
1750
|
+
attr_accessor service_class: String?
|
1751
|
+
|
1752
|
+
attr_accessor stop_over_code: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
1753
|
+
|
1754
|
+
def initialize: (
|
1755
|
+
carrier_code: String?,
|
1756
|
+
destination_city_airport_code: String?,
|
1757
|
+
fare_basis_code: String?,
|
1758
|
+
flight_number: String?,
|
1759
|
+
service_class: String?,
|
1760
|
+
stop_over_code: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
1761
|
+
) -> void
|
1762
|
+
|
1763
|
+
def to_hash: -> {
|
1764
|
+
carrier_code: String?,
|
1765
|
+
destination_city_airport_code: String?,
|
1766
|
+
fare_basis_code: String?,
|
1767
|
+
flight_number: String?,
|
1768
|
+
service_class: String?,
|
1769
|
+
stop_over_code: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
1770
|
+
}
|
1771
|
+
|
1772
|
+
type stop_over_code =
|
1773
|
+
:none | :stop_over_allowed | :stop_over_not_allowed
|
1774
|
+
|
1775
|
+
module StopOverCode
|
1776
|
+
extend Increase::Internal::Type::Enum
|
1777
|
+
|
1778
|
+
# None
|
1779
|
+
NONE: :none
|
1780
|
+
|
1781
|
+
# Stop over allowed
|
1782
|
+
STOP_OVER_ALLOWED: :stop_over_allowed
|
1783
|
+
|
1784
|
+
# Stop over not allowed
|
1785
|
+
STOP_OVER_NOT_ALLOWED: :stop_over_not_allowed
|
1786
|
+
|
1787
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Travel::TripLeg::stop_over_code]
|
1788
|
+
end
|
1789
|
+
end
|
1790
|
+
end
|
1791
|
+
end
|
1792
|
+
|
1793
|
+
type type_ = :card_refund
|
1794
|
+
|
1795
|
+
module Type
|
1796
|
+
extend Increase::Internal::Type::Enum
|
1797
|
+
|
1798
|
+
CARD_REFUND: :card_refund
|
1799
|
+
|
1800
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::type_]
|
1801
|
+
end
|
1802
|
+
end
|
1803
|
+
|
1804
|
+
type card_revenue_payment =
|
1805
|
+
{
|
1806
|
+
amount: Integer,
|
1807
|
+
currency: Increase::Models::Transaction::Source::CardRevenuePayment::currency,
|
1808
|
+
period_end: Time,
|
1809
|
+
period_start: Time,
|
1810
|
+
transacted_on_account_id: String?
|
1811
|
+
}
|
1812
|
+
|
1813
|
+
class CardRevenuePayment < Increase::Internal::Type::BaseModel
|
1814
|
+
attr_accessor amount: Integer
|
1815
|
+
|
1816
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardRevenuePayment::currency
|
1817
|
+
|
1818
|
+
attr_accessor period_end: Time
|
1819
|
+
|
1820
|
+
attr_accessor period_start: Time
|
1821
|
+
|
1822
|
+
attr_accessor transacted_on_account_id: String?
|
1823
|
+
|
1824
|
+
def initialize: (
|
1825
|
+
amount: Integer,
|
1826
|
+
currency: Increase::Models::Transaction::Source::CardRevenuePayment::currency,
|
1827
|
+
period_end: Time,
|
1828
|
+
period_start: Time,
|
1829
|
+
transacted_on_account_id: String?
|
1830
|
+
) -> void
|
1831
|
+
|
1832
|
+
def to_hash: -> {
|
1833
|
+
amount: Integer,
|
1834
|
+
currency: Increase::Models::Transaction::Source::CardRevenuePayment::currency,
|
1835
|
+
period_end: Time,
|
1836
|
+
period_start: Time,
|
1837
|
+
transacted_on_account_id: String?
|
1838
|
+
}
|
1839
|
+
|
1840
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
1841
|
+
|
1842
|
+
module Currency
|
1843
|
+
extend Increase::Internal::Type::Enum
|
1844
|
+
|
1845
|
+
# Canadian Dollar (CAD)
|
1846
|
+
CAD: :CAD
|
1847
|
+
|
1848
|
+
# Swiss Franc (CHF)
|
1849
|
+
CHF: :CHF
|
1850
|
+
|
1851
|
+
# Euro (EUR)
|
1852
|
+
EUR: :EUR
|
1853
|
+
|
1854
|
+
# British Pound (GBP)
|
1855
|
+
GBP: :GBP
|
1856
|
+
|
1857
|
+
# Japanese Yen (JPY)
|
1858
|
+
JPY: :JPY
|
1859
|
+
|
1860
|
+
# US Dollar (USD)
|
1861
|
+
USD: :USD
|
1862
|
+
|
1863
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRevenuePayment::currency]
|
1864
|
+
end
|
1865
|
+
end
|
1866
|
+
|
1867
|
+
type card_settlement =
|
1868
|
+
{
|
1869
|
+
id: String,
|
1870
|
+
amount: Integer,
|
1871
|
+
card_authorization: String?,
|
1872
|
+
card_payment_id: String,
|
1873
|
+
cashback: Increase::Transaction::Source::CardSettlement::Cashback?,
|
1874
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::currency,
|
1875
|
+
interchange: Increase::Transaction::Source::CardSettlement::Interchange?,
|
1876
|
+
merchant_acceptor_id: String,
|
1877
|
+
merchant_category_code: String,
|
1878
|
+
merchant_city: String,
|
1879
|
+
merchant_country: String,
|
1880
|
+
merchant_name: String,
|
1881
|
+
merchant_postal_code: String?,
|
1882
|
+
merchant_state: String?,
|
1883
|
+
network_identifiers: Increase::Transaction::Source::CardSettlement::NetworkIdentifiers,
|
1884
|
+
pending_transaction_id: String?,
|
1885
|
+
presentment_amount: Integer,
|
1886
|
+
presentment_currency: String,
|
1887
|
+
purchase_details: Increase::Transaction::Source::CardSettlement::PurchaseDetails?,
|
1888
|
+
transaction_id: String,
|
1889
|
+
type: Increase::Models::Transaction::Source::CardSettlement::type_
|
1890
|
+
}
|
1891
|
+
|
1892
|
+
class CardSettlement < Increase::Internal::Type::BaseModel
|
1893
|
+
attr_accessor id: String
|
1894
|
+
|
1895
|
+
attr_accessor amount: Integer
|
1896
|
+
|
1897
|
+
attr_accessor card_authorization: String?
|
1898
|
+
|
1899
|
+
attr_accessor card_payment_id: String
|
1900
|
+
|
1901
|
+
attr_accessor cashback: Increase::Transaction::Source::CardSettlement::Cashback?
|
1902
|
+
|
1903
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardSettlement::currency
|
1904
|
+
|
1905
|
+
attr_accessor interchange: Increase::Transaction::Source::CardSettlement::Interchange?
|
1906
|
+
|
1907
|
+
attr_accessor merchant_acceptor_id: String
|
1908
|
+
|
1909
|
+
attr_accessor merchant_category_code: String
|
1910
|
+
|
1911
|
+
attr_accessor merchant_city: String
|
1912
|
+
|
1913
|
+
attr_accessor merchant_country: String
|
1914
|
+
|
1915
|
+
attr_accessor merchant_name: String
|
1916
|
+
|
1917
|
+
attr_accessor merchant_postal_code: String?
|
1918
|
+
|
1919
|
+
attr_accessor merchant_state: String?
|
1920
|
+
|
1921
|
+
attr_accessor network_identifiers: Increase::Transaction::Source::CardSettlement::NetworkIdentifiers
|
1922
|
+
|
1923
|
+
attr_accessor pending_transaction_id: String?
|
1924
|
+
|
1925
|
+
attr_accessor presentment_amount: Integer
|
1926
|
+
|
1927
|
+
attr_accessor presentment_currency: String
|
1928
|
+
|
1929
|
+
attr_accessor purchase_details: Increase::Transaction::Source::CardSettlement::PurchaseDetails?
|
1930
|
+
|
1931
|
+
attr_accessor transaction_id: String
|
1932
|
+
|
1933
|
+
attr_accessor type: Increase::Models::Transaction::Source::CardSettlement::type_
|
1934
|
+
|
1935
|
+
def initialize: (
|
1936
|
+
id: String,
|
1937
|
+
amount: Integer,
|
1938
|
+
card_authorization: String?,
|
1939
|
+
card_payment_id: String,
|
1940
|
+
cashback: Increase::Transaction::Source::CardSettlement::Cashback?,
|
1941
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::currency,
|
1942
|
+
interchange: Increase::Transaction::Source::CardSettlement::Interchange?,
|
1943
|
+
merchant_acceptor_id: String,
|
1944
|
+
merchant_category_code: String,
|
1945
|
+
merchant_city: String,
|
1946
|
+
merchant_country: String,
|
1947
|
+
merchant_name: String,
|
1948
|
+
merchant_postal_code: String?,
|
1949
|
+
merchant_state: String?,
|
1950
|
+
network_identifiers: Increase::Transaction::Source::CardSettlement::NetworkIdentifiers,
|
1951
|
+
pending_transaction_id: String?,
|
1952
|
+
presentment_amount: Integer,
|
1953
|
+
presentment_currency: String,
|
1954
|
+
purchase_details: Increase::Transaction::Source::CardSettlement::PurchaseDetails?,
|
1955
|
+
transaction_id: String,
|
1956
|
+
type: Increase::Models::Transaction::Source::CardSettlement::type_
|
1957
|
+
) -> void
|
1958
|
+
|
1959
|
+
def to_hash: -> {
|
1960
|
+
id: String,
|
1961
|
+
amount: Integer,
|
1962
|
+
card_authorization: String?,
|
1963
|
+
card_payment_id: String,
|
1964
|
+
cashback: Increase::Transaction::Source::CardSettlement::Cashback?,
|
1965
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::currency,
|
1966
|
+
interchange: Increase::Transaction::Source::CardSettlement::Interchange?,
|
1967
|
+
merchant_acceptor_id: String,
|
1968
|
+
merchant_category_code: String,
|
1969
|
+
merchant_city: String,
|
1970
|
+
merchant_country: String,
|
1971
|
+
merchant_name: String,
|
1972
|
+
merchant_postal_code: String?,
|
1973
|
+
merchant_state: String?,
|
1974
|
+
network_identifiers: Increase::Transaction::Source::CardSettlement::NetworkIdentifiers,
|
1975
|
+
pending_transaction_id: String?,
|
1976
|
+
presentment_amount: Integer,
|
1977
|
+
presentment_currency: String,
|
1978
|
+
purchase_details: Increase::Transaction::Source::CardSettlement::PurchaseDetails?,
|
1979
|
+
transaction_id: String,
|
1980
|
+
type: Increase::Models::Transaction::Source::CardSettlement::type_
|
1981
|
+
}
|
1982
|
+
|
1983
|
+
type cashback =
|
1984
|
+
{
|
1985
|
+
amount: String,
|
1986
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::Cashback::currency
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
class Cashback < Increase::Internal::Type::BaseModel
|
1990
|
+
attr_accessor amount: String
|
1991
|
+
|
1992
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardSettlement::Cashback::currency
|
1993
|
+
|
1994
|
+
def initialize: (
|
1995
|
+
amount: String,
|
1996
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::Cashback::currency
|
1997
|
+
) -> void
|
1998
|
+
|
1999
|
+
def to_hash: -> {
|
2000
|
+
amount: String,
|
2001
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::Cashback::currency
|
2002
|
+
}
|
2003
|
+
|
2004
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
2005
|
+
|
2006
|
+
module Currency
|
2007
|
+
extend Increase::Internal::Type::Enum
|
2008
|
+
|
2009
|
+
# Canadian Dollar (CAD)
|
2010
|
+
CAD: :CAD
|
2011
|
+
|
2012
|
+
# Swiss Franc (CHF)
|
2013
|
+
CHF: :CHF
|
2014
|
+
|
2015
|
+
# Euro (EUR)
|
2016
|
+
EUR: :EUR
|
2017
|
+
|
2018
|
+
# British Pound (GBP)
|
2019
|
+
GBP: :GBP
|
2020
|
+
|
2021
|
+
# Japanese Yen (JPY)
|
2022
|
+
JPY: :JPY
|
2023
|
+
|
2024
|
+
# US Dollar (USD)
|
2025
|
+
USD: :USD
|
2026
|
+
|
2027
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::Cashback::currency]
|
2028
|
+
end
|
2029
|
+
end
|
2030
|
+
|
2031
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
2032
|
+
|
2033
|
+
module Currency
|
2034
|
+
extend Increase::Internal::Type::Enum
|
2035
|
+
|
2036
|
+
# Canadian Dollar (CAD)
|
2037
|
+
CAD: :CAD
|
2038
|
+
|
2039
|
+
# Swiss Franc (CHF)
|
2040
|
+
CHF: :CHF
|
2041
|
+
|
2042
|
+
# Euro (EUR)
|
2043
|
+
EUR: :EUR
|
2044
|
+
|
2045
|
+
# British Pound (GBP)
|
2046
|
+
GBP: :GBP
|
2047
|
+
|
2048
|
+
# Japanese Yen (JPY)
|
2049
|
+
JPY: :JPY
|
2050
|
+
|
2051
|
+
# US Dollar (USD)
|
2052
|
+
USD: :USD
|
2053
|
+
|
2054
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::currency]
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
type interchange =
|
2058
|
+
{
|
2059
|
+
amount: String,
|
2060
|
+
code: String?,
|
2061
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::Interchange::currency
|
2062
|
+
}
|
2063
|
+
|
2064
|
+
class Interchange < Increase::Internal::Type::BaseModel
|
2065
|
+
attr_accessor amount: String
|
2066
|
+
|
2067
|
+
attr_accessor code: String?
|
2068
|
+
|
2069
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CardSettlement::Interchange::currency
|
2070
|
+
|
2071
|
+
def initialize: (
|
2072
|
+
amount: String,
|
2073
|
+
code: String?,
|
2074
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::Interchange::currency
|
2075
|
+
) -> void
|
2076
|
+
|
2077
|
+
def to_hash: -> {
|
2078
|
+
amount: String,
|
2079
|
+
code: String?,
|
2080
|
+
currency: Increase::Models::Transaction::Source::CardSettlement::Interchange::currency
|
2081
|
+
}
|
2082
|
+
|
2083
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
2084
|
+
|
2085
|
+
module Currency
|
2086
|
+
extend Increase::Internal::Type::Enum
|
2087
|
+
|
2088
|
+
# Canadian Dollar (CAD)
|
2089
|
+
CAD: :CAD
|
2090
|
+
|
2091
|
+
# Swiss Franc (CHF)
|
2092
|
+
CHF: :CHF
|
2093
|
+
|
2094
|
+
# Euro (EUR)
|
2095
|
+
EUR: :EUR
|
2096
|
+
|
2097
|
+
# British Pound (GBP)
|
2098
|
+
GBP: :GBP
|
2099
|
+
|
2100
|
+
# Japanese Yen (JPY)
|
2101
|
+
JPY: :JPY
|
2102
|
+
|
2103
|
+
# US Dollar (USD)
|
2104
|
+
USD: :USD
|
2105
|
+
|
2106
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::Interchange::currency]
|
2107
|
+
end
|
2108
|
+
end
|
2109
|
+
|
2110
|
+
type network_identifiers =
|
2111
|
+
{
|
2112
|
+
acquirer_business_id: String,
|
2113
|
+
acquirer_reference_number: String,
|
2114
|
+
transaction_id: String?
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
2118
|
+
attr_accessor acquirer_business_id: String
|
2119
|
+
|
2120
|
+
attr_accessor acquirer_reference_number: String
|
2121
|
+
|
2122
|
+
attr_accessor transaction_id: String?
|
2123
|
+
|
2124
|
+
def initialize: (
|
2125
|
+
acquirer_business_id: String,
|
2126
|
+
acquirer_reference_number: String,
|
2127
|
+
transaction_id: String?
|
2128
|
+
) -> void
|
2129
|
+
|
2130
|
+
def to_hash: -> {
|
2131
|
+
acquirer_business_id: String,
|
2132
|
+
acquirer_reference_number: String,
|
2133
|
+
transaction_id: String?
|
2134
|
+
}
|
2135
|
+
end
|
2136
|
+
|
2137
|
+
type purchase_details =
|
2138
|
+
{
|
2139
|
+
car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?,
|
2140
|
+
customer_reference_identifier: String?,
|
2141
|
+
local_tax_amount: Integer?,
|
2142
|
+
local_tax_currency: String?,
|
2143
|
+
lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?,
|
2144
|
+
national_tax_amount: Integer?,
|
2145
|
+
national_tax_currency: String?,
|
2146
|
+
purchase_identifier: String?,
|
2147
|
+
purchase_identifier_format: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::purchase_identifier_format?,
|
2148
|
+
travel: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel?
|
2149
|
+
}
|
2150
|
+
|
2151
|
+
class PurchaseDetails < Increase::Internal::Type::BaseModel
|
2152
|
+
attr_accessor car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?
|
2153
|
+
|
2154
|
+
attr_accessor customer_reference_identifier: String?
|
2155
|
+
|
2156
|
+
attr_accessor local_tax_amount: Integer?
|
2157
|
+
|
2158
|
+
attr_accessor local_tax_currency: String?
|
2159
|
+
|
2160
|
+
attr_accessor lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?
|
2161
|
+
|
2162
|
+
attr_accessor national_tax_amount: Integer?
|
2163
|
+
|
2164
|
+
attr_accessor national_tax_currency: String?
|
2165
|
+
|
2166
|
+
attr_accessor purchase_identifier: String?
|
2167
|
+
|
2168
|
+
attr_accessor purchase_identifier_format: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::purchase_identifier_format?
|
2169
|
+
|
2170
|
+
attr_accessor travel: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel?
|
2171
|
+
|
2172
|
+
def initialize: (
|
2173
|
+
car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?,
|
2174
|
+
customer_reference_identifier: String?,
|
2175
|
+
local_tax_amount: Integer?,
|
2176
|
+
local_tax_currency: String?,
|
2177
|
+
lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?,
|
2178
|
+
national_tax_amount: Integer?,
|
2179
|
+
national_tax_currency: String?,
|
2180
|
+
purchase_identifier: String?,
|
2181
|
+
purchase_identifier_format: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::purchase_identifier_format?,
|
2182
|
+
travel: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel?
|
2183
|
+
) -> void
|
2184
|
+
|
2185
|
+
def to_hash: -> {
|
2186
|
+
car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?,
|
2187
|
+
customer_reference_identifier: String?,
|
2188
|
+
local_tax_amount: Integer?,
|
2189
|
+
local_tax_currency: String?,
|
2190
|
+
lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?,
|
2191
|
+
national_tax_amount: Integer?,
|
2192
|
+
national_tax_currency: String?,
|
2193
|
+
purchase_identifier: String?,
|
2194
|
+
purchase_identifier_format: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::purchase_identifier_format?,
|
2195
|
+
travel: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel?
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
type car_rental =
|
2199
|
+
{
|
2200
|
+
car_class_code: String?,
|
2201
|
+
checkout_date: Date?,
|
2202
|
+
daily_rental_rate_amount: Integer?,
|
2203
|
+
daily_rental_rate_currency: String?,
|
2204
|
+
days_rented: Integer?,
|
2205
|
+
extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::extra_charges?,
|
2206
|
+
fuel_charges_amount: Integer?,
|
2207
|
+
fuel_charges_currency: String?,
|
2208
|
+
insurance_charges_amount: Integer?,
|
2209
|
+
insurance_charges_currency: String?,
|
2210
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::no_show_indicator?,
|
2211
|
+
one_way_drop_off_charges_amount: Integer?,
|
2212
|
+
one_way_drop_off_charges_currency: String?,
|
2213
|
+
renter_name: String?,
|
2214
|
+
weekly_rental_rate_amount: Integer?,
|
2215
|
+
weekly_rental_rate_currency: String?
|
2216
|
+
}
|
2217
|
+
|
2218
|
+
class CarRental < Increase::Internal::Type::BaseModel
|
2219
|
+
attr_accessor car_class_code: String?
|
2220
|
+
|
2221
|
+
attr_accessor checkout_date: Date?
|
2222
|
+
|
2223
|
+
attr_accessor daily_rental_rate_amount: Integer?
|
2224
|
+
|
2225
|
+
attr_accessor daily_rental_rate_currency: String?
|
2226
|
+
|
2227
|
+
attr_accessor days_rented: Integer?
|
2228
|
+
|
2229
|
+
attr_accessor extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::extra_charges?
|
2230
|
+
|
2231
|
+
attr_accessor fuel_charges_amount: Integer?
|
2232
|
+
|
2233
|
+
attr_accessor fuel_charges_currency: String?
|
2234
|
+
|
2235
|
+
attr_accessor insurance_charges_amount: Integer?
|
2236
|
+
|
2237
|
+
attr_accessor insurance_charges_currency: String?
|
2238
|
+
|
2239
|
+
attr_accessor no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::no_show_indicator?
|
2240
|
+
|
2241
|
+
attr_accessor one_way_drop_off_charges_amount: Integer?
|
2242
|
+
|
2243
|
+
attr_accessor one_way_drop_off_charges_currency: String?
|
2244
|
+
|
2245
|
+
attr_accessor renter_name: String?
|
2246
|
+
|
2247
|
+
attr_accessor weekly_rental_rate_amount: Integer?
|
2248
|
+
|
2249
|
+
attr_accessor weekly_rental_rate_currency: String?
|
2250
|
+
|
2251
|
+
def initialize: (
|
2252
|
+
car_class_code: String?,
|
2253
|
+
checkout_date: Date?,
|
2254
|
+
daily_rental_rate_amount: Integer?,
|
2255
|
+
daily_rental_rate_currency: String?,
|
2256
|
+
days_rented: Integer?,
|
2257
|
+
extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::extra_charges?,
|
2258
|
+
fuel_charges_amount: Integer?,
|
2259
|
+
fuel_charges_currency: String?,
|
2260
|
+
insurance_charges_amount: Integer?,
|
2261
|
+
insurance_charges_currency: String?,
|
2262
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::no_show_indicator?,
|
2263
|
+
one_way_drop_off_charges_amount: Integer?,
|
2264
|
+
one_way_drop_off_charges_currency: String?,
|
2265
|
+
renter_name: String?,
|
2266
|
+
weekly_rental_rate_amount: Integer?,
|
2267
|
+
weekly_rental_rate_currency: String?
|
2268
|
+
) -> void
|
2269
|
+
|
2270
|
+
def to_hash: -> {
|
2271
|
+
car_class_code: String?,
|
2272
|
+
checkout_date: Date?,
|
2273
|
+
daily_rental_rate_amount: Integer?,
|
2274
|
+
daily_rental_rate_currency: String?,
|
2275
|
+
days_rented: Integer?,
|
2276
|
+
extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::extra_charges?,
|
2277
|
+
fuel_charges_amount: Integer?,
|
2278
|
+
fuel_charges_currency: String?,
|
2279
|
+
insurance_charges_amount: Integer?,
|
2280
|
+
insurance_charges_currency: String?,
|
2281
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::no_show_indicator?,
|
2282
|
+
one_way_drop_off_charges_amount: Integer?,
|
2283
|
+
one_way_drop_off_charges_currency: String?,
|
2284
|
+
renter_name: String?,
|
2285
|
+
weekly_rental_rate_amount: Integer?,
|
2286
|
+
weekly_rental_rate_currency: String?
|
2287
|
+
}
|
2288
|
+
|
2289
|
+
type extra_charges =
|
2290
|
+
:no_extra_charge
|
2291
|
+
| :gas
|
2292
|
+
| :extra_mileage
|
2293
|
+
| :late_return
|
2294
|
+
| :one_way_service_fee
|
2295
|
+
| :parking_violation
|
2296
|
+
|
2297
|
+
module ExtraCharges
|
2298
|
+
extend Increase::Internal::Type::Enum
|
2299
|
+
|
2300
|
+
# No extra charge
|
2301
|
+
NO_EXTRA_CHARGE: :no_extra_charge
|
2302
|
+
|
2303
|
+
# Gas
|
2304
|
+
GAS: :gas
|
2305
|
+
|
2306
|
+
# Extra mileage
|
2307
|
+
EXTRA_MILEAGE: :extra_mileage
|
2308
|
+
|
2309
|
+
# Late return
|
2310
|
+
LATE_RETURN: :late_return
|
2311
|
+
|
2312
|
+
# One way service fee
|
2313
|
+
ONE_WAY_SERVICE_FEE: :one_way_service_fee
|
2314
|
+
|
2315
|
+
# Parking violation
|
2316
|
+
PARKING_VIOLATION: :parking_violation
|
2317
|
+
|
2318
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::extra_charges]
|
2319
|
+
end
|
2320
|
+
|
2321
|
+
type no_show_indicator =
|
2322
|
+
:not_applicable | :no_show_for_specialized_vehicle
|
2323
|
+
|
2324
|
+
module NoShowIndicator
|
2325
|
+
extend Increase::Internal::Type::Enum
|
2326
|
+
|
2327
|
+
# Not applicable
|
2328
|
+
NOT_APPLICABLE: :not_applicable
|
2329
|
+
|
2330
|
+
# No show for specialized vehicle
|
2331
|
+
NO_SHOW_FOR_SPECIALIZED_VEHICLE: :no_show_for_specialized_vehicle
|
2332
|
+
|
2333
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::CarRental::no_show_indicator]
|
2334
|
+
end
|
2335
|
+
end
|
2336
|
+
|
2337
|
+
type lodging =
|
2338
|
+
{
|
2339
|
+
check_in_date: Date?,
|
2340
|
+
daily_room_rate_amount: Integer?,
|
2341
|
+
daily_room_rate_currency: String?,
|
2342
|
+
extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::extra_charges?,
|
2343
|
+
folio_cash_advances_amount: Integer?,
|
2344
|
+
folio_cash_advances_currency: String?,
|
2345
|
+
food_beverage_charges_amount: Integer?,
|
2346
|
+
food_beverage_charges_currency: String?,
|
2347
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::no_show_indicator?,
|
2348
|
+
prepaid_expenses_amount: Integer?,
|
2349
|
+
prepaid_expenses_currency: String?,
|
2350
|
+
room_nights: Integer?,
|
2351
|
+
total_room_tax_amount: Integer?,
|
2352
|
+
total_room_tax_currency: String?,
|
2353
|
+
total_tax_amount: Integer?,
|
2354
|
+
total_tax_currency: String?
|
2355
|
+
}
|
2356
|
+
|
2357
|
+
class Lodging < Increase::Internal::Type::BaseModel
|
2358
|
+
attr_accessor check_in_date: Date?
|
2359
|
+
|
2360
|
+
attr_accessor daily_room_rate_amount: Integer?
|
2361
|
+
|
2362
|
+
attr_accessor daily_room_rate_currency: String?
|
2363
|
+
|
2364
|
+
attr_accessor extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::extra_charges?
|
2365
|
+
|
2366
|
+
attr_accessor folio_cash_advances_amount: Integer?
|
2367
|
+
|
2368
|
+
attr_accessor folio_cash_advances_currency: String?
|
2369
|
+
|
2370
|
+
attr_accessor food_beverage_charges_amount: Integer?
|
2371
|
+
|
2372
|
+
attr_accessor food_beverage_charges_currency: String?
|
2373
|
+
|
2374
|
+
attr_accessor no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::no_show_indicator?
|
2375
|
+
|
2376
|
+
attr_accessor prepaid_expenses_amount: Integer?
|
2377
|
+
|
2378
|
+
attr_accessor prepaid_expenses_currency: String?
|
2379
|
+
|
2380
|
+
attr_accessor room_nights: Integer?
|
2381
|
+
|
2382
|
+
attr_accessor total_room_tax_amount: Integer?
|
2383
|
+
|
2384
|
+
attr_accessor total_room_tax_currency: String?
|
2385
|
+
|
2386
|
+
attr_accessor total_tax_amount: Integer?
|
2387
|
+
|
2388
|
+
attr_accessor total_tax_currency: String?
|
2389
|
+
|
2390
|
+
def initialize: (
|
2391
|
+
check_in_date: Date?,
|
2392
|
+
daily_room_rate_amount: Integer?,
|
2393
|
+
daily_room_rate_currency: String?,
|
2394
|
+
extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::extra_charges?,
|
2395
|
+
folio_cash_advances_amount: Integer?,
|
2396
|
+
folio_cash_advances_currency: String?,
|
2397
|
+
food_beverage_charges_amount: Integer?,
|
2398
|
+
food_beverage_charges_currency: String?,
|
2399
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::no_show_indicator?,
|
2400
|
+
prepaid_expenses_amount: Integer?,
|
2401
|
+
prepaid_expenses_currency: String?,
|
2402
|
+
room_nights: Integer?,
|
2403
|
+
total_room_tax_amount: Integer?,
|
2404
|
+
total_room_tax_currency: String?,
|
2405
|
+
total_tax_amount: Integer?,
|
2406
|
+
total_tax_currency: String?
|
2407
|
+
) -> void
|
2408
|
+
|
2409
|
+
def to_hash: -> {
|
2410
|
+
check_in_date: Date?,
|
2411
|
+
daily_room_rate_amount: Integer?,
|
2412
|
+
daily_room_rate_currency: String?,
|
2413
|
+
extra_charges: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::extra_charges?,
|
2414
|
+
folio_cash_advances_amount: Integer?,
|
2415
|
+
folio_cash_advances_currency: String?,
|
2416
|
+
food_beverage_charges_amount: Integer?,
|
2417
|
+
food_beverage_charges_currency: String?,
|
2418
|
+
no_show_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::no_show_indicator?,
|
2419
|
+
prepaid_expenses_amount: Integer?,
|
2420
|
+
prepaid_expenses_currency: String?,
|
2421
|
+
room_nights: Integer?,
|
2422
|
+
total_room_tax_amount: Integer?,
|
2423
|
+
total_room_tax_currency: String?,
|
2424
|
+
total_tax_amount: Integer?,
|
2425
|
+
total_tax_currency: String?
|
2426
|
+
}
|
2427
|
+
|
2428
|
+
type extra_charges =
|
2429
|
+
:no_extra_charge
|
2430
|
+
| :restaurant
|
2431
|
+
| :gift_shop
|
2432
|
+
| :mini_bar
|
2433
|
+
| :telephone
|
2434
|
+
| :other
|
2435
|
+
| :laundry
|
2436
|
+
|
2437
|
+
module ExtraCharges
|
2438
|
+
extend Increase::Internal::Type::Enum
|
2439
|
+
|
2440
|
+
# No extra charge
|
2441
|
+
NO_EXTRA_CHARGE: :no_extra_charge
|
2442
|
+
|
2443
|
+
# Restaurant
|
2444
|
+
RESTAURANT: :restaurant
|
2445
|
+
|
2446
|
+
# Gift shop
|
2447
|
+
GIFT_SHOP: :gift_shop
|
2448
|
+
|
2449
|
+
# Mini bar
|
2450
|
+
MINI_BAR: :mini_bar
|
2451
|
+
|
2452
|
+
# Telephone
|
2453
|
+
TELEPHONE: :telephone
|
2454
|
+
|
2455
|
+
# Other
|
2456
|
+
OTHER: :other
|
2457
|
+
|
2458
|
+
# Laundry
|
2459
|
+
LAUNDRY: :laundry
|
2460
|
+
|
2461
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::extra_charges]
|
2462
|
+
end
|
2463
|
+
|
2464
|
+
type no_show_indicator = :not_applicable | :no_show
|
2465
|
+
|
2466
|
+
module NoShowIndicator
|
2467
|
+
extend Increase::Internal::Type::Enum
|
2468
|
+
|
2469
|
+
# Not applicable
|
2470
|
+
NOT_APPLICABLE: :not_applicable
|
2471
|
+
|
2472
|
+
# No show
|
2473
|
+
NO_SHOW: :no_show
|
2474
|
+
|
2475
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Lodging::no_show_indicator]
|
2476
|
+
end
|
2477
|
+
end
|
2478
|
+
|
2479
|
+
type purchase_identifier_format =
|
2480
|
+
:free_text
|
2481
|
+
| :order_number
|
2482
|
+
| :rental_agreement_number
|
2483
|
+
| :hotel_folio_number
|
2484
|
+
| :invoice_number
|
2485
|
+
|
2486
|
+
module PurchaseIdentifierFormat
|
2487
|
+
extend Increase::Internal::Type::Enum
|
2488
|
+
|
2489
|
+
# Free text
|
2490
|
+
FREE_TEXT: :free_text
|
2491
|
+
|
2492
|
+
# Order number
|
2493
|
+
ORDER_NUMBER: :order_number
|
2494
|
+
|
2495
|
+
# Rental agreement number
|
2496
|
+
RENTAL_AGREEMENT_NUMBER: :rental_agreement_number
|
2497
|
+
|
2498
|
+
# Hotel folio number
|
2499
|
+
HOTEL_FOLIO_NUMBER: :hotel_folio_number
|
2500
|
+
|
2501
|
+
# Invoice number
|
2502
|
+
INVOICE_NUMBER: :invoice_number
|
2503
|
+
|
2504
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::purchase_identifier_format]
|
2505
|
+
end
|
2506
|
+
|
2507
|
+
type travel =
|
2508
|
+
{
|
2509
|
+
ancillary: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary?,
|
2510
|
+
computerized_reservation_system: String?,
|
2511
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::credit_reason_indicator?,
|
2512
|
+
departure_date: Date?,
|
2513
|
+
origination_city_airport_code: String?,
|
2514
|
+
passenger_name: String?,
|
2515
|
+
restricted_ticket_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::restricted_ticket_indicator?,
|
2516
|
+
ticket_change_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::ticket_change_indicator?,
|
2517
|
+
ticket_number: String?,
|
2518
|
+
travel_agency_code: String?,
|
2519
|
+
travel_agency_name: String?,
|
2520
|
+
trip_legs: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg]?
|
2521
|
+
}
|
2522
|
+
|
2523
|
+
class Travel < Increase::Internal::Type::BaseModel
|
2524
|
+
attr_accessor ancillary: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary?
|
2525
|
+
|
2526
|
+
attr_accessor computerized_reservation_system: String?
|
2527
|
+
|
2528
|
+
attr_accessor credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::credit_reason_indicator?
|
2529
|
+
|
2530
|
+
attr_accessor departure_date: Date?
|
2531
|
+
|
2532
|
+
attr_accessor origination_city_airport_code: String?
|
2533
|
+
|
2534
|
+
attr_accessor passenger_name: String?
|
2535
|
+
|
2536
|
+
attr_accessor restricted_ticket_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::restricted_ticket_indicator?
|
2537
|
+
|
2538
|
+
attr_accessor ticket_change_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::ticket_change_indicator?
|
2539
|
+
|
2540
|
+
attr_accessor ticket_number: String?
|
2541
|
+
|
2542
|
+
attr_accessor travel_agency_code: String?
|
2543
|
+
|
2544
|
+
attr_accessor travel_agency_name: String?
|
2545
|
+
|
2546
|
+
attr_accessor trip_legs: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg]?
|
2547
|
+
|
2548
|
+
def initialize: (
|
2549
|
+
ancillary: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary?,
|
2550
|
+
computerized_reservation_system: String?,
|
2551
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::credit_reason_indicator?,
|
2552
|
+
departure_date: Date?,
|
2553
|
+
origination_city_airport_code: String?,
|
2554
|
+
passenger_name: String?,
|
2555
|
+
restricted_ticket_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::restricted_ticket_indicator?,
|
2556
|
+
ticket_change_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::ticket_change_indicator?,
|
2557
|
+
ticket_number: String?,
|
2558
|
+
travel_agency_code: String?,
|
2559
|
+
travel_agency_name: String?,
|
2560
|
+
trip_legs: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg]?
|
2561
|
+
) -> void
|
2562
|
+
|
2563
|
+
def to_hash: -> {
|
2564
|
+
ancillary: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary?,
|
2565
|
+
computerized_reservation_system: String?,
|
2566
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::credit_reason_indicator?,
|
2567
|
+
departure_date: Date?,
|
2568
|
+
origination_city_airport_code: String?,
|
2569
|
+
passenger_name: String?,
|
2570
|
+
restricted_ticket_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::restricted_ticket_indicator?,
|
2571
|
+
ticket_change_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::ticket_change_indicator?,
|
2572
|
+
ticket_number: String?,
|
2573
|
+
travel_agency_code: String?,
|
2574
|
+
travel_agency_name: String?,
|
2575
|
+
trip_legs: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg]?
|
2576
|
+
}
|
2577
|
+
|
2578
|
+
type ancillary =
|
2579
|
+
{
|
2580
|
+
connected_ticket_document_number: String?,
|
2581
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?,
|
2582
|
+
passenger_name_or_description: String?,
|
2583
|
+
services: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service],
|
2584
|
+
ticket_document_number: String?
|
2585
|
+
}
|
2586
|
+
|
2587
|
+
class Ancillary < Increase::Internal::Type::BaseModel
|
2588
|
+
attr_accessor connected_ticket_document_number: String?
|
2589
|
+
|
2590
|
+
attr_accessor credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?
|
2591
|
+
|
2592
|
+
attr_accessor passenger_name_or_description: String?
|
2593
|
+
|
2594
|
+
attr_accessor services: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service]
|
2595
|
+
|
2596
|
+
attr_accessor ticket_document_number: String?
|
2597
|
+
|
2598
|
+
def initialize: (
|
2599
|
+
connected_ticket_document_number: String?,
|
2600
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?,
|
2601
|
+
passenger_name_or_description: String?,
|
2602
|
+
services: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service],
|
2603
|
+
ticket_document_number: String?
|
2604
|
+
) -> void
|
2605
|
+
|
2606
|
+
def to_hash: -> {
|
2607
|
+
connected_ticket_document_number: String?,
|
2608
|
+
credit_reason_indicator: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::credit_reason_indicator?,
|
2609
|
+
passenger_name_or_description: String?,
|
2610
|
+
services: ::Array[Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service],
|
2611
|
+
ticket_document_number: String?
|
2612
|
+
}
|
2613
|
+
|
2614
|
+
type credit_reason_indicator =
|
2615
|
+
:no_credit
|
2616
|
+
| :passenger_transport_ancillary_purchase_cancellation
|
2617
|
+
| :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
2618
|
+
| :other
|
2619
|
+
|
2620
|
+
module CreditReasonIndicator
|
2621
|
+
extend Increase::Internal::Type::Enum
|
2622
|
+
|
2623
|
+
# No credit
|
2624
|
+
NO_CREDIT: :no_credit
|
2625
|
+
|
2626
|
+
# Passenger transport ancillary purchase cancellation
|
2627
|
+
PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :passenger_transport_ancillary_purchase_cancellation
|
2628
|
+
|
2629
|
+
# Airline ticket and passenger transport ancillary purchase cancellation
|
2630
|
+
AIRLINE_TICKET_AND_PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
2631
|
+
|
2632
|
+
# Other
|
2633
|
+
OTHER: :other
|
2634
|
+
|
2635
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::credit_reason_indicator]
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
type service =
|
2639
|
+
{
|
2640
|
+
category: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service::category?,
|
2641
|
+
sub_category: String?
|
2642
|
+
}
|
2643
|
+
|
2644
|
+
class Service < Increase::Internal::Type::BaseModel
|
2645
|
+
attr_accessor category: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service::category?
|
2646
|
+
|
2647
|
+
attr_accessor sub_category: String?
|
2648
|
+
|
2649
|
+
def initialize: (
|
2650
|
+
category: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service::category?,
|
2651
|
+
sub_category: String?
|
2652
|
+
) -> void
|
2653
|
+
|
2654
|
+
def to_hash: -> {
|
2655
|
+
category: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service::category?,
|
2656
|
+
sub_category: String?
|
2657
|
+
}
|
2658
|
+
|
2659
|
+
type category =
|
2660
|
+
:none
|
2661
|
+
| :bundled_service
|
2662
|
+
| :baggage_fee
|
2663
|
+
| :change_fee
|
2664
|
+
| :cargo
|
2665
|
+
| :carbon_offset
|
2666
|
+
| :frequent_flyer
|
2667
|
+
| :gift_card
|
2668
|
+
| :ground_transport
|
2669
|
+
| :in_flight_entertainment
|
2670
|
+
| :lounge
|
2671
|
+
| :medical
|
2672
|
+
| :meal_beverage
|
2673
|
+
| :other
|
2674
|
+
| :passenger_assist_fee
|
2675
|
+
| :pets
|
2676
|
+
| :seat_fees
|
2677
|
+
| :standby
|
2678
|
+
| :service_fee
|
2679
|
+
| :store
|
2680
|
+
| :travel_service
|
2681
|
+
| :unaccompanied_travel
|
2682
|
+
| :upgrades
|
2683
|
+
| :wifi
|
2684
|
+
|
2685
|
+
module Category
|
2686
|
+
extend Increase::Internal::Type::Enum
|
2687
|
+
|
2688
|
+
# None
|
2689
|
+
NONE: :none
|
2690
|
+
|
2691
|
+
# Bundled service
|
2692
|
+
BUNDLED_SERVICE: :bundled_service
|
2693
|
+
|
2694
|
+
# Baggage fee
|
2695
|
+
BAGGAGE_FEE: :baggage_fee
|
2696
|
+
|
2697
|
+
# Change fee
|
2698
|
+
CHANGE_FEE: :change_fee
|
2699
|
+
|
2700
|
+
# Cargo
|
2701
|
+
CARGO: :cargo
|
2702
|
+
|
2703
|
+
# Carbon offset
|
2704
|
+
CARBON_OFFSET: :carbon_offset
|
2705
|
+
|
2706
|
+
# Frequent flyer
|
2707
|
+
FREQUENT_FLYER: :frequent_flyer
|
2708
|
+
|
2709
|
+
# Gift card
|
2710
|
+
GIFT_CARD: :gift_card
|
2711
|
+
|
2712
|
+
# Ground transport
|
2713
|
+
GROUND_TRANSPORT: :ground_transport
|
2714
|
+
|
2715
|
+
# In-flight entertainment
|
2716
|
+
IN_FLIGHT_ENTERTAINMENT: :in_flight_entertainment
|
2717
|
+
|
2718
|
+
# Lounge
|
2719
|
+
LOUNGE: :lounge
|
2720
|
+
|
2721
|
+
# Medical
|
2722
|
+
MEDICAL: :medical
|
2723
|
+
|
2724
|
+
# Meal beverage
|
2725
|
+
MEAL_BEVERAGE: :meal_beverage
|
2726
|
+
|
2727
|
+
# Other
|
2728
|
+
OTHER: :other
|
2729
|
+
|
2730
|
+
# Passenger assist fee
|
2731
|
+
PASSENGER_ASSIST_FEE: :passenger_assist_fee
|
2732
|
+
|
2733
|
+
# Pets
|
2734
|
+
PETS: :pets
|
2735
|
+
|
2736
|
+
# Seat fees
|
2737
|
+
SEAT_FEES: :seat_fees
|
2738
|
+
|
2739
|
+
# Standby
|
2740
|
+
STANDBY: :standby
|
2741
|
+
|
2742
|
+
# Service fee
|
2743
|
+
SERVICE_FEE: :service_fee
|
2744
|
+
|
2745
|
+
# Store
|
2746
|
+
STORE: :store
|
2747
|
+
|
2748
|
+
# Travel service
|
2749
|
+
TRAVEL_SERVICE: :travel_service
|
2750
|
+
|
2751
|
+
# Unaccompanied travel
|
2752
|
+
UNACCOMPANIED_TRAVEL: :unaccompanied_travel
|
2753
|
+
|
2754
|
+
# Upgrades
|
2755
|
+
UPGRADES: :upgrades
|
2756
|
+
|
2757
|
+
# Wi-fi
|
2758
|
+
WIFI: :wifi
|
2759
|
+
|
2760
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::Ancillary::Service::category]
|
2761
|
+
end
|
2762
|
+
end
|
2763
|
+
end
|
2764
|
+
|
2765
|
+
type credit_reason_indicator =
|
2766
|
+
:no_credit
|
2767
|
+
| :passenger_transport_ancillary_purchase_cancellation
|
2768
|
+
| :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
2769
|
+
| :airline_ticket_cancellation
|
2770
|
+
| :other
|
2771
|
+
| :partial_refund_of_airline_ticket
|
2772
|
+
|
2773
|
+
module CreditReasonIndicator
|
2774
|
+
extend Increase::Internal::Type::Enum
|
2775
|
+
|
2776
|
+
# No credit
|
2777
|
+
NO_CREDIT: :no_credit
|
2778
|
+
|
2779
|
+
# Passenger transport ancillary purchase cancellation
|
2780
|
+
PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :passenger_transport_ancillary_purchase_cancellation
|
2781
|
+
|
2782
|
+
# Airline ticket and passenger transport ancillary purchase cancellation
|
2783
|
+
AIRLINE_TICKET_AND_PASSENGER_TRANSPORT_ANCILLARY_PURCHASE_CANCELLATION: :airline_ticket_and_passenger_transport_ancillary_purchase_cancellation
|
2784
|
+
|
2785
|
+
# Airline ticket cancellation
|
2786
|
+
AIRLINE_TICKET_CANCELLATION: :airline_ticket_cancellation
|
2787
|
+
|
2788
|
+
# Other
|
2789
|
+
OTHER: :other
|
2790
|
+
|
2791
|
+
# Partial refund of airline ticket
|
2792
|
+
PARTIAL_REFUND_OF_AIRLINE_TICKET: :partial_refund_of_airline_ticket
|
2793
|
+
|
2794
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::credit_reason_indicator]
|
2795
|
+
end
|
2796
|
+
|
2797
|
+
type restricted_ticket_indicator =
|
2798
|
+
:no_restrictions | :restricted_non_refundable_ticket
|
2799
|
+
|
2800
|
+
module RestrictedTicketIndicator
|
2801
|
+
extend Increase::Internal::Type::Enum
|
2802
|
+
|
2803
|
+
# No restrictions
|
2804
|
+
NO_RESTRICTIONS: :no_restrictions
|
2805
|
+
|
2806
|
+
# Restricted non-refundable ticket
|
2807
|
+
RESTRICTED_NON_REFUNDABLE_TICKET: :restricted_non_refundable_ticket
|
2808
|
+
|
2809
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::restricted_ticket_indicator]
|
2810
|
+
end
|
2811
|
+
|
2812
|
+
type ticket_change_indicator =
|
2813
|
+
:none | :change_to_existing_ticket | :new_ticket
|
2814
|
+
|
2815
|
+
module TicketChangeIndicator
|
2816
|
+
extend Increase::Internal::Type::Enum
|
2817
|
+
|
2818
|
+
# None
|
2819
|
+
NONE: :none
|
2820
|
+
|
2821
|
+
# Change to existing ticket
|
2822
|
+
CHANGE_TO_EXISTING_TICKET: :change_to_existing_ticket
|
2823
|
+
|
2824
|
+
# New ticket
|
2825
|
+
NEW_TICKET: :new_ticket
|
2826
|
+
|
2827
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::ticket_change_indicator]
|
2828
|
+
end
|
2829
|
+
|
2830
|
+
type trip_leg =
|
2831
|
+
{
|
2832
|
+
carrier_code: String?,
|
2833
|
+
destination_city_airport_code: String?,
|
2834
|
+
fare_basis_code: String?,
|
2835
|
+
flight_number: String?,
|
2836
|
+
service_class: String?,
|
2837
|
+
stop_over_code: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
2838
|
+
}
|
2839
|
+
|
2840
|
+
class TripLeg < Increase::Internal::Type::BaseModel
|
2841
|
+
attr_accessor carrier_code: String?
|
2842
|
+
|
2843
|
+
attr_accessor destination_city_airport_code: String?
|
2844
|
+
|
2845
|
+
attr_accessor fare_basis_code: String?
|
2846
|
+
|
2847
|
+
attr_accessor flight_number: String?
|
2848
|
+
|
2849
|
+
attr_accessor service_class: String?
|
2850
|
+
|
2851
|
+
attr_accessor stop_over_code: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
2852
|
+
|
2853
|
+
def initialize: (
|
2854
|
+
carrier_code: String?,
|
2855
|
+
destination_city_airport_code: String?,
|
2856
|
+
fare_basis_code: String?,
|
2857
|
+
flight_number: String?,
|
2858
|
+
service_class: String?,
|
2859
|
+
stop_over_code: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
2860
|
+
) -> void
|
2861
|
+
|
2862
|
+
def to_hash: -> {
|
2863
|
+
carrier_code: String?,
|
2864
|
+
destination_city_airport_code: String?,
|
2865
|
+
fare_basis_code: String?,
|
2866
|
+
flight_number: String?,
|
2867
|
+
service_class: String?,
|
2868
|
+
stop_over_code: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg::stop_over_code?
|
2869
|
+
}
|
2870
|
+
|
2871
|
+
type stop_over_code =
|
2872
|
+
:none | :stop_over_allowed | :stop_over_not_allowed
|
2873
|
+
|
2874
|
+
module StopOverCode
|
2875
|
+
extend Increase::Internal::Type::Enum
|
2876
|
+
|
2877
|
+
# None
|
2878
|
+
NONE: :none
|
2879
|
+
|
2880
|
+
# Stop over allowed
|
2881
|
+
STOP_OVER_ALLOWED: :stop_over_allowed
|
2882
|
+
|
2883
|
+
# Stop over not allowed
|
2884
|
+
STOP_OVER_NOT_ALLOWED: :stop_over_not_allowed
|
2885
|
+
|
2886
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Travel::TripLeg::stop_over_code]
|
2887
|
+
end
|
2888
|
+
end
|
2889
|
+
end
|
2890
|
+
end
|
2891
|
+
|
2892
|
+
type type_ = :card_settlement
|
2893
|
+
|
2894
|
+
module Type
|
2895
|
+
extend Increase::Internal::Type::Enum
|
2896
|
+
|
2897
|
+
CARD_SETTLEMENT: :card_settlement
|
2898
|
+
|
2899
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::type_]
|
2900
|
+
end
|
2901
|
+
end
|
2902
|
+
|
2903
|
+
type cashback_payment =
|
2904
|
+
{
|
2905
|
+
accrued_on_card_id: String?,
|
2906
|
+
amount: Integer,
|
2907
|
+
currency: Increase::Models::Transaction::Source::CashbackPayment::currency,
|
2908
|
+
period_end: Time,
|
2909
|
+
period_start: Time
|
2910
|
+
}
|
2911
|
+
|
2912
|
+
class CashbackPayment < Increase::Internal::Type::BaseModel
|
2913
|
+
attr_accessor accrued_on_card_id: String?
|
2914
|
+
|
2915
|
+
attr_accessor amount: Integer
|
2916
|
+
|
2917
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CashbackPayment::currency
|
2918
|
+
|
2919
|
+
attr_accessor period_end: Time
|
2920
|
+
|
2921
|
+
attr_accessor period_start: Time
|
2922
|
+
|
2923
|
+
def initialize: (
|
2924
|
+
accrued_on_card_id: String?,
|
2925
|
+
amount: Integer,
|
2926
|
+
currency: Increase::Models::Transaction::Source::CashbackPayment::currency,
|
2927
|
+
period_end: Time,
|
2928
|
+
period_start: Time
|
2929
|
+
) -> void
|
2930
|
+
|
2931
|
+
def to_hash: -> {
|
2932
|
+
accrued_on_card_id: String?,
|
2933
|
+
amount: Integer,
|
2934
|
+
currency: Increase::Models::Transaction::Source::CashbackPayment::currency,
|
2935
|
+
period_end: Time,
|
2936
|
+
period_start: Time
|
2937
|
+
}
|
2938
|
+
|
2939
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
2940
|
+
|
2941
|
+
module Currency
|
2942
|
+
extend Increase::Internal::Type::Enum
|
2943
|
+
|
2944
|
+
# Canadian Dollar (CAD)
|
2945
|
+
CAD: :CAD
|
2946
|
+
|
2947
|
+
# Swiss Franc (CHF)
|
2948
|
+
CHF: :CHF
|
2949
|
+
|
2950
|
+
# Euro (EUR)
|
2951
|
+
EUR: :EUR
|
2952
|
+
|
2953
|
+
# British Pound (GBP)
|
2954
|
+
GBP: :GBP
|
2955
|
+
|
2956
|
+
# Japanese Yen (JPY)
|
2957
|
+
JPY: :JPY
|
2958
|
+
|
2959
|
+
# US Dollar (USD)
|
2960
|
+
USD: :USD
|
2961
|
+
|
2962
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CashbackPayment::currency]
|
2963
|
+
end
|
2964
|
+
end
|
2965
|
+
|
2966
|
+
type category =
|
2967
|
+
:account_transfer_intention
|
2968
|
+
| :ach_transfer_intention
|
2969
|
+
| :ach_transfer_rejection
|
2970
|
+
| :ach_transfer_return
|
2971
|
+
| :cashback_payment
|
2972
|
+
| :card_dispute_acceptance
|
2973
|
+
| :card_dispute_loss
|
2974
|
+
| :card_refund
|
2975
|
+
| :card_settlement
|
2976
|
+
| :card_revenue_payment
|
2977
|
+
| :check_deposit_acceptance
|
2978
|
+
| :check_deposit_return
|
2979
|
+
| :check_transfer_deposit
|
2980
|
+
| :fee_payment
|
2981
|
+
| :inbound_ach_transfer
|
2982
|
+
| :inbound_ach_transfer_return_intention
|
2983
|
+
| :inbound_check_deposit_return_intention
|
2984
|
+
| :inbound_check_adjustment
|
2985
|
+
| :inbound_real_time_payments_transfer_confirmation
|
2986
|
+
| :inbound_real_time_payments_transfer_decline
|
2987
|
+
| :inbound_wire_reversal
|
2988
|
+
| :inbound_wire_transfer
|
2989
|
+
| :inbound_wire_transfer_reversal
|
2990
|
+
| :interest_payment
|
2991
|
+
| :internal_source
|
2992
|
+
| :real_time_payments_transfer_acknowledgement
|
2993
|
+
| :sample_funds
|
2994
|
+
| :wire_transfer_intention
|
2995
|
+
| :swift_transfer_intention
|
2996
|
+
| :outbound_card_push_transfer_acceptance
|
2997
|
+
| :other
|
2998
|
+
|
2999
|
+
module Category
|
3000
|
+
extend Increase::Internal::Type::Enum
|
3001
|
+
|
3002
|
+
# Account Transfer Intention: details will be under the `account_transfer_intention` object.
|
3003
|
+
ACCOUNT_TRANSFER_INTENTION: :account_transfer_intention
|
3004
|
+
|
3005
|
+
# ACH Transfer Intention: details will be under the `ach_transfer_intention` object.
|
3006
|
+
ACH_TRANSFER_INTENTION: :ach_transfer_intention
|
3007
|
+
|
3008
|
+
# ACH Transfer Rejection: details will be under the `ach_transfer_rejection` object.
|
3009
|
+
ACH_TRANSFER_REJECTION: :ach_transfer_rejection
|
3010
|
+
|
3011
|
+
# ACH Transfer Return: details will be under the `ach_transfer_return` object.
|
3012
|
+
ACH_TRANSFER_RETURN: :ach_transfer_return
|
3013
|
+
|
3014
|
+
# Cashback Payment: details will be under the `cashback_payment` object.
|
3015
|
+
CASHBACK_PAYMENT: :cashback_payment
|
3016
|
+
|
3017
|
+
# Card Dispute Acceptance: details will be under the `card_dispute_acceptance` object.
|
3018
|
+
CARD_DISPUTE_ACCEPTANCE: :card_dispute_acceptance
|
3019
|
+
|
3020
|
+
# Card Dispute Loss: details will be under the `card_dispute_loss` object.
|
3021
|
+
CARD_DISPUTE_LOSS: :card_dispute_loss
|
3022
|
+
|
3023
|
+
# Card Refund: details will be under the `card_refund` object.
|
3024
|
+
CARD_REFUND: :card_refund
|
3025
|
+
|
3026
|
+
# Card Settlement: details will be under the `card_settlement` object.
|
3027
|
+
CARD_SETTLEMENT: :card_settlement
|
3028
|
+
|
3029
|
+
# Card Revenue Payment: details will be under the `card_revenue_payment` object.
|
3030
|
+
CARD_REVENUE_PAYMENT: :card_revenue_payment
|
3031
|
+
|
3032
|
+
# Check Deposit Acceptance: details will be under the `check_deposit_acceptance` object.
|
3033
|
+
CHECK_DEPOSIT_ACCEPTANCE: :check_deposit_acceptance
|
3034
|
+
|
3035
|
+
# Check Deposit Return: details will be under the `check_deposit_return` object.
|
3036
|
+
CHECK_DEPOSIT_RETURN: :check_deposit_return
|
3037
|
+
|
3038
|
+
# Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
|
3039
|
+
CHECK_TRANSFER_DEPOSIT: :check_transfer_deposit
|
3040
|
+
|
3041
|
+
# Fee Payment: details will be under the `fee_payment` object.
|
3042
|
+
FEE_PAYMENT: :fee_payment
|
3043
|
+
|
3044
|
+
# Inbound ACH Transfer Intention: details will be under the `inbound_ach_transfer` object.
|
3045
|
+
INBOUND_ACH_TRANSFER: :inbound_ach_transfer
|
3046
|
+
|
3047
|
+
# Inbound ACH Transfer Return Intention: details will be under the `inbound_ach_transfer_return_intention` object.
|
3048
|
+
INBOUND_ACH_TRANSFER_RETURN_INTENTION: :inbound_ach_transfer_return_intention
|
3049
|
+
|
3050
|
+
# Inbound Check Deposit Return Intention: details will be under the `inbound_check_deposit_return_intention` object.
|
3051
|
+
INBOUND_CHECK_DEPOSIT_RETURN_INTENTION: :inbound_check_deposit_return_intention
|
3052
|
+
|
3053
|
+
# Inbound Check Adjustment: details will be under the `inbound_check_adjustment` object.
|
3054
|
+
INBOUND_CHECK_ADJUSTMENT: :inbound_check_adjustment
|
3055
|
+
|
3056
|
+
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
3057
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
|
3058
|
+
|
3059
|
+
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
3060
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
|
3061
|
+
|
3062
|
+
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
3063
|
+
INBOUND_WIRE_REVERSAL: :inbound_wire_reversal
|
3064
|
+
|
3065
|
+
# Inbound Wire Transfer Intention: details will be under the `inbound_wire_transfer` object.
|
3066
|
+
INBOUND_WIRE_TRANSFER: :inbound_wire_transfer
|
3067
|
+
|
3068
|
+
# Inbound Wire Transfer Reversal Intention: details will be under the `inbound_wire_transfer_reversal` object.
|
3069
|
+
INBOUND_WIRE_TRANSFER_REVERSAL: :inbound_wire_transfer_reversal
|
3070
|
+
|
3071
|
+
# Interest Payment: details will be under the `interest_payment` object.
|
3072
|
+
INTEREST_PAYMENT: :interest_payment
|
3073
|
+
|
3074
|
+
# Internal Source: details will be under the `internal_source` object.
|
3075
|
+
INTERNAL_SOURCE: :internal_source
|
3076
|
+
|
3077
|
+
# Real-Time Payments Transfer Acknowledgement: details will be under the `real_time_payments_transfer_acknowledgement` object.
|
3078
|
+
REAL_TIME_PAYMENTS_TRANSFER_ACKNOWLEDGEMENT: :real_time_payments_transfer_acknowledgement
|
3079
|
+
|
3080
|
+
# Sample Funds: details will be under the `sample_funds` object.
|
3081
|
+
SAMPLE_FUNDS: :sample_funds
|
3082
|
+
|
3083
|
+
# Wire Transfer Intention: details will be under the `wire_transfer_intention` object.
|
3084
|
+
WIRE_TRANSFER_INTENTION: :wire_transfer_intention
|
3085
|
+
|
3086
|
+
# Swift Transfer Intention: details will be under the `swift_transfer_intention` object.
|
3087
|
+
SWIFT_TRANSFER_INTENTION: :swift_transfer_intention
|
3088
|
+
|
3089
|
+
# Outbound Card Push Transfer Acceptance: details will be under the `outbound_card_push_transfer_acceptance` object.
|
3090
|
+
OUTBOUND_CARD_PUSH_TRANSFER_ACCEPTANCE: :outbound_card_push_transfer_acceptance
|
3091
|
+
|
3092
|
+
# The Transaction was made for an undocumented or deprecated reason.
|
3093
|
+
OTHER: :other
|
3094
|
+
|
3095
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::category]
|
3096
|
+
end
|
3097
|
+
|
3098
|
+
type check_deposit_acceptance =
|
3099
|
+
{
|
3100
|
+
account_number: String,
|
3101
|
+
amount: Integer,
|
3102
|
+
auxiliary_on_us: String?,
|
3103
|
+
check_deposit_id: String,
|
3104
|
+
currency: Increase::Models::Transaction::Source::CheckDepositAcceptance::currency,
|
3105
|
+
routing_number: String,
|
3106
|
+
serial_number: String?
|
3107
|
+
}
|
3108
|
+
|
3109
|
+
class CheckDepositAcceptance < Increase::Internal::Type::BaseModel
|
3110
|
+
attr_accessor account_number: String
|
3111
|
+
|
3112
|
+
attr_accessor amount: Integer
|
3113
|
+
|
3114
|
+
attr_accessor auxiliary_on_us: String?
|
3115
|
+
|
3116
|
+
attr_accessor check_deposit_id: String
|
3117
|
+
|
3118
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CheckDepositAcceptance::currency
|
3119
|
+
|
3120
|
+
attr_accessor routing_number: String
|
3121
|
+
|
3122
|
+
attr_accessor serial_number: String?
|
3123
|
+
|
3124
|
+
def initialize: (
|
3125
|
+
account_number: String,
|
3126
|
+
amount: Integer,
|
3127
|
+
auxiliary_on_us: String?,
|
3128
|
+
check_deposit_id: String,
|
3129
|
+
currency: Increase::Models::Transaction::Source::CheckDepositAcceptance::currency,
|
3130
|
+
routing_number: String,
|
3131
|
+
serial_number: String?
|
3132
|
+
) -> void
|
3133
|
+
|
3134
|
+
def to_hash: -> {
|
3135
|
+
account_number: String,
|
3136
|
+
amount: Integer,
|
3137
|
+
auxiliary_on_us: String?,
|
3138
|
+
check_deposit_id: String,
|
3139
|
+
currency: Increase::Models::Transaction::Source::CheckDepositAcceptance::currency,
|
3140
|
+
routing_number: String,
|
3141
|
+
serial_number: String?
|
3142
|
+
}
|
3143
|
+
|
3144
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3145
|
+
|
3146
|
+
module Currency
|
3147
|
+
extend Increase::Internal::Type::Enum
|
3148
|
+
|
3149
|
+
# Canadian Dollar (CAD)
|
3150
|
+
CAD: :CAD
|
3151
|
+
|
3152
|
+
# Swiss Franc (CHF)
|
3153
|
+
CHF: :CHF
|
3154
|
+
|
3155
|
+
# Euro (EUR)
|
3156
|
+
EUR: :EUR
|
3157
|
+
|
3158
|
+
# British Pound (GBP)
|
3159
|
+
GBP: :GBP
|
3160
|
+
|
3161
|
+
# Japanese Yen (JPY)
|
3162
|
+
JPY: :JPY
|
3163
|
+
|
3164
|
+
# US Dollar (USD)
|
3165
|
+
USD: :USD
|
3166
|
+
|
3167
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CheckDepositAcceptance::currency]
|
3168
|
+
end
|
3169
|
+
end
|
3170
|
+
|
3171
|
+
type check_deposit_return =
|
3172
|
+
{
|
3173
|
+
amount: Integer,
|
3174
|
+
check_deposit_id: String,
|
3175
|
+
currency: Increase::Models::Transaction::Source::CheckDepositReturn::currency,
|
3176
|
+
return_reason: Increase::Models::Transaction::Source::CheckDepositReturn::return_reason,
|
3177
|
+
returned_at: Time,
|
3178
|
+
transaction_id: String
|
3179
|
+
}
|
3180
|
+
|
3181
|
+
class CheckDepositReturn < Increase::Internal::Type::BaseModel
|
3182
|
+
attr_accessor amount: Integer
|
3183
|
+
|
3184
|
+
attr_accessor check_deposit_id: String
|
3185
|
+
|
3186
|
+
attr_accessor currency: Increase::Models::Transaction::Source::CheckDepositReturn::currency
|
3187
|
+
|
3188
|
+
attr_accessor return_reason: Increase::Models::Transaction::Source::CheckDepositReturn::return_reason
|
3189
|
+
|
3190
|
+
attr_accessor returned_at: Time
|
3191
|
+
|
3192
|
+
attr_accessor transaction_id: String
|
3193
|
+
|
3194
|
+
def initialize: (
|
3195
|
+
amount: Integer,
|
3196
|
+
check_deposit_id: String,
|
3197
|
+
currency: Increase::Models::Transaction::Source::CheckDepositReturn::currency,
|
3198
|
+
return_reason: Increase::Models::Transaction::Source::CheckDepositReturn::return_reason,
|
3199
|
+
returned_at: Time,
|
3200
|
+
transaction_id: String
|
3201
|
+
) -> void
|
3202
|
+
|
3203
|
+
def to_hash: -> {
|
3204
|
+
amount: Integer,
|
3205
|
+
check_deposit_id: String,
|
3206
|
+
currency: Increase::Models::Transaction::Source::CheckDepositReturn::currency,
|
3207
|
+
return_reason: Increase::Models::Transaction::Source::CheckDepositReturn::return_reason,
|
3208
|
+
returned_at: Time,
|
3209
|
+
transaction_id: String
|
3210
|
+
}
|
3211
|
+
|
3212
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3213
|
+
|
3214
|
+
module Currency
|
3215
|
+
extend Increase::Internal::Type::Enum
|
3216
|
+
|
3217
|
+
# Canadian Dollar (CAD)
|
3218
|
+
CAD: :CAD
|
3219
|
+
|
3220
|
+
# Swiss Franc (CHF)
|
3221
|
+
CHF: :CHF
|
3222
|
+
|
3223
|
+
# Euro (EUR)
|
3224
|
+
EUR: :EUR
|
3225
|
+
|
3226
|
+
# British Pound (GBP)
|
3227
|
+
GBP: :GBP
|
3228
|
+
|
3229
|
+
# Japanese Yen (JPY)
|
3230
|
+
JPY: :JPY
|
3231
|
+
|
3232
|
+
# US Dollar (USD)
|
3233
|
+
USD: :USD
|
3234
|
+
|
3235
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CheckDepositReturn::currency]
|
3236
|
+
end
|
3237
|
+
|
3238
|
+
type return_reason =
|
3239
|
+
:ach_conversion_not_supported
|
3240
|
+
| :closed_account
|
3241
|
+
| :duplicate_submission
|
3242
|
+
| :insufficient_funds
|
3243
|
+
| :no_account
|
3244
|
+
| :not_authorized
|
3245
|
+
| :stale_dated
|
3246
|
+
| :stop_payment
|
3247
|
+
| :unknown_reason
|
3248
|
+
| :unmatched_details
|
3249
|
+
| :unreadable_image
|
3250
|
+
| :endorsement_irregular
|
3251
|
+
| :altered_or_fictitious_item
|
3252
|
+
| :frozen_or_blocked_account
|
3253
|
+
| :post_dated
|
3254
|
+
| :endorsement_missing
|
3255
|
+
| :signature_missing
|
3256
|
+
| :stop_payment_suspect
|
3257
|
+
| :unusable_image
|
3258
|
+
| :image_fails_security_check
|
3259
|
+
| :cannot_determine_amount
|
3260
|
+
| :signature_irregular
|
3261
|
+
| :non_cash_item
|
3262
|
+
| :unable_to_process
|
3263
|
+
| :item_exceeds_dollar_limit
|
3264
|
+
| :branch_or_account_sold
|
3265
|
+
|
3266
|
+
module ReturnReason
|
3267
|
+
extend Increase::Internal::Type::Enum
|
3268
|
+
|
3269
|
+
# The check doesn't allow ACH conversion.
|
3270
|
+
ACH_CONVERSION_NOT_SUPPORTED: :ach_conversion_not_supported
|
3271
|
+
|
3272
|
+
# The account is closed. (Check21 return code `D`)
|
3273
|
+
CLOSED_ACCOUNT: :closed_account
|
3274
|
+
|
3275
|
+
# The check has already been deposited. (Check21 return code `Y`)
|
3276
|
+
DUPLICATE_SUBMISSION: :duplicate_submission
|
3277
|
+
|
3278
|
+
# Insufficient funds (Check21 return code `A`)
|
3279
|
+
INSUFFICIENT_FUNDS: :insufficient_funds
|
3280
|
+
|
3281
|
+
# No account was found matching the check details. (Check21 return code `E`)
|
3282
|
+
NO_ACCOUNT: :no_account
|
3283
|
+
|
3284
|
+
# The check was not authorized. (Check21 return code `Q`)
|
3285
|
+
NOT_AUTHORIZED: :not_authorized
|
3286
|
+
|
3287
|
+
# The check is too old. (Check21 return code `G`)
|
3288
|
+
STALE_DATED: :stale_dated
|
3289
|
+
|
3290
|
+
# The payment has been stopped by the account holder. (Check21 return code `C`)
|
3291
|
+
STOP_PAYMENT: :stop_payment
|
3292
|
+
|
3293
|
+
# The reason for the return is unknown.
|
3294
|
+
UNKNOWN_REASON: :unknown_reason
|
3295
|
+
|
3296
|
+
# The image doesn't match the details submitted.
|
3297
|
+
UNMATCHED_DETAILS: :unmatched_details
|
3298
|
+
|
3299
|
+
# The image could not be read. (Check21 return code `U`)
|
3300
|
+
UNREADABLE_IMAGE: :unreadable_image
|
3301
|
+
|
3302
|
+
# The check endorsement was irregular. (Check21 return code `J`)
|
3303
|
+
ENDORSEMENT_IRREGULAR: :endorsement_irregular
|
3304
|
+
|
3305
|
+
# The check present was either altered or fake. (Check21 return code `N`)
|
3306
|
+
ALTERED_OR_FICTITIOUS_ITEM: :altered_or_fictitious_item
|
3307
|
+
|
3308
|
+
# The account this check is drawn on is frozen. (Check21 return code `F`)
|
3309
|
+
FROZEN_OR_BLOCKED_ACCOUNT: :frozen_or_blocked_account
|
3310
|
+
|
3311
|
+
# The check is post dated. (Check21 return code `H`)
|
3312
|
+
POST_DATED: :post_dated
|
3313
|
+
|
3314
|
+
# The endorsement was missing. (Check21 return code `I`)
|
3315
|
+
ENDORSEMENT_MISSING: :endorsement_missing
|
3316
|
+
|
3317
|
+
# The check signature was missing. (Check21 return code `K`)
|
3318
|
+
SIGNATURE_MISSING: :signature_missing
|
3319
|
+
|
3320
|
+
# The bank suspects a stop payment will be placed. (Check21 return code `T`)
|
3321
|
+
STOP_PAYMENT_SUSPECT: :stop_payment_suspect
|
3322
|
+
|
3323
|
+
# The bank cannot read the image. (Check21 return code `U`)
|
3324
|
+
UNUSABLE_IMAGE: :unusable_image
|
3325
|
+
|
3326
|
+
# The check image fails the bank's security check. (Check21 return code `V`)
|
3327
|
+
IMAGE_FAILS_SECURITY_CHECK: :image_fails_security_check
|
3328
|
+
|
3329
|
+
# The bank cannot determine the amount. (Check21 return code `W`)
|
3330
|
+
CANNOT_DETERMINE_AMOUNT: :cannot_determine_amount
|
3331
|
+
|
3332
|
+
# The signature is inconsistent with prior signatures. (Check21 return code `L`)
|
3333
|
+
SIGNATURE_IRREGULAR: :signature_irregular
|
3334
|
+
|
3335
|
+
# The check is a non-cash item and cannot be drawn against the account. (Check21 return code `M`)
|
3336
|
+
NON_CASH_ITEM: :non_cash_item
|
3337
|
+
|
3338
|
+
# The bank is unable to process this check. (Check21 return code `O`)
|
3339
|
+
UNABLE_TO_PROCESS: :unable_to_process
|
3340
|
+
|
3341
|
+
# The check exceeds the bank or customer's limit. (Check21 return code `P`)
|
3342
|
+
ITEM_EXCEEDS_DOLLAR_LIMIT: :item_exceeds_dollar_limit
|
3343
|
+
|
3344
|
+
# The bank sold this account and no longer services this customer. (Check21 return code `R`)
|
3345
|
+
BRANCH_OR_ACCOUNT_SOLD: :branch_or_account_sold
|
3346
|
+
|
3347
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CheckDepositReturn::return_reason]
|
3348
|
+
end
|
3349
|
+
end
|
3350
|
+
|
3351
|
+
type check_transfer_deposit =
|
3352
|
+
{
|
3353
|
+
back_image_file_id: String?,
|
3354
|
+
bank_of_first_deposit_routing_number: String?,
|
3355
|
+
deposited_at: Time,
|
3356
|
+
front_image_file_id: String?,
|
3357
|
+
inbound_check_deposit_id: String?,
|
3358
|
+
transaction_id: String?,
|
3359
|
+
transfer_id: String?,
|
3360
|
+
type: Increase::Models::Transaction::Source::CheckTransferDeposit::type_
|
3361
|
+
}
|
3362
|
+
|
3363
|
+
class CheckTransferDeposit < Increase::Internal::Type::BaseModel
|
3364
|
+
attr_accessor back_image_file_id: String?
|
3365
|
+
|
3366
|
+
attr_accessor bank_of_first_deposit_routing_number: String?
|
3367
|
+
|
3368
|
+
attr_accessor deposited_at: Time
|
3369
|
+
|
3370
|
+
attr_accessor front_image_file_id: String?
|
3371
|
+
|
3372
|
+
attr_accessor inbound_check_deposit_id: String?
|
3373
|
+
|
3374
|
+
attr_accessor transaction_id: String?
|
3375
|
+
|
3376
|
+
attr_accessor transfer_id: String?
|
3377
|
+
|
3378
|
+
attr_accessor type: Increase::Models::Transaction::Source::CheckTransferDeposit::type_
|
3379
|
+
|
3380
|
+
def initialize: (
|
3381
|
+
back_image_file_id: String?,
|
3382
|
+
bank_of_first_deposit_routing_number: String?,
|
3383
|
+
deposited_at: Time,
|
3384
|
+
front_image_file_id: String?,
|
3385
|
+
inbound_check_deposit_id: String?,
|
3386
|
+
transaction_id: String?,
|
3387
|
+
transfer_id: String?,
|
3388
|
+
type: Increase::Models::Transaction::Source::CheckTransferDeposit::type_
|
3389
|
+
) -> void
|
3390
|
+
|
3391
|
+
def to_hash: -> {
|
3392
|
+
back_image_file_id: String?,
|
3393
|
+
bank_of_first_deposit_routing_number: String?,
|
3394
|
+
deposited_at: Time,
|
3395
|
+
front_image_file_id: String?,
|
3396
|
+
inbound_check_deposit_id: String?,
|
3397
|
+
transaction_id: String?,
|
3398
|
+
transfer_id: String?,
|
3399
|
+
type: Increase::Models::Transaction::Source::CheckTransferDeposit::type_
|
3400
|
+
}
|
3401
|
+
|
3402
|
+
type type_ = :check_transfer_deposit
|
3403
|
+
|
3404
|
+
module Type
|
3405
|
+
extend Increase::Internal::Type::Enum
|
3406
|
+
|
3407
|
+
CHECK_TRANSFER_DEPOSIT: :check_transfer_deposit
|
3408
|
+
|
3409
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CheckTransferDeposit::type_]
|
3410
|
+
end
|
3411
|
+
end
|
3412
|
+
|
3413
|
+
type fee_payment =
|
3414
|
+
{
|
3415
|
+
amount: Integer,
|
3416
|
+
currency: Increase::Models::Transaction::Source::FeePayment::currency,
|
3417
|
+
fee_period_start: Date,
|
3418
|
+
program_id: String?
|
3419
|
+
}
|
3420
|
+
|
3421
|
+
class FeePayment < Increase::Internal::Type::BaseModel
|
3422
|
+
attr_accessor amount: Integer
|
3423
|
+
|
3424
|
+
attr_accessor currency: Increase::Models::Transaction::Source::FeePayment::currency
|
3425
|
+
|
3426
|
+
attr_accessor fee_period_start: Date
|
3427
|
+
|
3428
|
+
attr_accessor program_id: String?
|
3429
|
+
|
3430
|
+
def initialize: (
|
3431
|
+
amount: Integer,
|
3432
|
+
currency: Increase::Models::Transaction::Source::FeePayment::currency,
|
3433
|
+
fee_period_start: Date,
|
3434
|
+
program_id: String?
|
3435
|
+
) -> void
|
3436
|
+
|
3437
|
+
def to_hash: -> {
|
3438
|
+
amount: Integer,
|
3439
|
+
currency: Increase::Models::Transaction::Source::FeePayment::currency,
|
3440
|
+
fee_period_start: Date,
|
3441
|
+
program_id: String?
|
3442
|
+
}
|
3443
|
+
|
3444
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3445
|
+
|
3446
|
+
module Currency
|
3447
|
+
extend Increase::Internal::Type::Enum
|
3448
|
+
|
3449
|
+
# Canadian Dollar (CAD)
|
3450
|
+
CAD: :CAD
|
3451
|
+
|
3452
|
+
# Swiss Franc (CHF)
|
3453
|
+
CHF: :CHF
|
3454
|
+
|
3455
|
+
# Euro (EUR)
|
3456
|
+
EUR: :EUR
|
3457
|
+
|
3458
|
+
# British Pound (GBP)
|
3459
|
+
GBP: :GBP
|
3460
|
+
|
3461
|
+
# Japanese Yen (JPY)
|
3462
|
+
JPY: :JPY
|
3463
|
+
|
3464
|
+
# US Dollar (USD)
|
3465
|
+
USD: :USD
|
3466
|
+
|
3467
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::FeePayment::currency]
|
3468
|
+
end
|
3469
|
+
end
|
3470
|
+
|
3471
|
+
type inbound_ach_transfer =
|
3472
|
+
{
|
3473
|
+
addenda: Increase::Transaction::Source::InboundACHTransfer::Addenda?,
|
3474
|
+
amount: Integer,
|
3475
|
+
originator_company_descriptive_date: String?,
|
3476
|
+
originator_company_discretionary_data: String?,
|
3477
|
+
originator_company_entry_description: String,
|
3478
|
+
originator_company_id: String,
|
3479
|
+
originator_company_name: String,
|
3480
|
+
receiver_id_number: String?,
|
3481
|
+
receiver_name: String?,
|
3482
|
+
trace_number: String,
|
3483
|
+
transfer_id: String
|
3484
|
+
}
|
3485
|
+
|
3486
|
+
class InboundACHTransfer < Increase::Internal::Type::BaseModel
|
3487
|
+
attr_accessor addenda: Increase::Transaction::Source::InboundACHTransfer::Addenda?
|
3488
|
+
|
3489
|
+
attr_accessor amount: Integer
|
3490
|
+
|
3491
|
+
attr_accessor originator_company_descriptive_date: String?
|
3492
|
+
|
3493
|
+
attr_accessor originator_company_discretionary_data: String?
|
3494
|
+
|
3495
|
+
attr_accessor originator_company_entry_description: String
|
3496
|
+
|
3497
|
+
attr_accessor originator_company_id: String
|
3498
|
+
|
3499
|
+
attr_accessor originator_company_name: String
|
3500
|
+
|
3501
|
+
attr_accessor receiver_id_number: String?
|
3502
|
+
|
3503
|
+
attr_accessor receiver_name: String?
|
3504
|
+
|
3505
|
+
attr_accessor trace_number: String
|
3506
|
+
|
3507
|
+
attr_accessor transfer_id: String
|
3508
|
+
|
3509
|
+
def initialize: (
|
3510
|
+
addenda: Increase::Transaction::Source::InboundACHTransfer::Addenda?,
|
3511
|
+
amount: Integer,
|
3512
|
+
originator_company_descriptive_date: String?,
|
3513
|
+
originator_company_discretionary_data: String?,
|
3514
|
+
originator_company_entry_description: String,
|
3515
|
+
originator_company_id: String,
|
3516
|
+
originator_company_name: String,
|
3517
|
+
receiver_id_number: String?,
|
3518
|
+
receiver_name: String?,
|
3519
|
+
trace_number: String,
|
3520
|
+
transfer_id: String
|
3521
|
+
) -> void
|
3522
|
+
|
3523
|
+
def to_hash: -> {
|
3524
|
+
addenda: Increase::Transaction::Source::InboundACHTransfer::Addenda?,
|
3525
|
+
amount: Integer,
|
3526
|
+
originator_company_descriptive_date: String?,
|
3527
|
+
originator_company_discretionary_data: String?,
|
3528
|
+
originator_company_entry_description: String,
|
3529
|
+
originator_company_id: String,
|
3530
|
+
originator_company_name: String,
|
3531
|
+
receiver_id_number: String?,
|
3532
|
+
receiver_name: String?,
|
3533
|
+
trace_number: String,
|
3534
|
+
transfer_id: String
|
3535
|
+
}
|
3536
|
+
|
3537
|
+
type addenda =
|
3538
|
+
{
|
3539
|
+
category: Increase::Models::Transaction::Source::InboundACHTransfer::Addenda::category,
|
3540
|
+
freeform: Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform?
|
3541
|
+
}
|
3542
|
+
|
3543
|
+
class Addenda < Increase::Internal::Type::BaseModel
|
3544
|
+
attr_accessor category: Increase::Models::Transaction::Source::InboundACHTransfer::Addenda::category
|
3545
|
+
|
3546
|
+
attr_accessor freeform: Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform?
|
3547
|
+
|
3548
|
+
def initialize: (
|
3549
|
+
category: Increase::Models::Transaction::Source::InboundACHTransfer::Addenda::category,
|
3550
|
+
freeform: Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform?
|
3551
|
+
) -> void
|
3552
|
+
|
3553
|
+
def to_hash: -> {
|
3554
|
+
category: Increase::Models::Transaction::Source::InboundACHTransfer::Addenda::category,
|
3555
|
+
freeform: Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform?
|
3556
|
+
}
|
3557
|
+
|
3558
|
+
type category = :freeform
|
3559
|
+
|
3560
|
+
module Category
|
3561
|
+
extend Increase::Internal::Type::Enum
|
3562
|
+
|
3563
|
+
# Unstructured addendum.
|
3564
|
+
FREEFORM: :freeform
|
3565
|
+
|
3566
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundACHTransfer::Addenda::category]
|
3567
|
+
end
|
3568
|
+
|
3569
|
+
type freeform =
|
3570
|
+
{
|
3571
|
+
entries: ::Array[Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform::Entry]
|
3572
|
+
}
|
3573
|
+
|
3574
|
+
class Freeform < Increase::Internal::Type::BaseModel
|
3575
|
+
attr_accessor entries: ::Array[Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform::Entry]
|
3576
|
+
|
3577
|
+
def initialize: (
|
3578
|
+
entries: ::Array[Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform::Entry]
|
3579
|
+
) -> void
|
3580
|
+
|
3581
|
+
def to_hash: -> {
|
3582
|
+
entries: ::Array[Increase::Transaction::Source::InboundACHTransfer::Addenda::Freeform::Entry]
|
3583
|
+
}
|
3584
|
+
|
3585
|
+
type entry = { payment_related_information: String }
|
3586
|
+
|
3587
|
+
class Entry < Increase::Internal::Type::BaseModel
|
3588
|
+
attr_accessor payment_related_information: String
|
3589
|
+
|
3590
|
+
def initialize: (payment_related_information: String) -> void
|
3591
|
+
|
3592
|
+
def to_hash: -> { payment_related_information: String }
|
3593
|
+
end
|
3594
|
+
end
|
3595
|
+
end
|
3596
|
+
end
|
3597
|
+
|
3598
|
+
type inbound_ach_transfer_return_intention =
|
3599
|
+
{ inbound_ach_transfer_id: String }
|
3600
|
+
|
3601
|
+
class InboundACHTransferReturnIntention < Increase::Internal::Type::BaseModel
|
3602
|
+
attr_accessor inbound_ach_transfer_id: String
|
3603
|
+
|
3604
|
+
def initialize: (inbound_ach_transfer_id: String) -> void
|
3605
|
+
|
3606
|
+
def to_hash: -> { inbound_ach_transfer_id: String }
|
3607
|
+
end
|
3608
|
+
|
3609
|
+
type inbound_check_adjustment =
|
3610
|
+
{
|
3611
|
+
adjusted_transaction_id: String,
|
3612
|
+
amount: Integer,
|
3613
|
+
reason: Increase::Models::Transaction::Source::InboundCheckAdjustment::reason
|
3614
|
+
}
|
3615
|
+
|
3616
|
+
class InboundCheckAdjustment < Increase::Internal::Type::BaseModel
|
3617
|
+
attr_accessor adjusted_transaction_id: String
|
3618
|
+
|
3619
|
+
attr_accessor amount: Integer
|
3620
|
+
|
3621
|
+
attr_accessor reason: Increase::Models::Transaction::Source::InboundCheckAdjustment::reason
|
3622
|
+
|
3623
|
+
def initialize: (
|
3624
|
+
adjusted_transaction_id: String,
|
3625
|
+
amount: Integer,
|
3626
|
+
reason: Increase::Models::Transaction::Source::InboundCheckAdjustment::reason
|
3627
|
+
) -> void
|
3628
|
+
|
3629
|
+
def to_hash: -> {
|
3630
|
+
adjusted_transaction_id: String,
|
3631
|
+
amount: Integer,
|
3632
|
+
reason: Increase::Models::Transaction::Source::InboundCheckAdjustment::reason
|
3633
|
+
}
|
3634
|
+
|
3635
|
+
type reason =
|
3636
|
+
:late_return
|
3637
|
+
| :wrong_payee_credit
|
3638
|
+
| :adjusted_amount
|
3639
|
+
| :non_conforming_item
|
3640
|
+
|
3641
|
+
module Reason
|
3642
|
+
extend Increase::Internal::Type::Enum
|
3643
|
+
|
3644
|
+
# The return was initiated too late and the receiving institution has responded with a Late Return Claim.
|
3645
|
+
LATE_RETURN: :late_return
|
3646
|
+
|
3647
|
+
# The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
|
3648
|
+
WRONG_PAYEE_CREDIT: :wrong_payee_credit
|
3649
|
+
|
3650
|
+
# The check was deposited with a different amount than what was written on the check.
|
3651
|
+
ADJUSTED_AMOUNT: :adjusted_amount
|
3652
|
+
|
3653
|
+
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
3654
|
+
NON_CONFORMING_ITEM: :non_conforming_item
|
3655
|
+
|
3656
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundCheckAdjustment::reason]
|
3657
|
+
end
|
3658
|
+
end
|
3659
|
+
|
3660
|
+
type inbound_check_deposit_return_intention =
|
3661
|
+
{ inbound_check_deposit_id: String, transfer_id: String? }
|
3662
|
+
|
3663
|
+
class InboundCheckDepositReturnIntention < Increase::Internal::Type::BaseModel
|
3664
|
+
attr_accessor inbound_check_deposit_id: String
|
3665
|
+
|
3666
|
+
attr_accessor transfer_id: String?
|
3667
|
+
|
3668
|
+
def initialize: (
|
3669
|
+
inbound_check_deposit_id: String,
|
3670
|
+
transfer_id: String?
|
3671
|
+
) -> void
|
3672
|
+
|
3673
|
+
def to_hash: -> {
|
3674
|
+
inbound_check_deposit_id: String,
|
3675
|
+
transfer_id: String?
|
3676
|
+
}
|
3677
|
+
end
|
3678
|
+
|
3679
|
+
type inbound_real_time_payments_transfer_confirmation =
|
3680
|
+
{
|
3681
|
+
amount: Integer,
|
3682
|
+
creditor_name: String,
|
3683
|
+
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::currency,
|
3684
|
+
debtor_account_number: String,
|
3685
|
+
debtor_name: String,
|
3686
|
+
debtor_routing_number: String,
|
3687
|
+
remittance_information: String?,
|
3688
|
+
transaction_identification: String,
|
3689
|
+
transfer_id: String
|
3690
|
+
}
|
3691
|
+
|
3692
|
+
class InboundRealTimePaymentsTransferConfirmation < Increase::Internal::Type::BaseModel
|
3693
|
+
attr_accessor amount: Integer
|
3694
|
+
|
3695
|
+
attr_accessor creditor_name: String
|
3696
|
+
|
3697
|
+
attr_accessor currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::currency
|
3698
|
+
|
3699
|
+
attr_accessor debtor_account_number: String
|
3700
|
+
|
3701
|
+
attr_accessor debtor_name: String
|
3702
|
+
|
3703
|
+
attr_accessor debtor_routing_number: String
|
3704
|
+
|
3705
|
+
attr_accessor remittance_information: String?
|
3706
|
+
|
3707
|
+
attr_accessor transaction_identification: String
|
3708
|
+
|
3709
|
+
attr_accessor transfer_id: String
|
3710
|
+
|
3711
|
+
def initialize: (
|
3712
|
+
amount: Integer,
|
3713
|
+
creditor_name: String,
|
3714
|
+
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::currency,
|
3715
|
+
debtor_account_number: String,
|
3716
|
+
debtor_name: String,
|
3717
|
+
debtor_routing_number: String,
|
3718
|
+
remittance_information: String?,
|
3719
|
+
transaction_identification: String,
|
3720
|
+
transfer_id: String
|
3721
|
+
) -> void
|
3722
|
+
|
3723
|
+
def to_hash: -> {
|
3724
|
+
amount: Integer,
|
3725
|
+
creditor_name: String,
|
3726
|
+
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::currency,
|
3727
|
+
debtor_account_number: String,
|
3728
|
+
debtor_name: String,
|
3729
|
+
debtor_routing_number: String,
|
3730
|
+
remittance_information: String?,
|
3731
|
+
transaction_identification: String,
|
3732
|
+
transfer_id: String
|
3733
|
+
}
|
3734
|
+
|
3735
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3736
|
+
|
3737
|
+
module Currency
|
3738
|
+
extend Increase::Internal::Type::Enum
|
3739
|
+
|
3740
|
+
# Canadian Dollar (CAD)
|
3741
|
+
CAD: :CAD
|
3742
|
+
|
3743
|
+
# Swiss Franc (CHF)
|
3744
|
+
CHF: :CHF
|
3745
|
+
|
3746
|
+
# Euro (EUR)
|
3747
|
+
EUR: :EUR
|
3748
|
+
|
3749
|
+
# British Pound (GBP)
|
3750
|
+
GBP: :GBP
|
3751
|
+
|
3752
|
+
# Japanese Yen (JPY)
|
3753
|
+
JPY: :JPY
|
3754
|
+
|
3755
|
+
# US Dollar (USD)
|
3756
|
+
USD: :USD
|
3757
|
+
|
3758
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::currency]
|
3759
|
+
end
|
3760
|
+
end
|
3761
|
+
|
3762
|
+
type inbound_real_time_payments_transfer_decline =
|
3763
|
+
{
|
3764
|
+
amount: Integer,
|
3765
|
+
creditor_name: String,
|
3766
|
+
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3767
|
+
debtor_account_number: String,
|
3768
|
+
debtor_name: String,
|
3769
|
+
debtor_routing_number: String,
|
3770
|
+
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3771
|
+
remittance_information: String?,
|
3772
|
+
transaction_identification: String,
|
3773
|
+
transfer_id: String
|
3774
|
+
}
|
3775
|
+
|
3776
|
+
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
3777
|
+
attr_accessor amount: Integer
|
3778
|
+
|
3779
|
+
attr_accessor creditor_name: String
|
3780
|
+
|
3781
|
+
attr_accessor currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency
|
3782
|
+
|
3783
|
+
attr_accessor debtor_account_number: String
|
3784
|
+
|
3785
|
+
attr_accessor debtor_name: String
|
3786
|
+
|
3787
|
+
attr_accessor debtor_routing_number: String
|
3788
|
+
|
3789
|
+
attr_accessor reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason
|
3790
|
+
|
3791
|
+
attr_accessor remittance_information: String?
|
3792
|
+
|
3793
|
+
attr_accessor transaction_identification: String
|
3794
|
+
|
3795
|
+
attr_accessor transfer_id: String
|
3796
|
+
|
3797
|
+
def initialize: (
|
3798
|
+
amount: Integer,
|
3799
|
+
creditor_name: String,
|
3800
|
+
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3801
|
+
debtor_account_number: String,
|
3802
|
+
debtor_name: String,
|
3803
|
+
debtor_routing_number: String,
|
3804
|
+
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3805
|
+
remittance_information: String?,
|
3806
|
+
transaction_identification: String,
|
3807
|
+
transfer_id: String
|
3808
|
+
) -> void
|
3809
|
+
|
3810
|
+
def to_hash: -> {
|
3811
|
+
amount: Integer,
|
3812
|
+
creditor_name: String,
|
3813
|
+
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3814
|
+
debtor_account_number: String,
|
3815
|
+
debtor_name: String,
|
3816
|
+
debtor_routing_number: String,
|
3817
|
+
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3818
|
+
remittance_information: String?,
|
3819
|
+
transaction_identification: String,
|
3820
|
+
transfer_id: String
|
3821
|
+
}
|
3822
|
+
|
3823
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3824
|
+
|
3825
|
+
module Currency
|
3826
|
+
extend Increase::Internal::Type::Enum
|
3827
|
+
|
3828
|
+
# Canadian Dollar (CAD)
|
3829
|
+
CAD: :CAD
|
3830
|
+
|
3831
|
+
# Swiss Franc (CHF)
|
3832
|
+
CHF: :CHF
|
3833
|
+
|
3834
|
+
# Euro (EUR)
|
3835
|
+
EUR: :EUR
|
3836
|
+
|
3837
|
+
# British Pound (GBP)
|
3838
|
+
GBP: :GBP
|
3839
|
+
|
3840
|
+
# Japanese Yen (JPY)
|
3841
|
+
JPY: :JPY
|
3842
|
+
|
3843
|
+
# US Dollar (USD)
|
3844
|
+
USD: :USD
|
3845
|
+
|
3846
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency]
|
3847
|
+
end
|
3848
|
+
|
3849
|
+
type reason =
|
3850
|
+
:account_number_canceled
|
3851
|
+
| :account_number_disabled
|
3852
|
+
| :account_restricted
|
3853
|
+
| :group_locked
|
3854
|
+
| :entity_not_active
|
3855
|
+
| :real_time_payments_not_enabled
|
3856
|
+
|
3857
|
+
module Reason
|
3858
|
+
extend Increase::Internal::Type::Enum
|
3859
|
+
|
3860
|
+
# The account number is canceled.
|
3861
|
+
ACCOUNT_NUMBER_CANCELED: :account_number_canceled
|
3862
|
+
|
3863
|
+
# The account number is disabled.
|
3864
|
+
ACCOUNT_NUMBER_DISABLED: :account_number_disabled
|
3865
|
+
|
3866
|
+
# Your account is restricted.
|
3867
|
+
ACCOUNT_RESTRICTED: :account_restricted
|
3868
|
+
|
3869
|
+
# Your account is inactive.
|
3870
|
+
GROUP_LOCKED: :group_locked
|
3871
|
+
|
3872
|
+
# The account's entity is not active.
|
3873
|
+
ENTITY_NOT_ACTIVE: :entity_not_active
|
3874
|
+
|
3875
|
+
# Your account is not enabled to receive Real-Time Payments transfers.
|
3876
|
+
REAL_TIME_PAYMENTS_NOT_ENABLED: :real_time_payments_not_enabled
|
3877
|
+
|
3878
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason]
|
3879
|
+
end
|
3880
|
+
end
|
3881
|
+
|
3882
|
+
type inbound_wire_reversal =
|
3883
|
+
{
|
3884
|
+
amount: Integer,
|
3885
|
+
created_at: Time,
|
3886
|
+
description: String,
|
3887
|
+
financial_institution_to_financial_institution_information: String?,
|
3888
|
+
input_cycle_date: Date,
|
3889
|
+
input_message_accountability_data: String,
|
3890
|
+
input_sequence_number: String,
|
3891
|
+
input_source: String,
|
3892
|
+
originator_routing_number: String?,
|
3893
|
+
previous_message_input_cycle_date: Date,
|
3894
|
+
previous_message_input_message_accountability_data: String,
|
3895
|
+
previous_message_input_sequence_number: String,
|
3896
|
+
previous_message_input_source: String,
|
3897
|
+
receiver_financial_institution_information: String?,
|
3898
|
+
sender_reference: String?,
|
3899
|
+
transaction_id: String,
|
3900
|
+
wire_transfer_id: String
|
3901
|
+
}
|
3902
|
+
|
3903
|
+
class InboundWireReversal < Increase::Internal::Type::BaseModel
|
3904
|
+
attr_accessor amount: Integer
|
3905
|
+
|
3906
|
+
attr_accessor created_at: Time
|
3907
|
+
|
3908
|
+
attr_accessor description: String
|
3909
|
+
|
3910
|
+
attr_accessor financial_institution_to_financial_institution_information: String?
|
3911
|
+
|
3912
|
+
attr_accessor input_cycle_date: Date
|
3913
|
+
|
3914
|
+
attr_accessor input_message_accountability_data: String
|
3915
|
+
|
3916
|
+
attr_accessor input_sequence_number: String
|
3917
|
+
|
3918
|
+
attr_accessor input_source: String
|
3919
|
+
|
3920
|
+
attr_accessor originator_routing_number: String?
|
3921
|
+
|
3922
|
+
attr_accessor previous_message_input_cycle_date: Date
|
3923
|
+
|
3924
|
+
attr_accessor previous_message_input_message_accountability_data: String
|
3925
|
+
|
3926
|
+
attr_accessor previous_message_input_sequence_number: String
|
3927
|
+
|
3928
|
+
attr_accessor previous_message_input_source: String
|
3929
|
+
|
3930
|
+
attr_accessor receiver_financial_institution_information: String?
|
3931
|
+
|
3932
|
+
attr_accessor sender_reference: String?
|
3933
|
+
|
3934
|
+
attr_accessor transaction_id: String
|
3935
|
+
|
3936
|
+
attr_accessor wire_transfer_id: String
|
3937
|
+
|
3938
|
+
def initialize: (
|
3939
|
+
amount: Integer,
|
3940
|
+
created_at: Time,
|
3941
|
+
description: String,
|
3942
|
+
financial_institution_to_financial_institution_information: String?,
|
3943
|
+
input_cycle_date: Date,
|
3944
|
+
input_message_accountability_data: String,
|
3945
|
+
input_sequence_number: String,
|
3946
|
+
input_source: String,
|
3947
|
+
originator_routing_number: String?,
|
3948
|
+
previous_message_input_cycle_date: Date,
|
3949
|
+
previous_message_input_message_accountability_data: String,
|
3950
|
+
previous_message_input_sequence_number: String,
|
3951
|
+
previous_message_input_source: String,
|
3952
|
+
receiver_financial_institution_information: String?,
|
3953
|
+
sender_reference: String?,
|
3954
|
+
transaction_id: String,
|
3955
|
+
wire_transfer_id: String
|
3956
|
+
) -> void
|
3957
|
+
|
3958
|
+
def to_hash: -> {
|
3959
|
+
amount: Integer,
|
3960
|
+
created_at: Time,
|
3961
|
+
description: String,
|
3962
|
+
financial_institution_to_financial_institution_information: String?,
|
3963
|
+
input_cycle_date: Date,
|
3964
|
+
input_message_accountability_data: String,
|
3965
|
+
input_sequence_number: String,
|
3966
|
+
input_source: String,
|
3967
|
+
originator_routing_number: String?,
|
3968
|
+
previous_message_input_cycle_date: Date,
|
3969
|
+
previous_message_input_message_accountability_data: String,
|
3970
|
+
previous_message_input_sequence_number: String,
|
3971
|
+
previous_message_input_source: String,
|
3972
|
+
receiver_financial_institution_information: String?,
|
3973
|
+
sender_reference: String?,
|
3974
|
+
transaction_id: String,
|
3975
|
+
wire_transfer_id: String
|
3976
|
+
}
|
3977
|
+
end
|
3978
|
+
|
3979
|
+
type inbound_wire_transfer =
|
3980
|
+
{
|
3981
|
+
amount: Integer,
|
3982
|
+
:beneficiary_address_line1 => String?,
|
3983
|
+
:beneficiary_address_line2 => String?,
|
3984
|
+
:beneficiary_address_line3 => String?,
|
3985
|
+
beneficiary_name: String?,
|
3986
|
+
beneficiary_reference: String?,
|
3987
|
+
description: String,
|
3988
|
+
input_message_accountability_data: String?,
|
3989
|
+
:originator_address_line1 => String?,
|
3990
|
+
:originator_address_line2 => String?,
|
3991
|
+
:originator_address_line3 => String?,
|
3992
|
+
originator_name: String?,
|
3993
|
+
originator_routing_number: String?,
|
3994
|
+
originator_to_beneficiary_information: String?,
|
3995
|
+
:originator_to_beneficiary_information_line1 => String?,
|
3996
|
+
:originator_to_beneficiary_information_line2 => String?,
|
3997
|
+
:originator_to_beneficiary_information_line3 => String?,
|
3998
|
+
:originator_to_beneficiary_information_line4 => String?,
|
3999
|
+
transfer_id: String
|
4000
|
+
}
|
4001
|
+
|
4002
|
+
class InboundWireTransfer < Increase::Internal::Type::BaseModel
|
4003
|
+
attr_accessor amount: Integer
|
4004
|
+
|
4005
|
+
attr_accessor beneficiary_address_line1: String?
|
4006
|
+
|
4007
|
+
attr_accessor beneficiary_address_line2: String?
|
4008
|
+
|
4009
|
+
attr_accessor beneficiary_address_line3: String?
|
4010
|
+
|
4011
|
+
attr_accessor beneficiary_name: String?
|
4012
|
+
|
4013
|
+
attr_accessor beneficiary_reference: String?
|
4014
|
+
|
4015
|
+
attr_accessor description: String
|
4016
|
+
|
4017
|
+
attr_accessor input_message_accountability_data: String?
|
4018
|
+
|
4019
|
+
attr_accessor originator_address_line1: String?
|
4020
|
+
|
4021
|
+
attr_accessor originator_address_line2: String?
|
4022
|
+
|
4023
|
+
attr_accessor originator_address_line3: String?
|
4024
|
+
|
4025
|
+
attr_accessor originator_name: String?
|
4026
|
+
|
4027
|
+
attr_accessor originator_routing_number: String?
|
4028
|
+
|
4029
|
+
attr_accessor originator_to_beneficiary_information: String?
|
4030
|
+
|
4031
|
+
attr_accessor originator_to_beneficiary_information_line1: String?
|
4032
|
+
|
4033
|
+
attr_accessor originator_to_beneficiary_information_line2: String?
|
4034
|
+
|
4035
|
+
attr_accessor originator_to_beneficiary_information_line3: String?
|
4036
|
+
|
4037
|
+
attr_accessor originator_to_beneficiary_information_line4: String?
|
4038
|
+
|
4039
|
+
attr_accessor transfer_id: String
|
4040
|
+
|
4041
|
+
def initialize: (
|
4042
|
+
amount: Integer,
|
4043
|
+
beneficiary_address_line1: String?,
|
4044
|
+
beneficiary_address_line2: String?,
|
4045
|
+
beneficiary_address_line3: String?,
|
4046
|
+
beneficiary_name: String?,
|
4047
|
+
beneficiary_reference: String?,
|
4048
|
+
description: String,
|
4049
|
+
input_message_accountability_data: String?,
|
4050
|
+
originator_address_line1: String?,
|
4051
|
+
originator_address_line2: String?,
|
4052
|
+
originator_address_line3: String?,
|
4053
|
+
originator_name: String?,
|
4054
|
+
originator_routing_number: String?,
|
4055
|
+
originator_to_beneficiary_information: String?,
|
4056
|
+
originator_to_beneficiary_information_line1: String?,
|
4057
|
+
originator_to_beneficiary_information_line2: String?,
|
4058
|
+
originator_to_beneficiary_information_line3: String?,
|
4059
|
+
originator_to_beneficiary_information_line4: String?,
|
4060
|
+
transfer_id: String
|
4061
|
+
) -> void
|
4062
|
+
|
4063
|
+
def to_hash: -> {
|
4064
|
+
amount: Integer,
|
4065
|
+
:beneficiary_address_line1 => String?,
|
4066
|
+
:beneficiary_address_line2 => String?,
|
4067
|
+
:beneficiary_address_line3 => String?,
|
4068
|
+
beneficiary_name: String?,
|
4069
|
+
beneficiary_reference: String?,
|
4070
|
+
description: String,
|
4071
|
+
input_message_accountability_data: String?,
|
4072
|
+
:originator_address_line1 => String?,
|
4073
|
+
:originator_address_line2 => String?,
|
4074
|
+
:originator_address_line3 => String?,
|
4075
|
+
originator_name: String?,
|
4076
|
+
originator_routing_number: String?,
|
4077
|
+
originator_to_beneficiary_information: String?,
|
4078
|
+
:originator_to_beneficiary_information_line1 => String?,
|
4079
|
+
:originator_to_beneficiary_information_line2 => String?,
|
4080
|
+
:originator_to_beneficiary_information_line3 => String?,
|
4081
|
+
:originator_to_beneficiary_information_line4 => String?,
|
4082
|
+
transfer_id: String
|
4083
|
+
}
|
4084
|
+
end
|
4085
|
+
|
4086
|
+
type inbound_wire_transfer_reversal =
|
4087
|
+
{ inbound_wire_transfer_id: String }
|
4088
|
+
|
4089
|
+
class InboundWireTransferReversal < Increase::Internal::Type::BaseModel
|
4090
|
+
attr_accessor inbound_wire_transfer_id: String
|
4091
|
+
|
4092
|
+
def initialize: (inbound_wire_transfer_id: String) -> void
|
4093
|
+
|
4094
|
+
def to_hash: -> { inbound_wire_transfer_id: String }
|
4095
|
+
end
|
4096
|
+
|
4097
|
+
type interest_payment =
|
4098
|
+
{
|
4099
|
+
accrued_on_account_id: String,
|
4100
|
+
amount: Integer,
|
4101
|
+
currency: Increase::Models::Transaction::Source::InterestPayment::currency,
|
4102
|
+
period_end: Time,
|
4103
|
+
period_start: Time
|
4104
|
+
}
|
4105
|
+
|
4106
|
+
class InterestPayment < Increase::Internal::Type::BaseModel
|
4107
|
+
attr_accessor accrued_on_account_id: String
|
4108
|
+
|
4109
|
+
attr_accessor amount: Integer
|
4110
|
+
|
4111
|
+
attr_accessor currency: Increase::Models::Transaction::Source::InterestPayment::currency
|
4112
|
+
|
4113
|
+
attr_accessor period_end: Time
|
4114
|
+
|
4115
|
+
attr_accessor period_start: Time
|
4116
|
+
|
4117
|
+
def initialize: (
|
4118
|
+
accrued_on_account_id: String,
|
4119
|
+
amount: Integer,
|
4120
|
+
currency: Increase::Models::Transaction::Source::InterestPayment::currency,
|
4121
|
+
period_end: Time,
|
4122
|
+
period_start: Time
|
4123
|
+
) -> void
|
4124
|
+
|
4125
|
+
def to_hash: -> {
|
4126
|
+
accrued_on_account_id: String,
|
4127
|
+
amount: Integer,
|
4128
|
+
currency: Increase::Models::Transaction::Source::InterestPayment::currency,
|
4129
|
+
period_end: Time,
|
4130
|
+
period_start: Time
|
4131
|
+
}
|
4132
|
+
|
4133
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
4134
|
+
|
4135
|
+
module Currency
|
4136
|
+
extend Increase::Internal::Type::Enum
|
4137
|
+
|
4138
|
+
# Canadian Dollar (CAD)
|
4139
|
+
CAD: :CAD
|
4140
|
+
|
4141
|
+
# Swiss Franc (CHF)
|
4142
|
+
CHF: :CHF
|
4143
|
+
|
4144
|
+
# Euro (EUR)
|
4145
|
+
EUR: :EUR
|
4146
|
+
|
4147
|
+
# British Pound (GBP)
|
4148
|
+
GBP: :GBP
|
4149
|
+
|
4150
|
+
# Japanese Yen (JPY)
|
4151
|
+
JPY: :JPY
|
4152
|
+
|
4153
|
+
# US Dollar (USD)
|
4154
|
+
USD: :USD
|
4155
|
+
|
4156
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InterestPayment::currency]
|
4157
|
+
end
|
4158
|
+
end
|
4159
|
+
|
4160
|
+
type internal_source =
|
4161
|
+
{
|
4162
|
+
amount: Integer,
|
4163
|
+
currency: Increase::Models::Transaction::Source::InternalSource::currency,
|
4164
|
+
reason: Increase::Models::Transaction::Source::InternalSource::reason
|
4165
|
+
}
|
4166
|
+
|
4167
|
+
class InternalSource < Increase::Internal::Type::BaseModel
|
4168
|
+
attr_accessor amount: Integer
|
4169
|
+
|
4170
|
+
attr_accessor currency: Increase::Models::Transaction::Source::InternalSource::currency
|
4171
|
+
|
4172
|
+
attr_accessor reason: Increase::Models::Transaction::Source::InternalSource::reason
|
4173
|
+
|
4174
|
+
def initialize: (
|
4175
|
+
amount: Integer,
|
4176
|
+
currency: Increase::Models::Transaction::Source::InternalSource::currency,
|
4177
|
+
reason: Increase::Models::Transaction::Source::InternalSource::reason
|
4178
|
+
) -> void
|
4179
|
+
|
4180
|
+
def to_hash: -> {
|
4181
|
+
amount: Integer,
|
4182
|
+
currency: Increase::Models::Transaction::Source::InternalSource::currency,
|
4183
|
+
reason: Increase::Models::Transaction::Source::InternalSource::reason
|
4184
|
+
}
|
4185
|
+
|
4186
|
+
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
4187
|
+
|
4188
|
+
module Currency
|
4189
|
+
extend Increase::Internal::Type::Enum
|
4190
|
+
|
4191
|
+
# Canadian Dollar (CAD)
|
4192
|
+
CAD: :CAD
|
4193
|
+
|
4194
|
+
# Swiss Franc (CHF)
|
4195
|
+
CHF: :CHF
|
4196
|
+
|
4197
|
+
# Euro (EUR)
|
4198
|
+
EUR: :EUR
|
4199
|
+
|
4200
|
+
# British Pound (GBP)
|
4201
|
+
GBP: :GBP
|
4202
|
+
|
4203
|
+
# Japanese Yen (JPY)
|
4204
|
+
JPY: :JPY
|
4205
|
+
|
4206
|
+
# US Dollar (USD)
|
4207
|
+
USD: :USD
|
4208
|
+
|
4209
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InternalSource::currency]
|
4210
|
+
end
|
4211
|
+
|
4212
|
+
type reason =
|
4213
|
+
:account_closure
|
4214
|
+
| :bank_drawn_check
|
4215
|
+
| :bank_drawn_check_credit
|
4216
|
+
| :bank_migration
|
4217
|
+
| :check_adjustment
|
4218
|
+
| :collection_payment
|
4219
|
+
| :collection_receivable
|
4220
|
+
| :empyreal_adjustment
|
4221
|
+
| :error
|
4222
|
+
| :error_correction
|
4223
|
+
| :fees
|
4224
|
+
| :interest
|
4225
|
+
| :negative_balance_forgiveness
|
4226
|
+
| :sample_funds
|
4227
|
+
| :sample_funds_return
|
4228
|
+
|
4229
|
+
module Reason
|
4230
|
+
extend Increase::Internal::Type::Enum
|
4231
|
+
|
4232
|
+
# Account closure
|
4233
|
+
ACCOUNT_CLOSURE: :account_closure
|
4234
|
+
|
4235
|
+
# Bank-drawn check
|
4236
|
+
BANK_DRAWN_CHECK: :bank_drawn_check
|
4237
|
+
|
4238
|
+
# Bank-drawn check credit
|
4239
|
+
BANK_DRAWN_CHECK_CREDIT: :bank_drawn_check_credit
|
4240
|
+
|
4241
|
+
# Bank migration
|
4242
|
+
BANK_MIGRATION: :bank_migration
|
4243
|
+
|
4244
|
+
# Check adjustment
|
4245
|
+
CHECK_ADJUSTMENT: :check_adjustment
|
4246
|
+
|
4247
|
+
# Collection payment
|
4248
|
+
COLLECTION_PAYMENT: :collection_payment
|
4249
|
+
|
4250
|
+
# Collection receivable
|
4251
|
+
COLLECTION_RECEIVABLE: :collection_receivable
|
4252
|
+
|
4253
|
+
# Empyreal adjustment
|
4254
|
+
EMPYREAL_ADJUSTMENT: :empyreal_adjustment
|
4255
|
+
|
4256
|
+
# Error
|
4257
|
+
ERROR: :error
|
4258
|
+
|
4259
|
+
# Error correction
|
4260
|
+
ERROR_CORRECTION: :error_correction
|
4261
|
+
|
4262
|
+
# Fees
|
4263
|
+
FEES: :fees
|
4264
|
+
|
4265
|
+
# Interest
|
4266
|
+
INTEREST: :interest
|
4267
|
+
|
4268
|
+
# Negative balance forgiveness
|
4269
|
+
NEGATIVE_BALANCE_FORGIVENESS: :negative_balance_forgiveness
|
4270
|
+
|
4271
|
+
# Sample funds
|
4272
|
+
SAMPLE_FUNDS: :sample_funds
|
4273
|
+
|
4274
|
+
# Sample funds return
|
4275
|
+
SAMPLE_FUNDS_RETURN: :sample_funds_return
|
4276
|
+
|
4277
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InternalSource::reason]
|
4278
|
+
end
|
4279
|
+
end
|
4280
|
+
|
4281
|
+
type outbound_card_push_transfer_acceptance =
|
4282
|
+
{ amount: Integer, transfer_id: String }
|
4283
|
+
|
4284
|
+
class OutboundCardPushTransferAcceptance < Increase::Internal::Type::BaseModel
|
4285
|
+
attr_accessor amount: Integer
|
4286
|
+
|
4287
|
+
attr_accessor transfer_id: String
|
4288
|
+
|
4289
|
+
def initialize: (amount: Integer, transfer_id: String) -> void
|
4290
|
+
|
4291
|
+
def to_hash: -> { amount: Integer, transfer_id: String }
|
4292
|
+
end
|
4293
|
+
|
4294
|
+
type real_time_payments_transfer_acknowledgement =
|
4295
|
+
{
|
4296
|
+
amount: Integer,
|
4297
|
+
destination_account_number: String,
|
4298
|
+
destination_routing_number: String,
|
4299
|
+
remittance_information: String,
|
4300
|
+
transfer_id: String
|
4301
|
+
}
|
4302
|
+
|
4303
|
+
class RealTimePaymentsTransferAcknowledgement < Increase::Internal::Type::BaseModel
|
4304
|
+
attr_accessor amount: Integer
|
4305
|
+
|
4306
|
+
attr_accessor destination_account_number: String
|
4307
|
+
|
4308
|
+
attr_accessor destination_routing_number: String
|
4309
|
+
|
4310
|
+
attr_accessor remittance_information: String
|
4311
|
+
|
4312
|
+
attr_accessor transfer_id: String
|
4313
|
+
|
4314
|
+
def initialize: (
|
4315
|
+
amount: Integer,
|
4316
|
+
destination_account_number: String,
|
4317
|
+
destination_routing_number: String,
|
4318
|
+
remittance_information: String,
|
4319
|
+
transfer_id: String
|
4320
|
+
) -> void
|
4321
|
+
|
4322
|
+
def to_hash: -> {
|
4323
|
+
amount: Integer,
|
4324
|
+
destination_account_number: String,
|
4325
|
+
destination_routing_number: String,
|
4326
|
+
remittance_information: String,
|
4327
|
+
transfer_id: String
|
4328
|
+
}
|
4329
|
+
end
|
4330
|
+
|
4331
|
+
type sample_funds = { originator: String }
|
4332
|
+
|
4333
|
+
class SampleFunds < Increase::Internal::Type::BaseModel
|
4334
|
+
attr_accessor originator: String
|
4335
|
+
|
4336
|
+
def initialize: (originator: String) -> void
|
4337
|
+
|
4338
|
+
def to_hash: -> { originator: String }
|
4339
|
+
end
|
4340
|
+
|
4341
|
+
type swift_transfer_intention = { transfer_id: String }
|
4342
|
+
|
4343
|
+
class SwiftTransferIntention < Increase::Internal::Type::BaseModel
|
4344
|
+
attr_accessor transfer_id: String
|
4345
|
+
|
4346
|
+
def initialize: (transfer_id: String) -> void
|
4347
|
+
|
4348
|
+
def to_hash: -> { transfer_id: String }
|
4349
|
+
end
|
4350
|
+
|
4351
|
+
type wire_transfer_intention =
|
4352
|
+
{
|
4353
|
+
account_number: String,
|
4354
|
+
amount: Integer,
|
4355
|
+
message_to_recipient: String,
|
4356
|
+
routing_number: String,
|
4357
|
+
transfer_id: String
|
4358
|
+
}
|
4359
|
+
|
4360
|
+
class WireTransferIntention < Increase::Internal::Type::BaseModel
|
4361
|
+
attr_accessor account_number: String
|
4362
|
+
|
4363
|
+
attr_accessor amount: Integer
|
4364
|
+
|
4365
|
+
attr_accessor message_to_recipient: String
|
4366
|
+
|
4367
|
+
attr_accessor routing_number: String
|
4368
|
+
|
4369
|
+
attr_accessor transfer_id: String
|
4370
|
+
|
4371
|
+
def initialize: (
|
4372
|
+
account_number: String,
|
4373
|
+
amount: Integer,
|
4374
|
+
message_to_recipient: String,
|
4375
|
+
routing_number: String,
|
4376
|
+
transfer_id: String
|
4377
|
+
) -> void
|
4378
|
+
|
4379
|
+
def to_hash: -> {
|
4380
|
+
account_number: String,
|
4381
|
+
amount: Integer,
|
4382
|
+
message_to_recipient: String,
|
4383
|
+
routing_number: String,
|
4384
|
+
transfer_id: String
|
4385
|
+
}
|
4386
|
+
end
|
4387
|
+
end
|
4388
|
+
|
4389
|
+
type type_ = :transaction
|
4390
|
+
|
4391
|
+
module Type
|
4392
|
+
extend Increase::Internal::Type::Enum
|
4393
|
+
|
4394
|
+
TRANSACTION: :transaction
|
4395
|
+
|
4396
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::type_]
|
4397
|
+
end
|
4398
|
+
end
|
4399
|
+
end
|
4400
|
+
end
|