@webitel/api-services
    Preparing search index...

    Thread represents a thread (aka chat or conversation) entity.

    interface WebitelImApiGatewayV1Thread {
        createdAt?: string;
        description?: string;
        id?: string;
        lastMsg?: WebitelImApiGatewayV1HistoryMessage;
        members?: WebitelImApiGatewayV1ThreadMember[];
        settings?: WebitelImApiGatewayV1ThreadSettings;
        subject?: string;
        type?: WebitelImApiGatewayV1ThreadKind;
        updatedAt?: string;
        variables?: WebitelImApiGatewayV1ThreadVariables;
    }
    Index

    Properties

    createdAt?: string

    Thread creation timestamp (Unix time, milliseconds).

    description?: string

    Optional thread description.

    id?: string

    Unique thread identifier.

    Last message of the linked thread.

    Detailed member information.

    User-specific settings for this thread.

    subject?: string

    Thread subject or title.

    Type of the thread.

    updatedAt?: string

    Last update timestamp (Unix time, milliseconds).

    Optional variables associated with the thread.