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.



143
144
145
# File 'lib/stripe/params/customer_session_create_params.rb', line 143

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

Instance Attribute Details

#enabledObject

Whether the pricing table is enabled.



141
142
143
# File 'lib/stripe/params/customer_session_create_params.rb', line 141

def enabled
  @enabled
end