Class: Increase::Models::InboundRealTimePaymentsTransferCreateResponse
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::InboundRealTimePaymentsTransferCreateResponse
- Defined in:
- lib/increase/models/inbound_real_time_payments_transfer_create_response.rb
Instance Attribute Summary collapse
-
#declined_transaction ⇒ Increase::Models::DeclinedTransaction
If the Real-Time Payments Transfer attempt fails, this will contain the resulting Declined Transaction object.
-
#transaction ⇒ Increase::Models::Transaction
If the Real-Time Payments Transfer attempt succeeds, this will contain the resulting Transaction object.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#declined_transaction ⇒ Increase::Models::DeclinedTransaction
If the Real-Time Payments Transfer attempt fails, this will contain the resulting Declined Transaction object. The Declined Transaction's source
will be of category: inbound_real_time_payments_transfer_decline
.
9 |
# File 'lib/increase/models/inbound_real_time_payments_transfer_create_response.rb', line 9 required :declined_transaction, -> { Increase::Models::DeclinedTransaction } |
#transaction ⇒ Increase::Models::Transaction
If the Real-Time Payments Transfer attempt succeeds, this will contain the resulting Transaction object. The Transaction's source
will be of category: inbound_real_time_payments_transfer_confirmation
.
14 |
# File 'lib/increase/models/inbound_real_time_payments_transfer_create_response.rb', line 14 required :transaction, -> { Increase::Models::Transaction } |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be inbound_real_time_payments_transfer_simulation_result
.
19 |
# File 'lib/increase/models/inbound_real_time_payments_transfer_create_response.rb', line 19 required :type, Increase::Enum.new(:inbound_real_time_payments_transfer_simulation_result) |