operationId property

  1. @TagNumber.new(1)
String get operationId

Identity of the operation. This must be unique within the scope of the service that generated the operation. If the service calls Check() and Report() on the same operation, the two calls should carry the same id.

UUID version 4 is recommended, though not required. In scenarios where an operation is computed from existing information and an idempotent id is desirable for deduplication purpose, UUID version 5 is recommended. See RFC 4122 for details.

Implementation

@$pb.TagNumber(1)
$core.String get operationId => $_getSZ(0);
  1. @TagNumber.new(1)
set operationId (String value)

Implementation

@$pb.TagNumber(1)
set operationId($core.String value) => $_setString(0, value);