Interface ImagePayloadOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImagePayload,ImagePayload.Builder
public interface ImagePayloadOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetImageThumbnail()A byte string of a thumbnail image.StringgetImageUri()Image uri from the user bucket.com.google.protobuf.ByteStringgetImageUriBytes()Image uri from the user bucket.StringgetMimeType()Image format.com.google.protobuf.ByteStringgetMimeTypeBytes()Image format.StringgetSignedUri()Signed uri of the image file in the service bucket.com.google.protobuf.ByteStringgetSignedUriBytes()Signed uri of the image file in the service bucket.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMimeType
String getMimeType()
Image format.
string mime_type = 1;- Returns:
- The mimeType.
-
getMimeTypeBytes
com.google.protobuf.ByteString getMimeTypeBytes()
Image format.
string mime_type = 1;- Returns:
- The bytes for mimeType.
-
getImageThumbnail
com.google.protobuf.ByteString getImageThumbnail()
A byte string of a thumbnail image.
bytes image_thumbnail = 2;- Returns:
- The imageThumbnail.
-
getImageUri
String getImageUri()
Image uri from the user bucket.
string image_uri = 3;- Returns:
- The imageUri.
-
getImageUriBytes
com.google.protobuf.ByteString getImageUriBytes()
Image uri from the user bucket.
string image_uri = 3;- Returns:
- The bytes for imageUri.
-
getSignedUri
String getSignedUri()
Signed uri of the image file in the service bucket.
string signed_uri = 4;- Returns:
- The signedUri.
-
getSignedUriBytes
com.google.protobuf.ByteString getSignedUriBytes()
Signed uri of the image file in the service bucket.
string signed_uri = 4;- Returns:
- The bytes for signedUri.
-
-