# `Stripe.Resources.V2.Billing.MeterEventAdjustment`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/v2/billing/meter_event_adjustment.ex#L2)

Meter Event Adjustment

A Meter Event Adjustment is used to cancel or modify previously recorded meter events. Meter Event Adjustments allow you to correct billing data by canceling individual events or event ranges, with tracking of adjustment status and creation time.

# `t`

```elixir
@type t() :: %Stripe.Resources.V2.Billing.MeterEventAdjustment{
  cancel: Stripe.Resources.V2.Billing.MeterEventAdjustment.Cancel.t(),
  created: String.t(),
  event_name: String.t(),
  id: String.t(),
  livemode: boolean(),
  object: String.t(),
  status: String.t(),
  type: String.t()
}
```

* `cancel` - Specifies which event to cancel.
* `created` - The time the adjustment was created. Format: date-time.
* `event_name` - The name of the meter event. Corresponds with the `event_name` field on a meter.
* `id` - The unique id of this meter event adjustment.
* `livemode` - Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
* `object` - String representing the object's type. Objects of the same type share the same value of the object field. Possible values: `v2.billing.meter_event_adjustment`.
* `status` - Open Enum. The meter event adjustment’s status. Possible values: `complete`, `pending`.
* `type` - Open Enum. Specifies whether to cancel a single event or a range of events for a time period. Time period cancellation is not supported yet. Possible values: `cancel`.

# `object_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
