Mayson Monorepo Documentation
    Preparing search index...

    Interface V2CoreAccountUpdatedEventNotification

    interface V2CoreAccountUpdatedEventNotification {
        type: "v2.core.account.updated";
        related_object: RelatedObject;
        fetchRelatedObject(): Promise<Stripe.V2.Core.Account>;
        fetchEvent(): Promise<V2CoreAccountUpdatedEvent>;
        id: string;
        object: "v2.core.event";
        changes?: Changes;
        created: string;
        livemode: boolean;
        reason?: Stripe.V2.Core.Event.Reason;
        context?: StripeContext;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: "v2.core.account.updated"

    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.

    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.

    context?: StripeContext

    Methods