Class: Stripe::QuoteUpdateParams::Line::Action::RemoveItem

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(price: nil) ⇒ RemoveItem

Returns a new instance of RemoveItem.



339
340
341
# File 'lib/stripe/params/quote_update_params.rb', line 339

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

Instance Attribute Details

#priceObject

ID of a price to remove.



337
338
339
# File 'lib/stripe/params/quote_update_params.rb', line 337

def price
  @price
end