intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 518 B
text/typescript
/**
* @example
* {
* conversation_id: "123",
* display_as: "plaintext",
* include_translations: true
* }
*/
export interface FindConversationRequest {
/** The id of the conversation to target */
conversation_id: string;
/** Set to plaintext to retrieve conversation messages in plain text. */
display_as?: string;
/** If set to true, conversation parts will be translated to the detected language of the conversation. */
include_translations?: boolean;
}