Module: Increase::Models::WireDrawdownRequestListParams::Status::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/wire_drawdown_request_list_params.rb
Constant Summary collapse
- PENDING_SUBMISSION =
The drawdown request is queued to be submitted to Fedwire.
:pending_submission- FULFILLED =
The drawdown request has been fulfilled by the recipient.
:fulfilled- PENDING_RESPONSE =
The drawdown request has been sent and the recipient should respond in some way.
:pending_response- REFUSED =
The drawdown request has been refused by the recipient.
:refused
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::WireDrawdownRequestListParams::Status for more details.
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/wire_drawdown_request_list_params.rb', line 85
|
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::WireDrawdownRequestListParams::Status for more details.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/increase/models/wire_drawdown_request_list_params.rb', line 70 module In extend Increase::Internal::Type::Enum # The drawdown request is queued to be submitted to Fedwire. PENDING_SUBMISSION = :pending_submission # The drawdown request has been fulfilled by the recipient. FULFILLED = :fulfilled # The drawdown request has been sent and the recipient should respond in some way. PENDING_RESPONSE = :pending_response # The drawdown request has been refused by the recipient. REFUSED = :refused # @!method self.values # @return [Array<Symbol>] end |