Class: Stripe::Billing::MeterEventAdjustmentCreateParams::Cancel
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Billing::MeterEventAdjustmentCreateParams::Cancel
- Defined in:
- lib/stripe/params/billing/meter_event_adjustment_create_params.rb
Instance Attribute Summary collapse
-
#identifier ⇒ Object
Unique identifier for the event.
Instance Method Summary collapse
-
#initialize(identifier: nil) ⇒ Cancel
constructor
A new instance of Cancel.
Methods inherited from RequestParams
Constructor Details
#initialize(identifier: nil) ⇒ Cancel
11 12 13 |
# File 'lib/stripe/params/billing/meter_event_adjustment_create_params.rb', line 11 def initialize(identifier: nil) @identifier = identifier end |
Instance Attribute Details
#identifier ⇒ Object
Unique identifier for the event. You can only cancel events within 24 hours of Stripe receiving them.
9 10 11 |
# File 'lib/stripe/params/billing/meter_event_adjustment_create_params.rb', line 9 def identifier @identifier end |