Class: Stripe::PaymentIntentUpdateParams::PaymentMethodOptions::Crypto::TransactionVerificationOptions

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

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(network: nil, transaction_hash: nil) ⇒ TransactionVerificationOptions

Returns a new instance of TransactionVerificationOptions.



3766
3767
3768
3769
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3766

def initialize(network: nil, transaction_hash: nil)
  @network = network
  @transaction_hash = transaction_hash
end

Instance Attribute Details

#networkObject

The network on which the transaction was submitted.



3762
3763
3764
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3762

def network
  @network
end

#transaction_hashObject

The hash of the onchain transaction to verify.



3764
3765
3766
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3764

def transaction_hash
  @transaction_hash
end