package gapi-ocaml

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

    The ID of the Field to be modified.

    *)
  2. kind : string;
    (*

    This is always drive#labelFieldModification.

    *)
  3. setDateValues : GapiDate.t list;
    (*

    Replaces a dateString field with these new values. The values must be strings in the RFC 3339 full-date format: YYYY-MM-DD.

    *)
  4. setIntegerValues : int64 list;
    (*

    Replaces an integer field with these new values.

    *)
  5. setSelectionValues : string list;
    (*

    Replaces a selection field with these new values.

    *)
  6. setTextValues : string list;
    (*

    Replaces a text field with these new values.

    *)
  7. setUserValues : string list;
    (*

    Replaces a user field with these new values. The values must be valid email addresses.

    *)
  8. unsetValues : bool;
    (*

    Unsets the values for this field.

    *)
}
val fieldId : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val setDateValues : (t, GapiDate.t list) GapiLens.t
val setIntegerValues : (t, int64 list) GapiLens.t
val setSelectionValues : (t, string list) GapiLens.t
val setTextValues : (t, string list) GapiLens.t
val setUserValues : (t, string list) GapiLens.t
val unsetValues : (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