Class: Stripe::Product::CreateParams::MarketingFeature
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Product::CreateParams::MarketingFeature
- Defined in:
- lib/stripe/resources/product.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.
347 348 349 |
# File 'lib/stripe/resources/product.rb', line 347 def initialize(name: nil) @name = name end |
Instance Attribute Details
#name ⇒ Object
The marketing feature name. Up to 80 characters long.
345 346 347 |
# File 'lib/stripe/resources/product.rb', line 345 def name @name end |