Module GapiGmailV1Model.ListDraftsResponse

type t = {
drafts : Draft.t list;(*

List of drafts.

*)
nextPageToken : string;(*

Token to retrieve the next page of results in the list.

*)
resultSizeEstimate : int;(*

Estimated total number of results.

*)
}
val drafts : ( t, Draft.t list ) GapiLens.t
val nextPageToken : ( t, string ) GapiLens.t
val resultSizeEstimate : ( t, int ) 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