BillingMeterEventSummary
A billing meter event summary represents an aggregated view of a customer's billing meter events within a specified timeframe. It indicates how much usage was accrued by a customer for that period.
Note: Meters events are aggregated asynchronously so the meter event summaries provide an eventually consistent view of the reported usage.
Summary
Types
@type t() :: %Stripe.Resources.Billing.MeterEventSummary{ aggregated_value: term(), end_time: term(), id: term(), livemode: term(), meter: term(), object: term(), start_time: term() }
aggregated_value- Aggregated value of all the events withinstart_time(inclusive) andend_time(inclusive). The aggregation strategy is defined on meter viadefault_aggregation.end_time- End timestamp for this event summary (exclusive). Must be aligned with minute boundaries. Format: Unix timestamp.id- Unique identifier for the object. Max length: 5000.livemode- If the object exists in live mode, the value istrue. If the object exists in test mode, the value isfalse.meter- The meter associated with this event summary. Max length: 5000.object- String representing the object's type. Objects of the same type share the same value. Possible values:billing.meter_event_summary.start_time- Start timestamp for this event summary (inclusive). Must be aligned with minute boundaries. Format: Unix timestamp.