File size: 239 Bytes
d714fad
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { Agent } from './agent.entity';
export declare class ApiKey {
    id: string;
    agent_id: string;
    key_hash: string;
    key_prefix: string;
    is_active: boolean;
    label: string;
    created_at: Date;
    agent: Agent;
}