Interface CustomConversationEvent

The CustomConversationEvent type

interface CustomConversationEvent {
    from: {
        kind: "embeddedInfo" | "system";
    };
    kind: "custom";
    get body(): any;
    get conversationId(): string;
    get eventType(): Nullable<string>;
    get id(): number;
    get timestamp(): string;
}

Properties

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

The From property of CustomConversationEvent

Type declaration

  • kind: "embeddedInfo" | "system"
kind: "custom"

The kind property of CustomConversationEvent

Accessors

  • get body(): any
  • The body property of CustomConversationEvent

    Returns any

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

    Returns string

  • get eventType(): Nullable<string>
  • The eventType property of CustomConversationEvent

    Returns Nullable<string>

  • get id(): number
  • The id property of CustomConversationEvent

    Returns number

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

    Returns string