zendesk-messaging-client
    Preparing search index...

    Type Alias Participant

    type Participant = {
        clientAssociations?: ClientAssociation[];
        id?: string;
        lastRead?: string | null;
        unreadCount?: number;
        userExternalId?: string | null;
        userId?: string;
    }
    Index

    Properties

    clientAssociations?: ClientAssociation[]

    Represents the clients that are active in the conversation for a particular user. A participant can have multiple clientAssociations in the case of channel transfer, business initiated conversations, or identified users. The order of the array indicates how recently a client has interacted with the conversation, with the most recent client first. The first item in the array is considered to be the user's primary client for that conversation, and will be selected first for message delivery.

    id?: string

    The unique ID of the participant.

    lastRead?: string | null

    A datetime string with the format YYYY-MM-DDThh:mm:ss.SSSZ representing the latest message the user has read.

    unreadCount?: number

    Number of messages the user has not yet read.

    userExternalId?: string | null

    The externalId of the associated user.

    userId?: string

    The id of the associated user.