Mayson Monorepo Documentation
    Preparing search index...

    Interface V1BillingMeterErrorReportTriggeredEvent

    Occurs when a Meter has invalid async usage events.

    interface V1BillingMeterErrorReportTriggeredEvent {
        type: "v1.billing.meter.error_report_triggered";
        data: Stripe.Events.V1BillingMeterErrorReportTriggeredEvent.Data;
        related_object: RelatedObject;
        fetchRelatedObject(): Promise<Stripe.Billing.Meter>;
        id: string;
        object: "v2.core.event";
        changes?: Changes;
        context?: string;
        created: string;
        livemode: boolean;
        reason?: Stripe.V2.Core.Event.Reason;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: "v1.billing.meter.error_report_triggered"

    The type of the event.

    related_object: RelatedObject
    id: string

    Unique identifier for the event.

    object: "v2.core.event"

    String representing the object's type. Objects of the same type share the same value of the object field.

    changes?: Changes

    Before and after changes for the primary related object.

    context?: string

    Authentication context needed to fetch the event or related object.

    created: string

    Time at which the object was created.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    Reason for the event.

    Methods