module History:sig..end
type t = {
|
id : |
(* |
The mailbox sequence ID.
| *) |
|
labelsAdded : |
(* |
Labels added to messages in this history record.
| *) |
|
labelsRemoved : |
(* |
Labels removed from messages in this history record.
| *) |
|
messages : |
(* |
List of messages changed in this history record. The fields for specific change types, such as messagesAdded may duplicate messages in this field. We recommend using the specific change-type fields instead of this.
| *) |
|
messagesAdded : |
(* |
Messages added to the mailbox in this history record.
| *) |
|
messagesDeleted : |
(* |
Messages deleted (not Trashed) from the mailbox in this history record.
| *) |
val id : (t, string) GapiLens.t
val labelsAdded : (t, GapiGmailV1Model.HistoryLabelAdded.t list)
GapiLens.t
val labelsRemoved : (t, GapiGmailV1Model.HistoryLabelRemoved.t list)
GapiLens.t
val messages : (t, GapiGmailV1Model.Message.t list) GapiLens.t
val messagesAdded : (t, GapiGmailV1Model.HistoryMessageAdded.t list)
GapiLens.t
val messagesDeleted : (t, GapiGmailV1Model.HistoryMessageDeleted.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