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🔗

type AnnotationEventFieldSource string
const (
    AnnotationEventFieldSourceField AnnotationEventFieldSource = "field"
    AnnotationEventFieldSourceText AnnotationEventFieldSource = "text"
    AnnotationEventFieldSourceSkip AnnotationEventFieldSource = "skip"
)