Search Results for

    Show / Hide Table of Contents

    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;
    }
    
    In This Article
    Back to top Hitachi Solutions JS Library