GapiDriveV3Model.LabelFieldModification
type t = {
fieldId : string;
The ID of the Field to be modified.
*)kind : string;
This is always drive#labelFieldModification.
*)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.
*)setIntegerValues : int64 list;
Replaces an integer field with these new values.
*)setSelectionValues : string list;
Replaces a selection field with these new values.
*)setTextValues : string list;
Replaces a text field with these new values.
*)setUserValues : string list;
Replaces a user field with these new values. The values must be valid email addresses.
*)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