Module GapiGmailV1Model.BatchModifyMessagesRequest

type t = {
addLabelIds : string list;

A list of label IDs to add to messages.

ids : string list;

The IDs of the messages to modify. There is a limit of 1000 ids per request.

removeLabelIds : string list;

A list of label IDs to remove from messages.

}
val addLabelIds : (tstring list) GapiLens.t
val ids : (tstring list) GapiLens.t
val removeLabelIds : (tstring 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