Module GapiAnalyticsV3Model.Upload

module Upload: sig .. end

type t = {
   accountId : int64; (*
Account Id to which this upload belongs.
*)
   customDataSourceId : string; (*
Custom data source Id to which this data import belongs.
*)
   errors : string list; (*
Data import errors collection.
*)
   id : string; (*
A unique ID for this upload.
*)
   kind : string; (*
Resource type for Analytics upload.
*)
   status : string; (*
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