Interface SaveFileResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SaveFileResponse
,SaveFileResponse.Builder
public interface SaveFileResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetEtag()
Represents the etag of the saved contents, so the client can check for external changes.com.google.protobuf.ByteString
Represents the etag of the saved contents, so the client can check for external changes.boolean
hasEtag()
Represents the etag of the saved contents, so the client can check for external changes.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasEtag
boolean hasEtag()Represents the etag of the saved contents, so the client can check for external changes.
optional string etag = 1;
- Returns:
- Whether the etag field is set.
-
getEtag
String getEtag()Represents the etag of the saved contents, so the client can check for external changes.
optional string etag = 1;
- Returns:
- The etag.
-
getEtagBytes
com.google.protobuf.ByteString getEtagBytes()Represents the etag of the saved contents, so the client can check for external changes.
optional string etag = 1;
- Returns:
- The bytes for etag.
-