Module Result.Screenshot

type t = {
data : string;(*

Image data base64 encoded.

*)
height : int;(*

Height of screenshot in pixels.

*)
mime_type : string;(*

Mime type of image data. E.g. "image/jpeg".

*)
width : int;(*

Width of screenshot in pixels.

*)
}
val data : ( t, string ) GapiLens.t
val height : ( t, int ) GapiLens.t
val mime_type : ( t, string ) GapiLens.t
val width : ( t, int ) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t