Module GapiDriveV2Model.App.Icons

module Icons: sig .. end

type t = {
   category : string; (*
Category of the icon. Allowed values are:
  • application - icon for the application
  • document - icon for a file associated with the app
  • documentShared - icon for a shared file associated with the app

*)
   iconUrl : string; (*
URL for the icon.
*)
   size : int; (*
Size of the icon. Represented as the maximum of the width and height.
*)
}
val category : (t, string) GapiLens.t
val iconUrl : (t, string) GapiLens.t
val size : (t, int) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t