Class: ModernTreasury::Models::IncomingPaymentDetailListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ModernTreasury::Models::IncomingPaymentDetailListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/modern_treasury/models/incoming_payment_detail_list_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
- #after_cursor ⇒ String?
-
#as_of_date_end ⇒ Date?
Filters incoming payment details with an as_of_date starting on or before the specified date (YYYY-MM-DD).
-
#as_of_date_start ⇒ Date?
Filters incoming payment details with an as_of_date starting on or after the specified date (YYYY-MM-DD).
-
#direction ⇒ Symbol, ...
One of ‘credit` or `debit`.
-
#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, ...
The current status of the incoming payment order.
-
#type ⇒ Symbol, ...
One of: ‘ach`, `book`, `check`, `eft`, `interac`, `rtp`, `sepa`, `signet`, or `wire`.
-
#virtual_account_id ⇒ String?
If the incoming payment detail is in a virtual account, the ID of the Virtual Account.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(after_cursor: nil, as_of_date_end: nil, as_of_date_start: nil, direction: nil, metadata: nil, per_page: nil, status: nil, type: nil, virtual_account_id: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see IncomingPaymentDetailListParams 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, as_of_date_end: nil, as_of_date_start: nil, direction: nil, metadata: nil, per_page: nil, status: nil, type: nil, virtual_account_id: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::IncomingPaymentDetailListParams for more details.
|
|
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 69
|
Instance Attribute Details
#after_cursor ⇒ String?
13 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 13 optional :after_cursor, String, nil?: true |
#as_of_date_end ⇒ Date?
Filters incoming payment details with an as_of_date starting on or before the specified date (YYYY-MM-DD).
20 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 20 optional :as_of_date_end, Date |
#as_of_date_start ⇒ Date?
Filters incoming payment details with an as_of_date starting on or after the specified date (YYYY-MM-DD).
27 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 27 optional :as_of_date_start, Date |
#direction ⇒ Symbol, ...
One of ‘credit` or `debit`.
33 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 33 optional :direction, enum: -> { ModernTreasury::TransactionDirection } |
#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.
41 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 41 optional :metadata, ModernTreasury::Internal::Type::HashOf[String] |
#per_page ⇒ Integer?
46 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 46 optional :per_page, Integer |
#status ⇒ Symbol, ...
The current status of the incoming payment order. One of ‘pending`, `completed`, or `returned`.
53 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 53 optional :status, enum: -> { ModernTreasury::IncomingPaymentDetailListParams::Status } |
#type ⇒ Symbol, ...
One of: ‘ach`, `book`, `check`, `eft`, `interac`, `rtp`, `sepa`, `signet`, or `wire`.
60 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 60 optional :type, enum: -> { ModernTreasury::IncomingPaymentDetailListParams::Type } |
#virtual_account_id ⇒ String?
If the incoming payment detail is in a virtual account, the ID of the Virtual Account.
67 |
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 67 optional :virtual_account_id, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/modern_treasury/models/incoming_payment_detail_list_params.rb', line 102
|