Module GapiCore.PostData

module PostData: sig .. end

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