Interface IssueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Issue
,Issue.Builder
public interface IssueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCreateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Output only.String
getDisplayName()
The representative name for the issue.com.google.protobuf.ByteString
getDisplayNameBytes()
The representative name for the issue.String
getName()
Immutable.com.google.protobuf.ByteString
getNameBytes()
Immutable.String
getSampleUtterances(int index)
Output only.com.google.protobuf.ByteString
getSampleUtterancesBytes(int index)
Output only.int
getSampleUtterancesCount()
Output only.List<String>
getSampleUtterancesList()
Output only.com.google.protobuf.Timestamp
getUpdateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getUpdateTimeOrBuilder()
Output only.boolean
hasCreateTime()
Output only.boolean
hasUpdateTime()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
The representative name for the issue.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The representative name for the issue.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
hasCreateTime
boolean hasCreateTime()
Output only. The time at which this issue was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Output only. The time at which this issue was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. The time at which this issue was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
hasUpdateTime
boolean hasUpdateTime()
Output only. The most recent time that this issue was updated.
.google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Output only. The most recent time that this issue was updated.
.google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Output only. The most recent time that this issue was updated.
.google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getSampleUtterancesList
List<String> getSampleUtterancesList()
Output only. Resource names of the sample representative utterances that match to this issue.
repeated string sample_utterances = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the sampleUtterances.
-
getSampleUtterancesCount
int getSampleUtterancesCount()
Output only. Resource names of the sample representative utterances that match to this issue.
repeated string sample_utterances = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of sampleUtterances.
-
getSampleUtterances
String getSampleUtterances(int index)
Output only. Resource names of the sample representative utterances that match to this issue.
repeated string sample_utterances = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The sampleUtterances at the given index.
-
getSampleUtterancesBytes
com.google.protobuf.ByteString getSampleUtterancesBytes(int index)
Output only. Resource names of the sample representative utterances that match to this issue.
repeated string sample_utterances = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the sampleUtterances at the given index.
-
-