Module: Increase::Models::ExportListParams::Category::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/export_list_params.rb
Constant Summary collapse
- ACCOUNT_STATEMENT_OFX =
Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
:account_statement_ofx- ACCOUNT_STATEMENT_BAI2 =
Export a BAI2 file of transactions and balances for a given date and optional Account.
:account_statement_bai2- TRANSACTION_CSV =
Export a CSV of all transactions for a given time range.
:transaction_csv- BALANCE_CSV =
Export a CSV of account balances for the dates in a given range.
:balance_csv- BOOKKEEPING_ACCOUNT_BALANCE_CSV =
Export a CSV of bookkeeping account balances for the dates in a given range.
:bookkeeping_account_balance_csv- ENTITY_CSV =
Export a CSV of entities with a given status.
:entity_csv- VENDOR_CSV =
Export a CSV of vendors added to the third-party risk management dashboard.
:vendor_csv- DASHBOARD_TABLE_CSV =
Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
:dashboard_table_csv- ACCOUNT_VERIFICATION_LETTER =
A PDF of an account verification letter.
:account_verification_letter- FUNDING_INSTRUCTIONS =
A PDF of funding instructions.
:funding_instructions- FORM_1099_INT =
A PDF of an Internal Revenue Service Form 1099-INT.
:form_1099_int- FORM_1099_MISC =
A PDF of an Internal Revenue Service Form 1099-MISC.
:form_1099_misc
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::ExportListParams::Category for more details.
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::ExportListParams::Category for more details.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/increase/models/export_list_params.rb', line 82 module In extend Increase::Internal::Type::Enum # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account. ACCOUNT_STATEMENT_OFX = :account_statement_ofx # Export a BAI2 file of transactions and balances for a given date and optional Account. ACCOUNT_STATEMENT_BAI2 = :account_statement_bai2 # Export a CSV of all transactions for a given time range. TRANSACTION_CSV = :transaction_csv # Export a CSV of account balances for the dates in a given range. BALANCE_CSV = :balance_csv # Export a CSV of bookkeeping account balances for the dates in a given range. BOOKKEEPING_ACCOUNT_BALANCE_CSV = :bookkeeping_account_balance_csv # Export a CSV of entities with a given status. ENTITY_CSV = :entity_csv # Export a CSV of vendors added to the third-party risk management dashboard. VENDOR_CSV = :vendor_csv # Certain dashboard tables are available as CSV exports. This export cannot be created via the API. DASHBOARD_TABLE_CSV = :dashboard_table_csv # A PDF of an account verification letter. ACCOUNT_VERIFICATION_LETTER = :account_verification_letter # A PDF of funding instructions. FUNDING_INSTRUCTIONS = :funding_instructions # A PDF of an Internal Revenue Service Form 1099-INT. FORM_1099_INT = :form_1099_int # A PDF of an Internal Revenue Service Form 1099-MISC. FORM_1099_MISC = :form_1099_misc # @!method self.values # @return [Array<Symbol>] end |