RecordReference
A reference to a particular record with entity name, primary id, and name.
interface RecordReference {
    /** The logical name of the entity that this reference points to. */
    entityType: string;
    /** The guid id of the record that this reference points to. */
    id: string;
    /** The display text of the record that this reference points to. */
    name: string | null;
}