AboutSupportDeveloper GuideVersion 38.126.82.64

Identity of a channel client. Includes endpointId to differentiate between different connections for an entity.

interface ClientIdentity {
    endpointId: string;
    isLocalEndpointId: boolean;
    name: string;
    uuid: string;
}

Properties

endpointId: string

Unique identifier for a client, because there can be multiple clients at one name/uuid entity.

isLocalEndpointId: boolean
name: string

The name of the component. Must be unique within the owning application.

uuid: string

Universally unique identifier of the application that owns the component.