id property

  1. @TagNumber.new(4)
String get id

In case you need to specify the unique identifier of the group, such as to recreate a previously existing group, you can provide the ID. If omitted, the system will generate an ID for you. This is the preferred way. The generated ID will be returned in the response.

Implementation

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

Implementation

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