package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiDriveV3Model.LabelFieldModificationSource

Sourcetype 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 the value of a dateString Field with these new values. The string must be in the RFC 3339 full-date format: YYYY-MM-DD.

    *)
  4. setTextValues : string list;
    (*

    Sets the value of a `text` field.

    *)
  5. setSelectionValues : string list;
    (*

    Replaces a `selection` field with these new values.

    *)
  6. setIntegerValues : int64 list;
    (*

    Replaces the value of an `integer` 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.

    *)
}
Sourceval fieldId : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval setDateValues : (t, GapiDate.t list) GapiLens.t
Sourceval setTextValues : (t, string list) GapiLens.t
Sourceval setSelectionValues : (t, string list) GapiLens.t
Sourceval setIntegerValues : (t, int64 list) GapiLens.t
Sourceval setUserValues : (t, string list) GapiLens.t
Sourceval unsetValues : (t, bool) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t
OCaml

Innovation. Community. Security.