Interface representing options for creating a new chat segment.

SegmentMetadataOptions

interface SegmentMetadataOptions {
    contentType?: string;
    keywords?: string[];
    length: number;
    participants: string[];
    timestamp?: string;
}

Properties

contentType?: string

The content type of the chat segment

keywords?: string[]

The keywords associated with the chat segment

length: number

The length of the chat segment

participants: string[]

The participants in the chat segment

timestamp?: string

The timestamp of the chat segment