Class: Stripe::TestHelpers::Treasury::OutboundTransferService::UpdateParams::TrackingDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Treasury::OutboundTransferService::UpdateParams::TrackingDetails
- Defined in:
- lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb
Defined Under Namespace
Classes: Ach, UsDomesticWire
Instance Attribute Summary collapse
-
#ach ⇒ Object
ACH network tracking details.
-
#type ⇒ Object
The US bank account network used to send funds.
-
#us_domestic_wire ⇒ Object
US domestic wire network tracking details.
Instance Method Summary collapse
-
#initialize(ach: nil, type: nil, us_domestic_wire: nil) ⇒ TrackingDetails
constructor
A new instance of TrackingDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(ach: nil, type: nil, us_domestic_wire: nil) ⇒ TrackingDetails
Returns a new instance of TrackingDetails.
40 41 42 43 44 |
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 40 def initialize(ach: nil, type: nil, us_domestic_wire: nil) @ach = ach @type = type @us_domestic_wire = us_domestic_wire end |
Instance Attribute Details
#ach ⇒ Object
ACH network tracking details.
34 35 36 |
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 34 def ach @ach end |
#type ⇒ Object
The US bank account network used to send funds.
36 37 38 |
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 36 def type @type end |
#us_domestic_wire ⇒ Object
US domestic wire network tracking details.
38 39 40 |
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 38 def us_domestic_wire @us_domestic_wire end |