Class: Stripe::DelegatedCheckout::RequestedSessionUpdateParams::PaymentMethodData

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

Defined Under Namespace

Classes: BillingDetails, Card

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(billing_details: nil, card: nil, type: nil) ⇒ PaymentMethodData

Returns a new instance of PaymentMethodData.



181
182
183
184
185
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 181

def initialize(billing_details: nil, card: nil, type: nil)
  @billing_details = billing_details
  @card = card
  @type = type
end

Instance Attribute Details

#billing_detailsObject

The billing details for the payment method data.



175
176
177
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 175

def billing_details
  @billing_details
end

#cardObject

The card for the payment method data.



177
178
179
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 177

def card
  @card
end

#typeObject

The type of the payment method data.



179
180
181
# File 'lib/stripe/params/delegated_checkout/requested_session_update_params.rb', line 179

def type
  @type
end