QueryTableResult

public struct QueryTableResult : Codable, Equatable

A tables whose content or context match a search query.

  • The identifier for the retrieved table.

    Declaration

    Swift

    public var tableID: String?
  • The identifier of the document the table was retrieved from.

    Declaration

    Swift

    public var sourceDocumentID: String?
  • The identifier of the collection the table was retrieved from.

    Declaration

    Swift

    public var collectionID: String?
  • HTML snippet of the table info.

    Declaration

    Swift

    public var tableHTML: String?
  • The offset of the table html snippet in the original document html.

    Declaration

    Swift

    public var tableHTMLOffset: Int?
  • Full table object retrieved from Table Understanding Enrichment.

    Declaration

    Swift

    public var table: TableResultTable?