Interface AddToFolderActionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AddToFolderAction
,AddToFolderAction.Builder
public interface AddToFolderActionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFolders(int index)
Names of the folder under which new document is to be added.com.google.protobuf.ByteString
getFoldersBytes(int index)
Names of the folder under which new document is to be added.int
getFoldersCount()
Names of the folder under which new document is to be added.List<String>
getFoldersList()
Names of the folder under which new document is to be added.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFoldersList
List<String> getFoldersList()
Names of the folder under which new document is to be added. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string folders = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- A list containing the folders.
-
getFoldersCount
int getFoldersCount()
Names of the folder under which new document is to be added. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string folders = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The count of folders.
-
getFolders
String getFolders(int index)
Names of the folder under which new document is to be added. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string folders = 1 [(.google.api.resource_reference) = { ... }
- Parameters:
index
- The index of the element to return.- Returns:
- The folders at the given index.
-
getFoldersBytes
com.google.protobuf.ByteString getFoldersBytes(int index)
Names of the folder under which new document is to be added. Format: projects/{project_number}/locations/{location}/documents/{document_id}.
repeated string folders = 1 [(.google.api.resource_reference) = { ... }
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the folders at the given index.
-
-