kind property

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

The kind of the entity.

A kind matching regex __.*__ is reserved/read-only. A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be "".

Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as __bytes<X>__ where <X> is the base-64 encoding of the bytes.

Implementation

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

Implementation

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