module Upload:sig..end
type t = {
|
accountId : |
(* |
Account Id to which this upload belongs.
| *) |
|
customDataSourceId : |
(* |
Custom data source Id to which this data import belongs.
| *) |
|
errors : |
(* |
Data import errors collection.
| *) |
|
id : |
(* |
A unique ID for this upload.
| *) |
|
kind : |
(* |
Resource type for Analytics upload.
| *) |
|
status : |
(* |
Upload status. Possible values: PENDING, COMPLETED, FAILED, DELETING, DELETED.
| *) |
val accountId : (t, int64) GapiLens.t
val customDataSourceId : (t, string) GapiLens.t
val errors : (t, string list) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val status : (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