[[reference-shared-types-mget]] //////// =========================================================================================================================== || || || || || || || ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ || || ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ || || ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ || || ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ || || ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ || || ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ || || || || || || This file is autogenerated, DO NOT send pull requests that changes this file directly. || || You should update the script that does the generation, which can be found in: || || https://github.com/elastic/elastic-client-generator-js || || || || You can run the script with the following command: || || npm run elasticsearch -- --version || || || || || || || =========================================================================================================================== //////// == Shared Mget types [discrete] [[MgetMultiGetError]] === MgetMultiGetError [pass] ++++
++++
interface MgetMultiGetError {
  error: <>
  _id: <>
  _index: <>
}
[pass]
++++
++++ [discrete] [[MgetOperation]] === MgetOperation [pass] ++++
++++
interface MgetOperation {
  pass:[/**] @property _id The unique document ID. */
  _id: <>
  pass:[/**] @property _index The index that contains the document. */
  _index?: <>
  pass:[/**] @property routing The key for the primary shard the document resides on. Required if routing is used during indexing. */
  routing?: <>
  pass:[/**] @property _source If `false`, excludes all _source fields. */
  _source?: <>
  pass:[/**] @property stored_fields The stored fields you want to retrieve. */
  stored_fields?: <>
  version?: <>
  version_type?: <>
}
[pass]
++++
++++ [discrete] [[MgetRequest]] === MgetRequest [pass] ++++
++++
interface MgetRequest extends <> {
  index?: <>
  force_synthetic_source?: boolean
  preference?: string
  realtime?: boolean
  refresh?: boolean
  routing?: <>
  _source?: <>
  _source_excludes?: <>
  _source_includes?: <>
  stored_fields?: <>
  docs?: <>[]
  ids?: <>
}
[pass]
++++
++++ [discrete] [[MgetResponse]] === MgetResponse [pass] ++++
++++
interface MgetResponse {
  docs: <>[]
}
[pass]
++++
++++ [discrete] [[MgetResponseItem]] === MgetResponseItem [pass] ++++
++++
type MgetResponseItem = <> | <>
[pass]
++++
++++