intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 427 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* Payload of the request to close a conversation
*/
export interface CloseConversationRequest {
type: "admin";
/** The id of the admin who is performing the action. */
admin_id: string;
/** Optionally you can leave a message in the conversation to provide additional context to the user and other teammates. */
body?: string;
}