package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. fieldModifications : LabelFieldModification.t list;
    (*

    The list of modifications to this label's fields.

    *)
  2. kind : string;
    (*

    This is always drive#labelModification.

    *)
  3. labelId : string;
    (*

    The ID of the label to modify.

    *)
  4. removeLabel : bool;
    (*

    If true, the label will be removed from the file.

    *)
}
val fieldModifications : (t, LabelFieldModification.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val labelId : (t, string) GapiLens.t
val removeLabel : (t, bool) 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