Skip to content

AnnotationEventFieldSource🔗

Annotation event field source. Defines how to obtain the value for an annotation event field.

  • "field": Find the value with a matching key (default)

  • "text": Write a constant string into the value

  • "skip": Do not include the field

Definition🔗

export enum AnnotationEventFieldSource {
    Field = "field",
    Text = "text",
    Skip = "skip",
}