Interface UploadUserDataResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UploadUserDataResponse,UploadUserDataResponse.Builder
public interface UploadUserDataResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetReceivedOperationsCount()Number of upload data operations received by API.java.lang.StringgetUploadDateTime()The date time at which the request was received by API, formatted as "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g.com.google.protobuf.ByteStringgetUploadDateTimeBytes()The date time at which the request was received by API, formatted as "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g.booleanhasReceivedOperationsCount()Number of upload data operations received by API.booleanhasUploadDateTime()The date time at which the request was received by API, formatted as "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUploadDateTime
boolean hasUploadDateTime()
The date time at which the request was received by API, formatted as "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
optional string upload_date_time = 3;- Returns:
- Whether the uploadDateTime field is set.
-
getUploadDateTime
java.lang.String getUploadDateTime()
The date time at which the request was received by API, formatted as "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
optional string upload_date_time = 3;- Returns:
- The uploadDateTime.
-
getUploadDateTimeBytes
com.google.protobuf.ByteString getUploadDateTimeBytes()
The date time at which the request was received by API, formatted as "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
optional string upload_date_time = 3;- Returns:
- The bytes for uploadDateTime.
-
hasReceivedOperationsCount
boolean hasReceivedOperationsCount()
Number of upload data operations received by API.
optional int32 received_operations_count = 4;- Returns:
- Whether the receivedOperationsCount field is set.
-
getReceivedOperationsCount
int getReceivedOperationsCount()
Number of upload data operations received by API.
optional int32 received_operations_count = 4;- Returns:
- The receivedOperationsCount.
-
-