com.google.photos.library.v1.proto.BatchRemoveMediaItemsFromAlbumRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-photos-library-client Show documentation
Show all versions of google-photos-library-client Show documentation
Google Photos Library API Client Library for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/photos/library/v1/photos_library.proto
package com.google.photos.library.v1.proto;
public interface BatchRemoveMediaItemsFromAlbumRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.BatchRemoveMediaItemsFromAlbumRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Identifiers of the [MediaItem][google.photos.types.MediaItem]s to be
* removed.
* Must not contain repeated identifiers and cannot be empty. The maximum
* number of media items that can be removed in one call is 50.
*
*
* repeated string media_item_ids = 1;
*
* @return A list containing the mediaItemIds.
*/
java.util.List getMediaItemIdsList();
/**
*
*
*
* Identifiers of the [MediaItem][google.photos.types.MediaItem]s to be
* removed.
* Must not contain repeated identifiers and cannot be empty. The maximum
* number of media items that can be removed in one call is 50.
*
*
* repeated string media_item_ids = 1;
*
* @return The count of mediaItemIds.
*/
int getMediaItemIdsCount();
/**
*
*
*
* Identifiers of the [MediaItem][google.photos.types.MediaItem]s to be
* removed.
* Must not contain repeated identifiers and cannot be empty. The maximum
* number of media items that can be removed in one call is 50.
*
*
* repeated string media_item_ids = 1;
*
* @param index The index of the element to return.
* @return The mediaItemIds at the given index.
*/
java.lang.String getMediaItemIds(int index);
/**
*
*
*
* Identifiers of the [MediaItem][google.photos.types.MediaItem]s to be
* removed.
* Must not contain repeated identifiers and cannot be empty. The maximum
* number of media items that can be removed in one call is 50.
*
*
* repeated string media_item_ids = 1;
*
* @param index The index of the value to return.
* @return The bytes of the mediaItemIds at the given index.
*/
com.google.protobuf.ByteString getMediaItemIdsBytes(int index);
/**
*
*
*
* Identifier of the [Album][google.photos.types.Album] that the media
* items are to be removed from.
*
*
* string album_id = 2;
*
* @return The albumId.
*/
java.lang.String getAlbumId();
/**
*
*
*
* Identifier of the [Album][google.photos.types.Album] that the media
* items are to be removed from.
*
*
* string album_id = 2;
*
* @return The bytes for albumId.
*/
com.google.protobuf.ByteString getAlbumIdBytes();
}