Interface AccountMe

interface AccountMe {
    tenant_id: string;
    tenant_name: string;
    slug: string;
    email: null | string;
    email_verified: boolean;
    tier: string;
    balance: number;
    lifetime_used: number;
    scopes: string[];
    key_prefix: null | string;
    environment: null | string;
    created_at: null | string;
}

Properties

tenant_id: string
tenant_name: string
slug: string
email: null | string
email_verified: boolean
tier: string
balance: number
lifetime_used: number
scopes: string[]
key_prefix: null | string
environment: null | string
created_at: null | string