Class: Stripe::TestHelpers::Treasury::OutboundPaymentService::UpdateParams::TrackingDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb

Defined Under Namespace

Classes: Ach, UsDomesticWire

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(ach: nil, type: nil, us_domestic_wire: nil) ⇒ TrackingDetails

Returns a new instance of TrackingDetails.



44
45
46
47
48
# File 'lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb', line 44

def initialize(ach: nil, type: nil, us_domestic_wire: nil)
  @ach = ach
  @type = type
  @us_domestic_wire = us_domestic_wire
end

Instance Attribute Details

#achObject

ACH network tracking details.



36
37
38
# File 'lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb', line 36

def ach
  @ach
end

#typeObject

The US bank account network used to send funds.



39
40
41
# File 'lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb', line 39

def type
  @type
end

#us_domestic_wireObject

US domestic wire network tracking details.



42
43
44
# File 'lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb', line 42

def us_domestic_wire
  @us_domestic_wire
end