uid property

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

Output only. Server assigned unique identifier for the channel. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.

Implementation

@$pb.TagNumber(2)
$core.String get uid => $_getSZ(1);
  1. @TagNumber.new(2)
set uid (String v)

Implementation

@$pb.TagNumber(2)
set uid($core.String v) {
  $_setString(1, v);
}