com.google.photos.library.v1.proto.AddEnrichmentToAlbumRequestOrBuilder 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
The newest version!
// 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 AddEnrichmentToAlbumRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.AddEnrichmentToAlbumRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Identifier of the album where the enrichment is to be added.
*
*
* string album_id = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The albumId.
*/
java.lang.String getAlbumId();
/**
*
*
*
* Required. Identifier of the album where the enrichment is to be added.
*
*
* string album_id = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for albumId.
*/
com.google.protobuf.ByteString getAlbumIdBytes();
/**
*
*
*
* Required. The enrichment to be added.
*
*
*
* .google.photos.library.v1.NewEnrichmentItem new_enrichment_item = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the newEnrichmentItem field is set.
*/
boolean hasNewEnrichmentItem();
/**
*
*
*
* Required. The enrichment to be added.
*
*
*
* .google.photos.library.v1.NewEnrichmentItem new_enrichment_item = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The newEnrichmentItem.
*/
com.google.photos.library.v1.proto.NewEnrichmentItem getNewEnrichmentItem();
/**
*
*
*
* Required. The enrichment to be added.
*
*
*
* .google.photos.library.v1.NewEnrichmentItem new_enrichment_item = 2 [(.google.api.field_behavior) = REQUIRED];
*
*/
com.google.photos.library.v1.proto.NewEnrichmentItemOrBuilder getNewEnrichmentItemOrBuilder();
/**
*
*
*
* Required. The position in the album where the enrichment is to be inserted.
*
*
*
* .google.photos.library.v1.AlbumPosition album_position = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the albumPosition field is set.
*/
boolean hasAlbumPosition();
/**
*
*
*
* Required. The position in the album where the enrichment is to be inserted.
*
*
*
* .google.photos.library.v1.AlbumPosition album_position = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The albumPosition.
*/
com.google.photos.library.v1.proto.AlbumPosition getAlbumPosition();
/**
*
*
*
* Required. The position in the album where the enrichment is to be inserted.
*
*
*
* .google.photos.library.v1.AlbumPosition album_position = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
com.google.photos.library.v1.proto.AlbumPositionOrBuilder getAlbumPositionOrBuilder();
}