module Thread:sig..end
type t = {
|
historyId : |
(* |
The ID of the last history record that modified this thread.
| *) |
|
id : |
(* |
The unique ID of the thread.
| *) |
|
messages : |
(* |
The list of messages in the thread.
| *) |
|
snippet : |
(* |
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