reason property

  1. @TagNumber(1)
String reason

The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors. This should be at most 63 characters and match /A-Z0-9_+/.

Implementation

@$pb.TagNumber(1)
$core.String get reason => $_getSZ(0);
  1. @TagNumber(1)
void reason=(String v)

Implementation

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