Class: Stripe::BillingPortal::ConfigurationService::CreateParams::LoginPage
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::BillingPortal::ConfigurationService::CreateParams::LoginPage
- Defined in:
- lib/stripe/services/billing_portal/configuration_service.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Set to ‘true` to generate a shareable URL [`login_page.url`](stripe.com/docs/api/customer_portal/configuration#portal_configuration_object-login_page-url) that will take your customers to a hosted login page for the customer portal.
Instance Method Summary collapse
-
#initialize(enabled: nil) ⇒ LoginPage
constructor
A new instance of LoginPage.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil) ⇒ LoginPage
Returns a new instance of LoginPage.
203 204 205 |
# File 'lib/stripe/services/billing_portal/configuration_service.rb', line 203 def initialize(enabled: nil) @enabled = enabled end |
Instance Attribute Details
#enabled ⇒ Object
Set to ‘true` to generate a shareable URL [`login_page.url`](stripe.com/docs/api/customer_portal/configuration#portal_configuration_object-login_page-url) that will take your customers to a hosted login page for the customer portal.
201 202 203 |
# File 'lib/stripe/services/billing_portal/configuration_service.rb', line 201 def enabled @enabled end |