Class: Stripe::Radar::PaymentEvaluationCreateParams::PaymentDetails::MoneyMovementDetails

Inherits:
Stripe::RequestParams
  • Object
show all
Defined in:
lib/stripe/params/radar/payment_evaluation_create_params.rb

Defined Under Namespace

Classes: Card

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Stripe::RequestParams

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

Constructor Details

#initialize(card: nil, money_movement_type: nil) ⇒ MoneyMovementDetails

Returns a new instance of MoneyMovementDetails.



84
85
86
87
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 84

def initialize(card: nil, money_movement_type: nil)
  @card = card
  @money_movement_type = money_movement_type
end

Instance Attribute Details

#cardObject

Describes card money movement details for the payment evaluation.



80
81
82
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 80

def card
  @card
end

#money_movement_typeObject

Describes the type of money movement. Currently only ‘card` is supported.



82
83
84
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 82

def money_movement_type
  @money_movement_type
end