import type * as ElevenLabs from "../index";
export interface ConversationTokenDbModel {
    /** The ID of the agent */
    agentId: string;
    /** The token for the agent */
    conversationToken: string;
    /** The expiration time of the token in unix seconds */
    expirationTimeUnixSecs?: number;
    /** The ID of the conversation */
    conversationId?: string;
    /** The purpose of the token */
    purpose?: ElevenLabs.ConversationTokenPurpose;
    /** The user ID of the entity who requested the token */
    tokenRequesterUserId?: string;
}
