Class: Increase::Models::ExportCreateParams

Inherits:
Internal::Type::BaseModel show all
Extended by:
Internal::Type::RequestParameters::Converter
Includes:
Internal::Type::RequestParameters
Defined in:
lib/increase/models/export_create_params.rb

Overview

Defined Under Namespace

Modules: Category Classes: AccountStatementBai2, AccountStatementOfx, AccountVerificationLetter, BookkeepingAccountBalanceCsv, DailyAccountBalanceCsv, EntityCsv, FundingInstructions, TransactionCsv, VendorCsv, VoidedCheck

Instance Attribute Summary collapse

Attributes included from Internal::Type::RequestParameters

#request_options

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::RequestParameters::Converter

dump_request

Methods included from Internal::Type::RequestParameters

included

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initializeObject

Options for the created export. Required if ‘category` is equal to `vendor_csv`.



# File 'lib/increase/models/export_create_params.rb', line 85

Instance Attribute Details

#account_statement_bai2Increase::Models::ExportCreateParams::AccountStatementBai2?

Options for the created export. Required if ‘category` is equal to `account_statement_bai2`.



21
# File 'lib/increase/models/export_create_params.rb', line 21

optional :account_statement_bai2, -> { Increase::ExportCreateParams::AccountStatementBai2 }

#account_statement_ofxIncrease::Models::ExportCreateParams::AccountStatementOfx?

Options for the created export. Required if ‘category` is equal to `account_statement_ofx`.



28
# File 'lib/increase/models/export_create_params.rb', line 28

optional :account_statement_ofx, -> { Increase::ExportCreateParams::AccountStatementOfx }

#account_verification_letterIncrease::Models::ExportCreateParams::AccountVerificationLetter?

Options for the created export. Required if ‘category` is equal to `account_verification_letter`.



35
# File 'lib/increase/models/export_create_params.rb', line 35

optional :account_verification_letter, -> { Increase::ExportCreateParams::AccountVerificationLetter }

#bookkeeping_account_balance_csvIncrease::Models::ExportCreateParams::BookkeepingAccountBalanceCsv?

Options for the created export. Required if ‘category` is equal to `bookkeeping_account_balance_csv`.



42
43
# File 'lib/increase/models/export_create_params.rb', line 42

optional :bookkeeping_account_balance_csv,
-> { Increase::ExportCreateParams::BookkeepingAccountBalanceCsv }

#categorySymbol, Increase::Models::ExportCreateParams::Category

The type of Export to create.



14
# File 'lib/increase/models/export_create_params.rb', line 14

required :category, enum: -> { Increase::ExportCreateParams::Category }

#daily_account_balance_csvIncrease::Models::ExportCreateParams::DailyAccountBalanceCsv?

Options for the created export. Required if ‘category` is equal to `daily_account_balance_csv`.



50
# File 'lib/increase/models/export_create_params.rb', line 50

optional :daily_account_balance_csv, -> { Increase::ExportCreateParams::DailyAccountBalanceCsv }

#entity_csvIncrease::Models::ExportCreateParams::EntityCsv?

Options for the created export. Required if ‘category` is equal to `entity_csv`.



56
# File 'lib/increase/models/export_create_params.rb', line 56

optional :entity_csv, -> { Increase::ExportCreateParams::EntityCsv }

#funding_instructionsIncrease::Models::ExportCreateParams::FundingInstructions?

Options for the created export. Required if ‘category` is equal to `funding_instructions`.



63
# File 'lib/increase/models/export_create_params.rb', line 63

optional :funding_instructions, -> { Increase::ExportCreateParams::FundingInstructions }

#transaction_csvIncrease::Models::ExportCreateParams::TransactionCsv?

Options for the created export. Required if ‘category` is equal to `transaction_csv`.



70
# File 'lib/increase/models/export_create_params.rb', line 70

optional :transaction_csv, -> { Increase::ExportCreateParams::TransactionCsv }

#vendor_csvIncrease::Models::ExportCreateParams::VendorCsv?

Options for the created export. Required if ‘category` is equal to `vendor_csv`.



76
# File 'lib/increase/models/export_create_params.rb', line 76

optional :vendor_csv, -> { Increase::ExportCreateParams::VendorCsv }

#voided_checkIncrease::Models::ExportCreateParams::VoidedCheck?

Options for the created export. Required if ‘category` is equal to `voided_check`.



83
# File 'lib/increase/models/export_create_params.rb', line 83

optional :voided_check, -> { Increase::ExportCreateParams::VoidedCheck }

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/increase/models/export_create_params.rb', line 152