Class: Stripe::TestHelpers::Treasury::OutboundTransferService::UpdateParams

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

Defined Under Namespace

Classes: TrackingDetails

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, tracking_details: nil) ⇒ UpdateParams

Returns a new instance of UpdateParams.



51
52
53
54
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 51

def initialize(expand: nil, tracking_details: nil)
  @expand = expand
  @tracking_details = tracking_details
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



47
48
49
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 47

def expand
  @expand
end

#tracking_detailsObject

Details about network-specific tracking information.



49
50
51
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 49

def tracking_details
  @tracking_details
end