module Screenshot:sig..end
type t = {
|
data : |
(* |
Image data base64 encoded.
| *) |
|
height : |
(* |
Height of screenshot in pixels.
| *) |
|
mime_type : |
(* |
Mime type of image data. E.g. "image/jpeg".
| *) |
|
width : |
(* |
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