Class: ModernTreasury::Models::PaymentReferenceListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ModernTreasury::Models::PaymentReferenceListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/modern_treasury/models/payment_reference_list_params.rb
Overview
Defined Under Namespace
Modules: ReferenceableType
Instance Attribute Summary collapse
- #after_cursor ⇒ String?
- #per_page ⇒ Integer?
-
#reference_number ⇒ String?
The actual reference number assigned by the bank.
-
#referenceable_id ⇒ String?
The id of the referenceable to search for.
-
#referenceable_type ⇒ Symbol, ...
One of the referenceable types.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(after_cursor: nil, per_page: nil, reference_number: nil, referenceable_id: nil, referenceable_type: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see PaymentReferenceListParams 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, per_page: nil, reference_number: nil, referenceable_id: nil, referenceable_type: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::PaymentReferenceListParams for more details.
|
|
# File 'lib/modern_treasury/models/payment_reference_list_params.rb', line 40
|
Instance Attribute Details
#after_cursor ⇒ String?
13 |
# File 'lib/modern_treasury/models/payment_reference_list_params.rb', line 13 optional :after_cursor, String, nil?: true |
#per_page ⇒ Integer?
18 |
# File 'lib/modern_treasury/models/payment_reference_list_params.rb', line 18 optional :per_page, Integer |
#reference_number ⇒ String?
The actual reference number assigned by the bank.
24 |
# File 'lib/modern_treasury/models/payment_reference_list_params.rb', line 24 optional :reference_number, String |
#referenceable_id ⇒ String?
The id of the referenceable to search for. Must be accompanied by the referenceable_type or will return an error.
31 |
# File 'lib/modern_treasury/models/payment_reference_list_params.rb', line 31 optional :referenceable_id, String |
#referenceable_type ⇒ Symbol, ...
One of the referenceable types. This must be accompanied by the id of the referenceable or will return an error.
38 |
# File 'lib/modern_treasury/models/payment_reference_list_params.rb', line 38 optional :referenceable_type, enum: -> { ModernTreasury::PaymentReferenceListParams::ReferenceableType } |