Mayson Monorepo Documentation
    Preparing search index...

    Occurs when a Person is updated.

    interface V2CoreAccountPersonUpdatedEvent {
        type: "v2.core.account_person.updated";
        data: Stripe.Events.V2CoreAccountPersonUpdatedEvent.Data;
        related_object: RelatedObject;
        fetchRelatedObject(): Promise<Stripe.V2.Core.AccountPerson>;
        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: "v2.core.account_person.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.

    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