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, BalanceCsv, BookkeepingAccountBalanceCsv, EntityCsv, TransactionCsv, VendorCsv

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 64

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 }

#balance_csvIncrease::Models::ExportCreateParams::BalanceCsv?

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



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

optional :balance_csv, -> { Increase::ExportCreateParams::BalanceCsv }

#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 }

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

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



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

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

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

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



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

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

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

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



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

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

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


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