Module: Increase::Models::PendingTransactionListParams::Category::In

Extended by:
Internal::Type::Enum
Defined in:
lib/increase/models/pending_transaction_list_params.rb

Constant Summary collapse

ACCOUNT_TRANSFER_INSTRUCTION =

Account Transfer Instruction: details will be under the ‘account_transfer_instruction` object.

:account_transfer_instruction
ACH_TRANSFER_INSTRUCTION =

ACH Transfer Instruction: details will be under the ‘ach_transfer_instruction` object.

:ach_transfer_instruction
CARD_AUTHORIZATION =

Card Authorization: details will be under the ‘card_authorization` object.

:card_authorization
CHECK_DEPOSIT_INSTRUCTION =

Check Deposit Instruction: details will be under the ‘check_deposit_instruction` object.

:check_deposit_instruction
CHECK_TRANSFER_INSTRUCTION =

Check Transfer Instruction: details will be under the ‘check_transfer_instruction` object.

:check_transfer_instruction
FEDNOW_TRANSFER_INSTRUCTION =

FedNow Transfer Instruction: details will be under the ‘fednow_transfer_instruction` object.

:fednow_transfer_instruction
INBOUND_FUNDS_HOLD =

Inbound Funds Hold: details will be under the ‘inbound_funds_hold` object.

:inbound_funds_hold
USER_INITIATED_HOLD =

User Initiated Hold: details will be under the ‘user_initiated_hold` object.

:user_initiated_hold
REAL_TIME_PAYMENTS_TRANSFER_INSTRUCTION =

Real-Time Payments Transfer Instruction: details will be under the ‘real_time_payments_transfer_instruction` object.

:real_time_payments_transfer_instruction
WIRE_TRANSFER_INSTRUCTION =

Wire Transfer Instruction: details will be under the ‘wire_transfer_instruction` object.

:wire_transfer_instruction
INBOUND_WIRE_TRANSFER_REVERSAL =

Inbound Wire Transfer Reversal: details will be under the ‘inbound_wire_transfer_reversal` object.

:inbound_wire_transfer_reversal
SWIFT_TRANSFER_INSTRUCTION =

Swift Transfer Instruction: details will be under the ‘swift_transfer_instruction` object.

:swift_transfer_instruction
CARD_PUSH_TRANSFER_INSTRUCTION =

Card Push Transfer Instruction: details will be under the ‘card_push_transfer_instruction` object.

:card_push_transfer_instruction
OTHER =

The Pending Transaction was made for an undocumented or deprecated reason.

:other

Instance Method Summary collapse

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

Instance Method Details

#initialize(in_: nil) ⇒ Object

Some parameter documentations has been truncated, see Increase::Models::PendingTransactionListParams::Category for more details.

Parameters:



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/increase/models/pending_transaction_list_params.rb', line 88

module In
  extend Increase::Internal::Type::Enum

  # Account Transfer Instruction: details will be under the `account_transfer_instruction` object.
   = :account_transfer_instruction

  # ACH Transfer Instruction: details will be under the `ach_transfer_instruction` object.
  ACH_TRANSFER_INSTRUCTION = :ach_transfer_instruction

  # Card Authorization: details will be under the `card_authorization` object.
  CARD_AUTHORIZATION = :card_authorization

  # Check Deposit Instruction: details will be under the `check_deposit_instruction` object.
  CHECK_DEPOSIT_INSTRUCTION = :check_deposit_instruction

  # Check Transfer Instruction: details will be under the `check_transfer_instruction` object.
  CHECK_TRANSFER_INSTRUCTION = :check_transfer_instruction

  # FedNow Transfer Instruction: details will be under the `fednow_transfer_instruction` object.
  FEDNOW_TRANSFER_INSTRUCTION = :fednow_transfer_instruction

  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
  INBOUND_FUNDS_HOLD = :inbound_funds_hold

  # User Initiated Hold: details will be under the `user_initiated_hold` object.
  USER_INITIATED_HOLD = :user_initiated_hold

  # Real-Time Payments Transfer Instruction: details will be under the `real_time_payments_transfer_instruction` object.
  REAL_TIME_PAYMENTS_TRANSFER_INSTRUCTION = :real_time_payments_transfer_instruction

  # Wire Transfer Instruction: details will be under the `wire_transfer_instruction` object.
  WIRE_TRANSFER_INSTRUCTION = :wire_transfer_instruction

  # Inbound Wire Transfer Reversal: details will be under the `inbound_wire_transfer_reversal` object.
  INBOUND_WIRE_TRANSFER_REVERSAL = :inbound_wire_transfer_reversal

  # Swift Transfer Instruction: details will be under the `swift_transfer_instruction` object.
  SWIFT_TRANSFER_INSTRUCTION = :swift_transfer_instruction

  # Card Push Transfer Instruction: details will be under the `card_push_transfer_instruction` object.
  CARD_PUSH_TRANSFER_INSTRUCTION = :card_push_transfer_instruction

  # The Pending Transaction was made for an undocumented or deprecated reason.
  OTHER = :other

  # @!method self.values
  #   @return [Array<Symbol>]
end