AnnotationEventFieldMapping🔗
Annotation event field mapping. Defines how to map a data frame field to an annotation event field.
Definition🔗
export interface AnnotationEventFieldMapping {
// Source type for the field value
source?: string;
// Constant value to use when source is "text"
value?: string;
// Regular expression to apply to the field value
regex?: string;
}