GapiDriveV3Model.LabelField
type t = {
dateString : GapiDate.t list;
Only present if valueType is dateString. RFC 3339 formatted date: YYYY-MM-DD.
*)id : string;
The identifier of this field.
*)integer : int64 list;
Only present if valueType is integer.
*)kind : string;
This is always drive#labelField.
*)selection : string list;
Only present if valueType is selection.
*)text : string list;
Only present if valueType is text.
*)user : User.t list;
Only present if valueType is user.
*)valueType : string;
The field type. While new values may be supported in the future, the following are currently allowed:
}
val dateString : (t, GapiDate.t list) GapiLens.t
val id : (t, string) GapiLens.t
val integer : (t, int64 list) GapiLens.t
val kind : (t, string) GapiLens.t
val selection : (t, string list) GapiLens.t
val text : (t, string list) GapiLens.t
val user : (t, User.t list) GapiLens.t
val valueType : (t, string) 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