Type alias CreateThreadEventInput

CreateThreadEventInput: {
    components: EventComponentInput[];
    externalId?: InputMaybe<Scalars["ID"]>;
    threadId: Scalars["ID"];
    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.

  • title: Scalars["String"]

    The title of the event.

Generated using TypeDoc