/**
 * Successfully returned a Conversation Token for the caller.
 */
export interface ConversationGetTokenResponse {
    /**
     * A Twilio Conversations access token scoped to the identity of the caller. This token can be used to join the Conversation via the Twilio Conversations SDK.
     */
    token: string;
}
