Class: Stripe::ProductService::UpdateParams::MarketingFeature
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ProductService::UpdateParams::MarketingFeature
- Defined in:
- lib/stripe/services/product_service.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
The marketing feature name.
Instance Method Summary collapse
-
#initialize(name: nil) ⇒ MarketingFeature
constructor
A new instance of MarketingFeature.
Methods inherited from RequestParams
Constructor Details
#initialize(name: nil) ⇒ MarketingFeature
Returns a new instance of MarketingFeature.
30 31 32 |
# File 'lib/stripe/services/product_service.rb', line 30 def initialize(name: nil) @name = name end |
Instance Attribute Details
#name ⇒ Object
The marketing feature name. Up to 80 characters long.
28 29 30 |
# File 'lib/stripe/services/product_service.rb', line 28 def name @name end |