Mayson Monorepo Documentation
    Preparing search index...

    Interface TreasuryReceivedCreditSucceededEvent

    Occurs whenever a received_credit transitions to succeeded state. Only applicable for check deposits.

    interface TreasuryReceivedCreditSucceededEvent {
        type: "treasury.received_credit.succeeded";
        data: Stripe.TreasuryReceivedCreditSucceededEvent.Data;
        id: string;
        object: "event";
        account?: string;
        api_version: string;
        context?: string;
        created: number;
        livemode: boolean;
        pending_webhooks: number;
        request: Stripe.Event.Request;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: "treasury.received_credit.succeeded"

    Description of the event (for example, invoice.created or charge.refunded).

    id: string

    Unique identifier for the object.

    object: "event"

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

    account?: string

    The connected account that originates the event.

    api_version: string

    The Stripe API version used to render data when the event was created. The contents of data never change, so this value remains static regardless of the API version currently in use. This property is populated only for events created on or after October 31, 2014.

    context?: string

    Authentication context needed to fetch the event or related object.

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    livemode: boolean

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

    pending_webhooks: number

    Number of webhooks that haven't been successfully delivered (for example, to return a 20x response) to the URLs you specify.

    Information on the API request that triggers the event.