Type alias CreateThreadEventInput

CreateThreadEventInput: {
    components: EventComponentInput[];
    externalId?: InputMaybe<Scalars["ID"]>;
    threadId: Scalars["ID"];
    timestamp?: InputMaybe<Scalars["String"]>;
    title: Scalars["String"];
}

Type declaration

  • components: EventComponentInput[]

    The components used to create the event's contents.

  • Optional externalId?: InputMaybe<Scalars["ID"]>

    The external ID of this event. You can use this field to store your own unique identifier for this event. This must be unique.

  • threadId: Scalars["ID"]

    The thread id of the thread that the event is for.

  • Optional timestamp?: InputMaybe<Scalars["String"]>

    When provided, this will override the timestamp of the event. Useful when backfilling events. Must be in ISO 8601 format (e.g. 2024-10-28T18:30:00Z).

  • title: Scalars["String"]

    The title of the event.