Container for bytes-encoded data such as video frame, audio sample, or a complete binary/text data.
mimeTypestring
Required. Mime type of the chunk data. See https://www.iana.org/assignments/media-types/media-types.xhtml for the full list.
Required. The data in the chunk.
A base64-encoded string.
Optional. metadata that is associated with the data in the payload.
| JSON representation |
|---|
{
"mimeType": string,
"data": string,
"metadata": {
object ( |
Metadata
metadata for a chunk.
Optional. Attributes attached to the data. The keys have semantic conventions and the consumers of the attributes should know how to deserialize the value bytes based on the keys.
| JSON representation |
|---|
{ "attributes": { string: string, ... } } |