Construction data common to every TestResult.

interface Data {
    __kind?: string;
    description: string;
    name: string;
    speaker: sohl.core.logic.SohlSpeaker;
    title: string;
}

Hierarchy (View Summary)

Properties

__kind?: string

Discriminator kind, written on serialization (SohlEntity.toJSON) and read back on revival. Optional as constructor input — it is derived from the concrete class, not supplied by callers.

description: string

Human-readable description shown on the chat card.

name: string

Internal identifier for the result.

Speaker identity for the result's chat card.

title: string

Title shown on the chat card.