Mayson Monorepo Documentation
    Preparing search index...

    An issuing token object is created when an issued card is added to a digital wallet. As a card issuer, you can view and manage these tokens through Stripe.

    interface Token {
        id: string;
        object: "issuing.token";
        card: string | Stripe.Issuing.Card;
        created: number;
        device_fingerprint: string;
        last4?: string;
        livemode: boolean;
        network: Stripe.Issuing.Token.Network;
        network_data?: Stripe.Issuing.Token.NetworkData;
        network_updated_at: number;
        status: Stripe.Issuing.Token.Status;
        wallet_provider?: Stripe.Issuing.Token.WalletProvider;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "issuing.token"

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

    card: string | Stripe.Issuing.Card

    Card associated with this token.

    created: number

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

    device_fingerprint: string

    The hashed ID derived from the device ID from the card network associated with the token.

    last4?: string

    The last four digits of the token.

    livemode: boolean

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

    The token service provider / card network associated with the token.

    network_updated_at: number

    Time at which the token was last updated by the card network. Measured in seconds since the Unix epoch.

    The usage state of the token.

    The digital wallet for this token, if one was used.