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.



56
57
58
59
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 56

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.



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

def expand
  @expand
end

#tracking_detailsObject

Details about network-specific tracking information.



54
55
56
# File 'lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb', line 54

def tracking_details
  @tracking_details
end