Interface DataFieldWithNavigationPath

A piece of data that allows navigating to related data

It should be rendered as a hyperlink

interface DataFieldWithNavigationPath {
    criticality?: CriticalityType;
    criticalityRepresentation?: CriticalityRepresentationType;
    iconUrl?: URL;
    label?: string;
    target: string;
    value: PrimitiveType;
}

Hierarchy

Properties

criticality?: CriticalityType

Criticality of the data field value

criticalityRepresentation?: CriticalityRepresentationType

Decides if criticality is visualized in addition by means of an icon

iconUrl?: URL

Optional icon

label?: string

A short, human-readable text suitable for labels and captions in UIs

target: string

Contains either a navigation property or a term cast, where term is of type Edm.EntityType or a concrete entity type or a collection of these types

The data field's value

Generated using TypeDoc