Interface ApiKeyInfo

interface ApiKeyInfo {
    key_id: string;
    name: string;
    prefix: string;
    scopes: string[];
    rate_limit_rpm: number;
    created_at: string;
    last_used_at: null | string;
    test: boolean;
    [k: string]: unknown;
}

Indexable

  • [k: string]: unknown

Properties

key_id: string
name: string
prefix: string
scopes: string[]
rate_limit_rpm: number
created_at: string
last_used_at: null | string
test: boolean