eventId property

  1. @TagNumber.new(8)
String get eventId

Optional. Event ID of the input/output streams. This is useful when you have a StreamSource/StreamSink operator in the Analysis, and you want to manually specify the Event to read from/write to.

Implementation

@$pb.TagNumber(8)
$core.String get eventId => $_getSZ(7);
  1. @TagNumber.new(8)
set eventId (String v)

Implementation

@$pb.TagNumber(8)
set eventId($core.String v) {
  $_setString(7, v);
}