Class: Stripe::CustomerSession::CreateParams::Components::PricingTable
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::CustomerSession::CreateParams::Components::PricingTable
- Defined in:
- lib/stripe/resources/customer_session.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Whether the pricing table is enabled.
Instance Method Summary collapse
-
#initialize(enabled: nil) ⇒ PricingTable
constructor
A new instance of PricingTable.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil) ⇒ PricingTable
Returns a new instance of PricingTable.
175 176 177 |
# File 'lib/stripe/resources/customer_session.rb', line 175 def initialize(enabled: nil) @enabled = enabled end |
Instance Attribute Details
#enabled ⇒ Object
Whether the pricing table is enabled.
173 174 175 |
# File 'lib/stripe/resources/customer_session.rb', line 173 def enabled @enabled end |