Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.renchi.ai/llms.txt

Use this file to discover all available pages before exploring further.

CallSummaryCard component

Props

call
{ id: string
required
call
customerName
string
required
customerName
customerPhone
string
required
customerPhone
time
string
required
time
category
string
required
category
aiSummary
string
required
aiSummary
sentiment
Sentiment
required
sentiment
outcome
string
required
outcome
hasJob
boolean
required
hasJob
jobId
string
jobId
jobStatus
JobStatus
jobStatus

Usage

import { CallSummaryCard } from '@/components/CallSummaryCard';

export default function Example() {
  return (
    <CallSummaryCard call={call} customerName={customerName} customerPhone={customerPhone} time={time} category={category} aiSummary={aiSummary} sentiment={sentiment} outcome={outcome} hasJob={hasJob} />
  );
}