Interface CreateApiKeyParams

interface CreateApiKeyParams {
    name: string;
    scopes?: string[];
    rateLimitRpm?: number;
    test?: boolean;
}

Properties

name: string
scopes?: string[]
rateLimitRpm?: number
test?: boolean