Interface EphemeralConversationEvent

The EphemeralConversationEvent type

interface EphemeralConversationEvent {
    from: {
        kind: "embeddedInfo" | "system";
    };
    kind: "ephemeral";
    get body(): string;
    get conversationId(): string;
    get timestamp(): string;
}

Properties

Accessors

Properties

from: {
    kind: "embeddedInfo" | "system";
}

The From property of EphemeralConversationEvent

Type declaration

  • kind: "embeddedInfo" | "system"
kind: "ephemeral"

The kind property of EphemeralConversationEvent

Accessors

  • get body(): string
  • The body property of EphemeralConversationEvent

    Returns string

  • get conversationId(): string
  • The conversationId property of EphemeralConversationEvent

    Returns string

  • get timestamp(): string
  • The timestamp property of EphemeralConversationEvent

    Returns string