event_name field on a meter.
* @property bool $livemode Has the value true if the object exists in live mode or the value false if the object exists in test mode.
* @property string $status Open Enum. The meter event adjustment’s status.
* @property string $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.
*/
class MeterEventAdjustment extends \Stripe\ApiResource
{
const OBJECT_NAME = 'v2.billing.meter_event_adjustment';
const STATUS_COMPLETE = 'complete';
const STATUS_PENDING = 'pending';
}