com.google.photos.library.v1.proto.MediaItemResultOrBuilder 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 MediaItemResultOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.MediaItemResult)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* If an error occurred while accessing this media item, this field
* is populated with information related to the error. For details regarding
* this field, see [Status][google.rpc.Status].
*
*
* .google.rpc.Status status = 1;
*
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
*
*
* If an error occurred while accessing this media item, this field
* is populated with information related to the error. For details regarding
* this field, see [Status][google.rpc.Status].
*
*
* .google.rpc.Status status = 1;
*
* @return The status.
*/
com.google.rpc.Status getStatus();
/**
*
*
*
* If an error occurred while accessing this media item, this field
* is populated with information related to the error. For details regarding
* this field, see [Status][google.rpc.Status].
*
*
* .google.rpc.Status status = 1;
*/
com.google.rpc.StatusOrBuilder getStatusOrBuilder();
/**
*
*
*
* Media item retrieved from the user's library. It's populated if no errors
* occurred and the media item was fetched successfully.
*
*
* .google.photos.types.MediaItem media_item = 2;
*
* @return Whether the mediaItem field is set.
*/
boolean hasMediaItem();
/**
*
*
*
* Media item retrieved from the user's library. It's populated if no errors
* occurred and the media item was fetched successfully.
*
*
* .google.photos.types.MediaItem media_item = 2;
*
* @return The mediaItem.
*/
com.google.photos.types.proto.MediaItem getMediaItem();
/**
*
*
*
* Media item retrieved from the user's library. It's populated if no errors
* occurred and the media item was fetched successfully.
*
*
* .google.photos.types.MediaItem media_item = 2;
*/
com.google.photos.types.proto.MediaItemOrBuilder getMediaItemOrBuilder();
}