Class: Stripe::ChargeCaptureParams::PaymentDetails::MoneyServices

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/charge_capture_params.rb

Defined Under Namespace

Classes: AccountFunding

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(account_funding: nil, transaction_type: nil) ⇒ MoneyServices

Returns a new instance of MoneyServices.



1800
1801
1802
1803
# File 'lib/stripe/params/charge_capture_params.rb', line 1800

def initialize(account_funding: nil, transaction_type: nil)
  @account_funding = 
  @transaction_type = transaction_type
end

Instance Attribute Details

#account_fundingObject

Account funding transaction details including sender and beneficiary information.



1796
1797
1798
# File 'lib/stripe/params/charge_capture_params.rb', line 1796

def 
  @account_funding
end

#transaction_typeObject

The type of money services transaction.



1798
1799
1800
# File 'lib/stripe/params/charge_capture_params.rb', line 1798

def transaction_type
  @transaction_type
end