Skip to main content
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} />
  );
}