Class: Stripe::ProductUpdateParams::MarketingFeature

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/product_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(name: nil) ⇒ MarketingFeature

Returns a new instance of MarketingFeature.



10
11
12
# File 'lib/stripe/params/product_update_params.rb', line 10

def initialize(name: nil)
  @name = name
end

Instance Attribute Details

#nameObject

The marketing feature name. Up to 80 characters long.



8
9
10
# File 'lib/stripe/params/product_update_params.rb', line 8

def name
  @name
end