Interface IssueAssignmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IssueAssignment,IssueAssignment.Builder
public interface IssueAssignmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDisplayName()Immutable.com.google.protobuf.ByteStringgetDisplayNameBytes()Immutable.StringgetIssue()Resource name of the assigned issue.com.google.protobuf.ByteStringgetIssueBytes()Resource name of the assigned issue.doublegetScore()Score indicating the likelihood of the issue assignment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIssue
String getIssue()
Resource name of the assigned issue.
string issue = 1;- Returns:
- The issue.
-
getIssueBytes
com.google.protobuf.ByteString getIssueBytes()
Resource name of the assigned issue.
string issue = 1;- Returns:
- The bytes for issue.
-
getScore
double getScore()
Score indicating the likelihood of the issue assignment. currently bounded on [0,1].
double score = 2;- Returns:
- The score.
-
getDisplayName
String getDisplayName()
Immutable. Display name of the assigned issue. This field is set at time of analyis and immutable since then.
string display_name = 3 [(.google.api.field_behavior) = IMMUTABLE];- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Immutable. Display name of the assigned issue. This field is set at time of analyis and immutable since then.
string display_name = 3 [(.google.api.field_behavior) = IMMUTABLE];- Returns:
- The bytes for displayName.
-
-