Class: Increase::Models::ExportCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::ExportCreateParams
- 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
-
#account_statement_bai2 ⇒ Increase::Models::ExportCreateParams::AccountStatementBai2?
Options for the created export.
-
#account_statement_ofx ⇒ Increase::Models::ExportCreateParams::AccountStatementOfx?
Options for the created export.
-
#balance_csv ⇒ Increase::Models::ExportCreateParams::BalanceCsv?
Options for the created export.
-
#bookkeeping_account_balance_csv ⇒ Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv?
Options for the created export.
-
#category ⇒ Symbol, Increase::Models::ExportCreateParams::Category
The type of Export to create.
-
#entity_csv ⇒ Increase::Models::ExportCreateParams::EntityCsv?
Options for the created export.
-
#transaction_csv ⇒ Increase::Models::ExportCreateParams::TransactionCsv?
Options for the created export.
-
#vendor_csv ⇒ Increase::Models::ExportCreateParams::VendorCsv?
Options for the created export.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ Object
constructor
Options for the created export.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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
#initialize ⇒ Object
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_bai2 ⇒ Increase::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_ofx ⇒ Increase::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_csv ⇒ Increase::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_csv ⇒ Increase::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 } |
#category ⇒ Symbol, 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_csv ⇒ Increase::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_csv ⇒ Increase::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_csv ⇒ Increase::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
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/export_create_params.rb', line 113
|