export interface ApiKeyWithSecret {
    /** The API key ID. */
    id: string;
    /** The name of the API key. */
    name: string;
    /** The API key secret. Only returned once, when the key is created or rotated. */
    api_key: string;
}
