Interface MediaBundleOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MediaBundle,MediaBundle.Builder
public interface MediaBundleOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetData()Immutable.java.lang.StringgetUrl()Output only.com.google.protobuf.ByteStringgetUrlBytes()Output only.booleanhasData()Immutable.booleanhasUrl()Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasData
boolean hasData()
Immutable. Raw zipped data.
optional bytes data = 3 [(.google.api.field_behavior) = IMMUTABLE];- Returns:
- Whether the data field is set.
-
getData
com.google.protobuf.ByteString getData()
Immutable. Raw zipped data.
optional bytes data = 3 [(.google.api.field_behavior) = IMMUTABLE];- Returns:
- The data.
-
hasUrl
boolean hasUrl()
Output only. The url to access the uploaded zipped data. E.g. https://tpc.googlesyndication.com/simgad/123 This field is read-only.
optional string url = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- Whether the url field is set.
-
getUrl
java.lang.String getUrl()
Output only. The url to access the uploaded zipped data. E.g. https://tpc.googlesyndication.com/simgad/123 This field is read-only.
optional string url = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()
Output only. The url to access the uploaded zipped data. E.g. https://tpc.googlesyndication.com/simgad/123 This field is read-only.
optional string url = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The bytes for url.
-
-