Interface BulkAnalyzeConversationsMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BulkAnalyzeConversationsMetadata
,BulkAnalyzeConversationsMetadata.Builder
public interface BulkAnalyzeConversationsMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCompletedAnalysesCount()
The number of requested analyses that have completed successfully so far.com.google.protobuf.Timestamp
getCreateTime()
The time the operation was created.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
The time the operation was created.com.google.protobuf.Timestamp
getEndTime()
The time the operation finished running.com.google.protobuf.TimestampOrBuilder
getEndTimeOrBuilder()
The time the operation finished running.int
getFailedAnalysesCount()
The number of requested analyses that have failed so far.BulkAnalyzeConversationsRequest
getRequest()
The original request for bulk analyze.BulkAnalyzeConversationsRequestOrBuilder
getRequestOrBuilder()
The original request for bulk analyze.int
getTotalRequestedAnalysesCount()
Total number of analyses requested.boolean
hasCreateTime()
The time the operation was created.boolean
hasEndTime()
The time the operation finished running.boolean
hasRequest()
The original request for bulk analyze.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCreateTime
boolean hasCreateTime()
The time the operation was created.
.google.protobuf.Timestamp create_time = 1;
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
The time the operation was created.
.google.protobuf.Timestamp create_time = 1;
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
The time the operation was created.
.google.protobuf.Timestamp create_time = 1;
-
hasEndTime
boolean hasEndTime()
The time the operation finished running.
.google.protobuf.Timestamp end_time = 2;
- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
The time the operation finished running.
.google.protobuf.Timestamp end_time = 2;
- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
The time the operation finished running.
.google.protobuf.Timestamp end_time = 2;
-
hasRequest
boolean hasRequest()
The original request for bulk analyze.
.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest request = 3;
- Returns:
- Whether the request field is set.
-
getRequest
BulkAnalyzeConversationsRequest getRequest()
The original request for bulk analyze.
.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest request = 3;
- Returns:
- The request.
-
getRequestOrBuilder
BulkAnalyzeConversationsRequestOrBuilder getRequestOrBuilder()
The original request for bulk analyze.
.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest request = 3;
-
getCompletedAnalysesCount
int getCompletedAnalysesCount()
The number of requested analyses that have completed successfully so far.
int32 completed_analyses_count = 4;
- Returns:
- The completedAnalysesCount.
-
getFailedAnalysesCount
int getFailedAnalysesCount()
The number of requested analyses that have failed so far.
int32 failed_analyses_count = 5;
- Returns:
- The failedAnalysesCount.
-
getTotalRequestedAnalysesCount
int getTotalRequestedAnalysesCount()
Total number of analyses requested. Computed by the number of conversations returned by `filter` multiplied by `analysis_percentage` in the request.
int32 total_requested_analyses_count = 6;
- Returns:
- The totalRequestedAnalysesCount.
-
-