module CommentList:sig..end
type t = {
|
comments : |
(* |
The page of comments.
| *) |
|
kind : |
(* |
Identifies what kind of resource this is. Value: the fixed string "drive#commentList".
| *) |
|
nextPageToken : |
(* |
The page token for the next page of comments. This will be absent if the end of the comments list has been reached.
| *) |
val comments : (t, GapiDriveV3Model.Comment.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val nextPageToken : (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