/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface Summary {
    /** The content of the summary. */
    content?: string;
    /** The timestamp of when the summary was created. */
    createdAt?: string;
    metadata?: Record<string, unknown>;
    relatedMessageUuids?: string[];
    /** The number of tokens in the summary. */
    tokenCount?: number;
    /** The unique identifier of the summary. */
    uuid?: string;
}
