Class: Increase::Models::DeclinedTransaction::Source::ACHDecline
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::DeclinedTransaction::Source::ACHDecline
- Defined in:
- lib/increase/models/declined_transaction.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The declined amount in USD cents.
-
#id ⇒ String
The ACH Decline’s identifier.
-
#inbound_ach_transfer_id ⇒ String
The identifier of the Inbound ACH Transfer object associated with this decline.
-
#originator_company_descriptive_date ⇒ String?
The descriptive date of the transfer.
-
#originator_company_discretionary_data ⇒ String?
The additional information included with the transfer.
-
#originator_company_id ⇒ String
The identifier of the company that initiated the transfer.
-
#originator_company_name ⇒ String
The name of the company that initiated the transfer.
-
#reason ⇒ Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Reason
Why the ACH transfer was declined.
-
#receiver_id_number ⇒ String?
The id of the receiver of the transfer.
-
#receiver_name ⇒ String?
The name of the receiver of the transfer.
-
#trace_number ⇒ String
The trace number of the transfer.
-
#type ⇒ Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Type
A constant representing the object’s type.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id: , amount: , inbound_ach_transfer_id: , originator_company_descriptive_date: , originator_company_discretionary_data: , originator_company_id: , originator_company_name: , reason: , receiver_id_number: , receiver_name: , trace_number: , type: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see ACHDecline for more details.
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(id: , amount: , inbound_ach_transfer_id: , originator_company_descriptive_date: , originator_company_discretionary_data: , originator_company_id: , originator_company_name: , reason: , receiver_id_number: , receiver_name: , trace_number: , type: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::DeclinedTransaction::Source::ACHDecline for more details.
An ACH Decline object. This field will be present in the JSON response if and only if ‘category` is equal to `ach_decline`.
|
|
# File 'lib/increase/models/declined_transaction.rb', line 315
|
Instance Attribute Details
#amount ⇒ Integer
The declined amount in USD cents.
252 |
# File 'lib/increase/models/declined_transaction.rb', line 252 required :amount, Integer |
#id ⇒ String
The ACH Decline’s identifier.
246 |
# File 'lib/increase/models/declined_transaction.rb', line 246 required :id, String |
#inbound_ach_transfer_id ⇒ String
The identifier of the Inbound ACH Transfer object associated with this decline.
258 |
# File 'lib/increase/models/declined_transaction.rb', line 258 required :inbound_ach_transfer_id, String |
#originator_company_descriptive_date ⇒ String?
The descriptive date of the transfer.
264 |
# File 'lib/increase/models/declined_transaction.rb', line 264 required :originator_company_descriptive_date, String, nil?: true |
#originator_company_discretionary_data ⇒ String?
The additional information included with the transfer.
270 |
# File 'lib/increase/models/declined_transaction.rb', line 270 required :originator_company_discretionary_data, String, nil?: true |
#originator_company_id ⇒ String
The identifier of the company that initiated the transfer.
276 |
# File 'lib/increase/models/declined_transaction.rb', line 276 required :originator_company_id, String |
#originator_company_name ⇒ String
The name of the company that initiated the transfer.
282 |
# File 'lib/increase/models/declined_transaction.rb', line 282 required :originator_company_name, String |
#reason ⇒ Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Reason
Why the ACH transfer was declined.
288 |
# File 'lib/increase/models/declined_transaction.rb', line 288 required :reason, enum: -> { Increase::DeclinedTransaction::Source::ACHDecline::Reason } |
#receiver_id_number ⇒ String?
The id of the receiver of the transfer.
294 |
# File 'lib/increase/models/declined_transaction.rb', line 294 required :receiver_id_number, String, nil?: true |
#receiver_name ⇒ String?
The name of the receiver of the transfer.
300 |
# File 'lib/increase/models/declined_transaction.rb', line 300 required :receiver_name, String, nil?: true |
#trace_number ⇒ String
The trace number of the transfer.
306 |
# File 'lib/increase/models/declined_transaction.rb', line 306 required :trace_number, String |
#type ⇒ Symbol, Increase::Models::DeclinedTransaction::Source::ACHDecline::Type
A constant representing the object’s type. For this resource it will always be ‘ach_decline`.
313 |
# File 'lib/increase/models/declined_transaction.rb', line 313 required :type, enum: -> { Increase::DeclinedTransaction::Source::ACHDecline::Type } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/declined_transaction.rb', line 405
|