Class: Stripe::V2::Billing::ContractUpdateParams::PricingLineAction::Update::Pricing::PriceDetails::PricingOverrideAction::Remove
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::ContractUpdateParams::PricingLineAction::Update::Pricing::PriceDetails::PricingOverrideAction::Remove
- Defined in:
- lib/stripe/params/v2/billing/contract_update_params.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
The id of the pricing override to remove.
-
#lookup_key ⇒ Object
Lookup key of the override to remove.
Instance Method Summary collapse
-
#initialize(id: nil, lookup_key: nil) ⇒ Remove
constructor
A new instance of Remove.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(id: nil, lookup_key: nil) ⇒ Remove
Returns a new instance of Remove.
319 320 321 322 |
# File 'lib/stripe/params/v2/billing/contract_update_params.rb', line 319 def initialize(id: nil, lookup_key: nil) @id = id @lookup_key = lookup_key end |
Instance Attribute Details
#id ⇒ Object
The id of the pricing override to remove.
315 316 317 |
# File 'lib/stripe/params/v2/billing/contract_update_params.rb', line 315 def id @id end |
#lookup_key ⇒ Object
Lookup key of the override to remove.
317 318 319 |
# File 'lib/stripe/params/v2/billing/contract_update_params.rb', line 317 def lookup_key @lookup_key end |