Class: Increase::Models::InboundRealTimePaymentsTransferCreateResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/inbound_real_time_payments_transfer_create_response.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#declined_transactionIncrease::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 }

#transactionIncrease::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 }

#typeSymbol

A constant representing the object's type. For this resource it will always be inbound_real_time_payments_transfer_simulation_result.

Returns:

  • (Symbol)


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)