import { ExternalIdTypeEnum } from "./externalIdTypeEnum"; /** * A source external id for an arbitrary resource in CDF. */ export interface SourceExternalId { /** * An identifier for a CDF resource. */ externalId: string; type: ExternalIdTypeEnum; /** * Name of the source this external id belongs to. */ sourceName: string; }