Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkImageChunkField (googly_document_ai v0.1.0)

Copy Markdown View Source

The image chunk field in the chunk.

Attributes

  • annotations (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentAnnotations.t()) - Annotation of the image chunk field.
  • blob_asset_id (type: String.t()) - Optional. Asset id of the inline image. If set, find the image content in the blob_assets field.
  • data_uri (type: String.t()) - Optional. Data uri of the image. It is composed of four parts: a prefix (data:), a MIME type indicating the type of data, an optional base64 token if non-textual, and the data itself: data:,
  • gcs_uri (type: String.t()) - Optional. Google Cloud Storage uri of the image.

Summary

Types

t()

@type t() ::
  %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkImageChunkField{
    annotations:
      Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentAnnotations.t()
      | nil,
    blob_asset_id: String.t() | nil,
    data_uri: String.t() | nil,
    gcs_uri: String.t() | nil
  }