@oystehr/sdk
Version:
Oystehr SDK
10 lines (9 loc) • 318 B
TypeScript
/**
* 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;
}