@moneytree/mt-link-javascript-sdk
    Preparing search index...

    Interface TokenInfo

    interface TokenInfo {
        app: { name: string } | null;
        aud: string[];
        client_id: string | null;
        exp: number;
        guest:
            | { country: string; currency: string; email: string; lang: string }
            | null;
        iat: number;
        iss: string;
        scope: string;
        sub: string | null;
    }
    Index
    app: { name: string } | null

    application related information

    Type Declaration

    • { name: string }
      • name: string

        Application name

    • null
    aud: string[]

    token audience(s)

    client_id: string | null
    exp: number

    token expiry

    guest: { country: string; currency: string; email: string; lang: string } | null

    User related information

    iat: number

    token creation time

    iss: string

    token issuer

    scope: string
    sub: string | null

    token subject - the Moneytree ID of the user