UNPKG

@c8y/client

Version:

Client application programming interface to access the Cumulocity IoT-Platform REST services.

24 lines 653 B
import { IIdentified } from '../core/index.js'; /** * This interface holds all fragments that can be used to define * an identity object. */ export interface IExternalIdentity { /** * The identifier used in the external system that Cumulocity interfaces with */ externalId: string; /** * The type of the external identifier as string, e.g., "com_cumulocity_model_idtype_SerialNumber" */ type: string; /** * The ManagedObject linked to the external ID */ managedObject?: IIdentified; /** * Link to this resource */ self?: string; } //# sourceMappingURL=IExternalIdentity.d.ts.map