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.

  • CallMetadataCard - Call timing, outcome, and transfer info * Shows when the call happened, how long it lasted, and the outcome.

Props

metadata
CallMetadata
required
metadata
outcome
CallOutcome
required
outcome
transfer
TransferInfo
required
transfer

Usage

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

export default function Example() {
  return (
    <CallMetadataCard metadata={metadata} outcome={outcome} transfer={transfer} />
  );
}