Interface UplynkExternalId

Represents a combination of user identifier and one or more external identifiers for Uplynk assets.


- Each combination of the user identifier and external identifier determines a unique asset on the Uplynk Platform.

interface UplynkExternalId {
    externalId: string | string[];
    userId: string;
}

Properties

Properties

externalId: string | string[]

The external identifier(s) for the asset(s).

userId: string

The user identifier for the asset(s).