Class: Stripe::CustomerSessionCreateParams::Components::PricingTable

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(enabled: nil) ⇒ PricingTable

Returns a new instance of PricingTable.



70
71
72
# File 'lib/stripe/params/customer_session_create_params.rb', line 70

def initialize(enabled: nil)
  @enabled = enabled
end

Instance Attribute Details

#enabledObject

Whether the pricing table is enabled.



68
69
70
# File 'lib/stripe/params/customer_session_create_params.rb', line 68

def enabled
  @enabled
end