Class: ModernTreasury::Models::ExpectedPaymentListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ModernTreasury::Models::ExpectedPaymentListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/modern_treasury/models/expected_payment_list_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
- #after_cursor ⇒ String?
-
#counterparty_id ⇒ String?
Specify counterparty_id to see expected_payments for a specific account.
-
#created_at_lower_bound ⇒ Time?
Used to return expected payments created after some datetime.
-
#created_at_upper_bound ⇒ Time?
Used to return expected payments created before some datetime.
-
#direction ⇒ Symbol, ...
One of credit, debit.
- #external_id ⇒ String?
-
#internal_account_id ⇒ String?
Specify internal_account_id to see expected_payments for a specific account.
-
#metadata ⇒ Hash{Symbol=>String}?
For example, if you want to query for records with metadata key ‘Type` and value `Loan`, the query would be `metadata%5BType%5D=Loan`.
- #per_page ⇒ Integer?
-
#status ⇒ Symbol, ...
One of unreconciled, reconciled, or archived.
-
#type ⇒ Symbol, ...
One of: ach, au_becs, bacs, book, check, eft, interac, provxchange, rtp,sen, sepa, signet, wire.
-
#updated_at_lower_bound ⇒ Time?
Used to return expected payments updated after some datetime.
-
#updated_at_upper_bound ⇒ Time?
Used to return expected payments updated before some datetime.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(after_cursor: nil, counterparty_id: nil, created_at_lower_bound: nil, created_at_upper_bound: nil, direction: nil, external_id: nil, internal_account_id: nil, metadata: nil, per_page: nil, status: nil, type: nil, updated_at_lower_bound: nil, updated_at_upper_bound: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see ExpectedPaymentListParams 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, counterparty_id: nil, created_at_lower_bound: nil, created_at_upper_bound: nil, direction: nil, external_id: nil, internal_account_id: nil, metadata: nil, per_page: nil, status: nil, type: nil, updated_at_lower_bound: nil, updated_at_upper_bound: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::ExpectedPaymentListParams for more details.
|
|
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 88
|
Instance Attribute Details
#after_cursor ⇒ String?
13 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 13 optional :after_cursor, String, nil?: true |
#counterparty_id ⇒ String?
Specify counterparty_id to see expected_payments for a specific account.
19 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 19 optional :counterparty_id, String |
#created_at_lower_bound ⇒ Time?
Used to return expected payments created after some datetime
25 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 25 optional :created_at_lower_bound, Time |
#created_at_upper_bound ⇒ Time?
Used to return expected payments created before some datetime
31 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 31 optional :created_at_upper_bound, Time |
#direction ⇒ Symbol, ...
One of credit, debit
37 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 37 optional :direction, enum: -> { ModernTreasury::TransactionDirection } |
#external_id ⇒ String?
42 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 42 optional :external_id, String |
#internal_account_id ⇒ String?
Specify internal_account_id to see expected_payments for a specific account.
48 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 48 optional :internal_account_id, String |
#metadata ⇒ Hash{Symbol=>String}?
For example, if you want to query for records with metadata key ‘Type` and value `Loan`, the query would be `metadata%5BType%5D=Loan`. This encodes the query parameters.
56 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 56 optional :metadata, ModernTreasury::Internal::Type::HashOf[String] |
#per_page ⇒ Integer?
61 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 61 optional :per_page, Integer |
#status ⇒ Symbol, ...
One of unreconciled, reconciled, or archived.
67 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 67 optional :status, enum: -> { ModernTreasury::ExpectedPaymentListParams::Status } |
#type ⇒ Symbol, ...
One of: ach, au_becs, bacs, book, check, eft, interac, provxchange, rtp,sen, sepa, signet, wire
74 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 74 optional :type, enum: -> { ModernTreasury::ExpectedPaymentListParams::Type } |
#updated_at_lower_bound ⇒ Time?
Used to return expected payments updated after some datetime
80 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 80 optional :updated_at_lower_bound, Time |
#updated_at_upper_bound ⇒ Time?
Used to return expected payments updated before some datetime
86 |
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 86 optional :updated_at_upper_bound, Time |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/modern_treasury/models/expected_payment_list_params.rb', line 129
|