package awsm

  1. Overview
  2. Docs

Module Client.QuerySource

Sourcetype t =
  1. | String of string
  2. | List of t list
  3. | Structure of (string * t) list
  4. | Map of (string * string) list
Sourcetype value = [
  1. | `Blob of string
  2. | `Boolean of bool
  3. | `Double of Core.Float.t
  4. | `Enum of string
  5. | `Float of Core.Float.t
  6. | `Integer of int
  7. | `List of value list
  8. | `Long of Core.Int64.t
  9. | `Map of (value * value) list
  10. | `String of string
  11. | `Structure of (string * value) list
  12. | `Timestamp of string
]
Sourceval of_value : value -> t
Sourceval render : t -> (Core.String.t * string list) list