Class: Stripe::QuoteCreateParams::Line::Action::RemoveItem
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::QuoteCreateParams::Line::Action::RemoveItem
- Defined in:
- lib/stripe/params/quote_create_params.rb
Instance Attribute Summary collapse
-
#price ⇒ Object
ID of a price to remove.
Instance Method Summary collapse
-
#initialize(price: nil) ⇒ RemoveItem
constructor
A new instance of RemoveItem.
Methods inherited from RequestParams
Constructor Details
#initialize(price: nil) ⇒ RemoveItem
Returns a new instance of RemoveItem.
351 352 353 |
# File 'lib/stripe/params/quote_create_params.rb', line 351 def initialize(price: nil) @price = price end |
Instance Attribute Details
#price ⇒ Object
ID of a price to remove.
349 350 351 |
# File 'lib/stripe/params/quote_create_params.rb', line 349 def price @price end |