Module GapiGmailV1Model.ListThreadsResponse

type t = {
nextPageToken : string;(*

Page token to retrieve the next page of results in the list.

*)
resultSizeEstimate : int;(*

Estimated total number of results.

*)
threads : Thread.t list;(*

List of threads.

*)
}
val nextPageToken : ( t, string ) GapiLens.t
val resultSizeEstimate : ( t, int ) GapiLens.t
val threads : ( t, Thread.t list ) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t