> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tappify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TapChatCard

> A card tap.ui.openInChat sends to the owner's chat, one member per shape.

```ts theme={null}
type TapChatCard = 
  | {
  delta?: number;
  label: string;
  type: "value";
  value: string | number;
}
  | {
  label: string;
  points: TapSeriesPoint[];
  type: "series";
}
  | {
  columns: TapTableColumn[];
  rows: Record<string, unknown>[];
  type: "table";
}
  | {
  items: {
     description?: string;
     id: string;
     label: string;
  }[];
  type: "list";
}
  | {
  label: string;
  left: TapComparisonSide;
  right: TapComparisonSide;
  type: "comparison";
};
```

A card `tap.ui.openInChat` sends to the owner's chat, one member per shape.
