GapiCalendarV3Model.Colors
type t = {
updated : GapiDate.t; | (* Last modification time of the color palette (as a RFC3339 timestamp). Read-only. *) |
calendar : (string * ColorDefinition.t) list; | (* A global palette of calendar colors, mapping from the color ID to its definition. A calendarListEntry resource refers to one of these color IDs in its colorId field. Read-only. *) |
kind : string; | (* Type of the resource ("calendar#colors"). *) |
event : (string * ColorDefinition.t) list; | (* A global palette of event colors, mapping from the color ID to its definition. An event resource may refer to one of these color IDs in its colorId field. Read-only. *) |
}
val updated : ( t, GapiDate.t ) GapiLens.t
val calendar : ( t, (string * ColorDefinition.t) list ) GapiLens.t
val kind : ( t, string ) GapiLens.t
val event : ( t, (string * ColorDefinition.t) list ) 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