Describes the metadata associated with a chat sequence.

SequenceMetadata

interface SequenceMetadata {
    contentType?: string;
    endTime?: Date;
    keywords?: string[];
    lastModified: string;
    length: number;
    participants: string[];
    segmentCount: number;
    size: number;
    sourceFile: string;
    startTime?: Date;
    timestamp?: string;
    merge(other: ChatMetadata): ChatMetadata;
}

Hierarchy (View Summary)

Implemented by

Properties

contentType?: string

The content type of the chat. merge - Merges the metadata with another metadata object.

endTime?: Date

The end time of the chat sequence.

keywords?: string[]

The keywords associated with the chat.

lastModified: string

The last modified time of the chat sequence.

length: number

The length of the chat.

participants: string[]

The participants in the chat.

segmentCount: number

The number of segments in the chat sequence.

size: number

The size of the chat sequence.

sourceFile: string

The source file of the chat sequence.

startTime?: Date

The start time of the chat sequence.

timestamp?: string

The timestamp of the chat.

Methods