Module GapiCore.PostData

type body =
  1. | String of string
  2. | File of string * int * int64
  3. | Buffer of (char, Stdlib.Bigarray.int8_unsigned_elt, Stdlib.Bigarray.c_layout) Stdlib.Bigarray.Array1.t
type t =
  1. | Fields of (string * string) list
  2. | Body of body * string
val empty : t