/** * 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; }