Class: ModernTreasury::Models::LedgerTransactions::VersionListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ModernTreasury::Models::LedgerTransactions::VersionListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/modern_treasury/models/ledger_transactions/version_list_params.rb
Overview
Instance Attribute Summary collapse
- #after_cursor ⇒ String?
-
#created_at ⇒ Hash{Symbol=>Time}?
Use ‘gt` (>), `gte` (>=), `lt` (<), `lte` (<=), or `eq` (=) to filter by the created_at timestamp.
-
#ledger_account_statement_id ⇒ String?
Get all ledger transaction versions that are included in the ledger account statement.
-
#ledger_transaction_id ⇒ String?
Get all the ledger transaction versions corresponding to the ID of a ledger transaction.
- #per_page ⇒ Integer?
-
#version ⇒ Hash{Symbol=>Integer}?
Use ‘gt` (>), `gte` (>=), `lt` (<), `lte` (<=), or `eq` (=) to filter by the version.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(after_cursor: nil, created_at: nil, ledger_account_statement_id: nil, ledger_transaction_id: nil, per_page: nil, version: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see VersionListParams for more details.
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(after_cursor: nil, created_at: nil, ledger_account_statement_id: nil, ledger_transaction_id: nil, per_page: nil, version: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::LedgerTransactions::VersionListParams for more details.
|
|
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 50
|
Instance Attribute Details
#after_cursor ⇒ String?
14 |
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 14 optional :after_cursor, String, nil?: true |
#created_at ⇒ Hash{Symbol=>Time}?
Use ‘gt` (>), `gte` (>=), `lt` (<), `lte` (<=), or `eq` (=) to filter by the created_at timestamp. For example, for all dates after Jan 1 2000 12:00 UTC, use created_at%5Bgt%5D=2000-01-01T12:00:00Z.
22 |
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 22 optional :created_at, ModernTreasury::Internal::Type::HashOf[Time] |
#ledger_account_statement_id ⇒ String?
Get all ledger transaction versions that are included in the ledger account statement.
29 |
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 29 optional :ledger_account_statement_id, String |
#ledger_transaction_id ⇒ String?
Get all the ledger transaction versions corresponding to the ID of a ledger transaction.
36 |
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 36 optional :ledger_transaction_id, String |
#per_page ⇒ Integer?
41 |
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 41 optional :per_page, Integer |
#version ⇒ Hash{Symbol=>Integer}?
Use ‘gt` (>), `gte` (>=), `lt` (<), `lte` (<=), or `eq` (=) to filter by the version. For example, for all versions after 2, use version%5Bgt%5D=2.
48 |
# File 'lib/modern_treasury/models/ledger_transactions/version_list_params.rb', line 48 optional :version, ModernTreasury::Internal::Type::HashOf[Integer] |