module About:sig..end
module StorageQuota:sig..end
type t = {
|
appInstalled : |
(* |
Whether the user has installed the requesting app.
| *) |
|
exportFormats : |
(* |
A map of source MIME type to possible targets for all supported exports.
| *) |
|
folderColorPalette : |
(* |
The currently supported folder colors as RGB hex strings.
| *) |
|
importFormats : |
(* |
A map of source MIME type to possible targets for all supported imports.
| *) |
|
kind : |
(* |
Identifies what kind of resource this is. Value: the fixed string "drive#about".
| *) |
|
maxImportSizes : |
(* |
A map of maximum import sizes by MIME type, in bytes.
| *) |
|
maxUploadSize : |
(* |
The maximum upload size in bytes.
| *) |
|
storageQuota : |
(* |
The user's storage quota limits and usage. All fields are measured in bytes.
| *) |
|
user : |
(* |
The authenticated user.
| *) |
val appInstalled : (t, bool) GapiLens.t
val exportFormats : (t, (string * string list) list) GapiLens.t
val folderColorPalette : (t, string list) GapiLens.t
val importFormats : (t, (string * string list) list) GapiLens.t
val kind : (t, string) GapiLens.t
val maxImportSizes : (t, (string * int64) list) GapiLens.t
val maxUploadSize : (t, int64) GapiLens.t
val storageQuota : (t, StorageQuota.t) GapiLens.t
val user : (t, GapiDriveV3Model.User.t) 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