com.google.photos.library.v1.proto.UpdateAlbumRequestOrBuilder 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 UpdateAlbumRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.UpdateAlbumRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The [Album][google.photos.types.Album] to update.
* The album’s `id` field is used to identify the album to be updated.
* The album’s `title` field is used to set the new album title.
* The album’s `cover_photo_media_item_id` field is used to set the new album
* cover photo.
*
*
* .google.photos.types.Album album = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return Whether the album field is set.
*/
boolean hasAlbum();
/**
*
*
*
* Required. The [Album][google.photos.types.Album] to update.
* The album’s `id` field is used to identify the album to be updated.
* The album’s `title` field is used to set the new album title.
* The album’s `cover_photo_media_item_id` field is used to set the new album
* cover photo.
*
*
* .google.photos.types.Album album = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The album.
*/
com.google.photos.types.proto.Album getAlbum();
/**
*
*
*
* Required. The [Album][google.photos.types.Album] to update.
* The album’s `id` field is used to identify the album to be updated.
* The album’s `title` field is used to set the new album title.
* The album’s `cover_photo_media_item_id` field is used to set the new album
* cover photo.
*
*
* .google.photos.types.Album album = 1 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.photos.types.proto.AlbumOrBuilder getAlbumOrBuilder();
/**
*
*
*
* Required. Indicate what fields in the provided album to update.
* The only valid values are `title` and `cover_photo_media_item_id`.
*
*
* .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the updateMask field is set.
*/
boolean hasUpdateMask();
/**
*
*
*
* Required. Indicate what fields in the provided album to update.
* The only valid values are `title` and `cover_photo_media_item_id`.
*
*
* .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The updateMask.
*/
com.google.protobuf.FieldMask getUpdateMask();
/**
*
*
*
* Required. Indicate what fields in the provided album to update.
* The only valid values are `title` and `cover_photo_media_item_id`.
*
*
* .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
*
*/
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder();
}