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.ByteString
getImageThumbnail()
A byte string of a thumbnail image.String
getImageUri()
Image uri from the user bucket.com.google.protobuf.ByteString
getImageUriBytes()
Image uri from the user bucket.String
getMimeType()
Image format.com.google.protobuf.ByteString
getMimeTypeBytes()
Image format.String
getSignedUri()
Signed uri of the image file in the service bucket.com.google.protobuf.ByteString
getSignedUriBytes()
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.
-
-