Interface MediaItemResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MediaItemResult,MediaItemResult.Builder
public interface MediaItemResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MediaItemgetMediaItem()Media item retrieved from the user's library.MediaItemOrBuildergetMediaItemOrBuilder()Media item retrieved from the user's library.com.google.rpc.StatusgetStatus()If an error occurred while accessing this media item, this field is populated with information related to the error.com.google.rpc.StatusOrBuildergetStatusOrBuilder()If an error occurred while accessing this media item, this field is populated with information related to the error.booleanhasMediaItem()Media item retrieved from the user's library.booleanhasStatus()If an error occurred while accessing this media item, this field is populated with information related to the error.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStatus
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;
-
getStatus
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;
-
getStatusOrBuilder
com.google.rpc.StatusOrBuilder getStatusOrBuilder()
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;
-
hasMediaItem
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;
-
getMediaItem
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;
-
getMediaItemOrBuilder
MediaItemOrBuilder getMediaItemOrBuilder()
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;
-
-