Interface ImportDocumentsMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportDocumentsMetadata,ImportDocumentsMetadata.Builder
public interface ImportDocumentsMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCreateTime()Operation create time.com.google.protobuf.TimestampOrBuildergetCreateTimeOrBuilder()Operation create time.longgetFailureCount()Count of entries that encountered errors while processing.longgetSuccessCount()Count of entries that were processed successfully.com.google.protobuf.TimestampgetUpdateTime()Operation last update time.com.google.protobuf.TimestampOrBuildergetUpdateTimeOrBuilder()Operation last update time.booleanhasCreateTime()Operation create time.booleanhasUpdateTime()Operation last update time.-
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()
Operation create time.
.google.protobuf.Timestamp create_time = 1;- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Operation create time.
.google.protobuf.Timestamp create_time = 1;- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Operation create time.
.google.protobuf.Timestamp create_time = 1;
-
hasUpdateTime
boolean hasUpdateTime()
Operation last update time. If the operation is done, this is also the finish time.
.google.protobuf.Timestamp update_time = 2;- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Operation last update time. If the operation is done, this is also the finish time.
.google.protobuf.Timestamp update_time = 2;- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Operation last update time. If the operation is done, this is also the finish time.
.google.protobuf.Timestamp update_time = 2;
-
getSuccessCount
long getSuccessCount()
Count of entries that were processed successfully.
int64 success_count = 3;- Returns:
- The successCount.
-
getFailureCount
long getFailureCount()
Count of entries that encountered errors while processing.
int64 failure_count = 4;- Returns:
- The failureCount.
-
-