Class: Stripe::BillingPortal::ConfigurationService::UpdateParams::BusinessProfile
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::BillingPortal::ConfigurationService::UpdateParams::BusinessProfile
- Defined in:
- lib/stripe/services/billing_portal/configuration_service.rb
Instance Attribute Summary collapse
-
#headline ⇒ Object
The messaging shown to customers in the portal.
-
#privacy_policy_url ⇒ Object
A link to the business’s publicly available privacy policy.
-
#terms_of_service_url ⇒ Object
A link to the business’s publicly available terms of service.
Instance Method Summary collapse
-
#initialize(headline: nil, privacy_policy_url: nil, terms_of_service_url: nil) ⇒ BusinessProfile
constructor
A new instance of BusinessProfile.
Methods inherited from RequestParams
Constructor Details
#initialize(headline: nil, privacy_policy_url: nil, terms_of_service_url: nil) ⇒ BusinessProfile
Returns a new instance of BusinessProfile.
276 277 278 279 280 |
# File 'lib/stripe/services/billing_portal/configuration_service.rb', line 276 def initialize(headline: nil, privacy_policy_url: nil, terms_of_service_url: nil) @headline = headline @privacy_policy_url = privacy_policy_url @terms_of_service_url = terms_of_service_url end |
Instance Attribute Details
#headline ⇒ Object
The messaging shown to customers in the portal.
270 271 272 |
# File 'lib/stripe/services/billing_portal/configuration_service.rb', line 270 def headline @headline end |
#privacy_policy_url ⇒ Object
A link to the business’s publicly available privacy policy.
272 273 274 |
# File 'lib/stripe/services/billing_portal/configuration_service.rb', line 272 def privacy_policy_url @privacy_policy_url end |
#terms_of_service_url ⇒ Object
A link to the business’s publicly available terms of service.
274 275 276 |
# File 'lib/stripe/services/billing_portal/configuration_service.rb', line 274 def terms_of_service_url @terms_of_service_url end |