Mayson Monorepo Documentation
    Preparing search index...

    This is an object representing a capability for a Stripe account.

    Related guide: Account capabilities

    interface Capability {
        id: string;
        object: "capability";
        account: string | Stripe.Account;
        future_requirements?: Stripe.Capability.FutureRequirements;
        requested: boolean;
        requested_at: number;
        requirements?: Stripe.Capability.Requirements;
        status: Stripe.Capability.Status;
    }
    Index

    Properties

    id: string

    The identifier for the capability.

    object: "capability"

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

    account: string | Stripe.Account

    The account for which the capability enables functionality.

    future_requirements?: Stripe.Capability.FutureRequirements
    requested: boolean

    Whether the capability has been requested.

    requested_at: number

    Time at which the capability was requested. Measured in seconds since the Unix epoch.

    The status of the capability.