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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(price: nil) ⇒ RemoveItem
Returns a new instance of RemoveItem.
252 253 254 |
# File 'lib/stripe/params/quote_create_params.rb', line 252 def initialize(price: nil) @price = price end |
Instance Attribute Details
#price ⇒ Object
ID of a price to remove.
250 251 252 |
# File 'lib/stripe/params/quote_create_params.rb', line 250 def price @price end |