Module GapiGmailV1Model.Thread

module Thread: sig .. end

type t = {
   historyId : string; (*
The ID of the last history record that modified this thread.
*)
   id : string; (*
The unique ID of the thread.
*)
   messages : GapiGmailV1Model.Message.t list; (*
The list of messages in the thread.
*)
   snippet : string; (*
A short part of the message text.
*)
}
val historyId : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val messages : (t, GapiGmailV1Model.Message.t list) GapiLens.t
val snippet : (t, string) 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