uid property

  1. @TagNumber.new(5)
String get uid

The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.

Implementation

@$pb.TagNumber(5)
$core.String get uid => $_getSZ(4);
  1. @TagNumber.new(5)
set uid (String value)

Implementation

@$pb.TagNumber(5)
set uid($core.String value) => $_setString(4, value);