package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. hidden : bool;
    (*

    Deprecated.

    *)
  2. modified : bool;
    (*

    Whether the file has been modified by this user.

    *)
  3. restricted : bool;
    (*

    Whether viewers and commenters are prevented from downloading, printing, and copying this file.

    *)
  4. starred : bool;
    (*

    Whether this file is starred by the user.

    *)
  5. trashed : bool;
    (*

    Whether this file has been trashed. This label applies to all users accessing the file; however, only owners are allowed to see and untrash files.

    *)
  6. viewed : bool;
    (*

    Whether this file has been viewed by this user.

    *)
}
val hidden : (t, bool) GapiLens.t
val modified : (t, bool) GapiLens.t
val restricted : (t, bool) GapiLens.t
val starred : (t, bool) GapiLens.t
val trashed : (t, bool) GapiLens.t
val viewed : (t, bool) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t