Class: Stripe::ProductCreateParams::MarketingFeature
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ProductCreateParams::MarketingFeature
- Defined in:
- lib/stripe/params/product_create_params.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.
149 150 151 |
# File 'lib/stripe/params/product_create_params.rb', line 149 def initialize(name: nil) @name = name end |
Instance Attribute Details
#name ⇒ Object
The marketing feature name. Up to 80 characters long.
147 148 149 |
# File 'lib/stripe/params/product_create_params.rb', line 147 def name @name end |