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.
131 132 133 |
# File 'lib/stripe/resources/customer_session.rb', line 131 def initialize(enabled: nil) @enabled = enabled end |
Instance Attribute Details
#enabled ⇒ Object
Whether the pricing table is enabled.
129 130 131 |
# File 'lib/stripe/resources/customer_session.rb', line 129 def enabled @enabled end |