/** * Part of the Data Request interface to represent a set of entities either by id or by type */ export interface IEntitySet { /** * Entity Id. */ entityId?: string[]; /** * The entity type. */ entityType: string; }