Module GapiAnalyticsV3Model.UnsampledReport

module UnsampledReport: sig .. end

module DriveDownloadDetails: sig .. end
module CloudStorageDownloadDetails: sig .. end
type t = {
   accountId : string; (*
Account ID to which this unsampled report belongs.
*)
   cloudStorageDownloadDetails : CloudStorageDownloadDetails.t; (*
Download details for a file stored in Google Cloud Storage.
*)
   created : GapiDate.t; (*
Time this unsampled report was created.
*)
   dimensions : string; (*
The dimensions for the unsampled report.
*)
   downloadType : string; (*
The type of download you need to use for the report data file.
*)
   driveDownloadDetails : DriveDownloadDetails.t; (*
Download details for a file stored in Google Drive.
*)
   end_date : string; (*
The end date for the unsampled report.
*)
   filters : string; (*
The filters for the unsampled report.
*)
   id : string; (*
Unsampled report ID.
*)
   kind : string; (*
Resource type for an Analytics unsampled report.
*)
   metrics : string; (*
The metrics for the unsampled report.
*)
   profileId : string; (*
View (Profile) ID to which this unsampled report belongs.
*)
   segment : string; (*
The segment for the unsampled report.
*)
   selfLink : string; (*
Link for this unsampled report.
*)
   start_date : string; (*
The start date for the unsampled report.
*)
   status : string; (*
Status of this unsampled report. Possible values are PENDING, COMPLETED, or FAILED.
*)
   title : string; (*
Title of the unsampled report.
*)
   updated : GapiDate.t; (*
Time this unsampled report was last modified.
*)
   webPropertyId : string; (*
Web property ID to which this unsampled report belongs. The web property ID is of the form UA-XXXXX-YY.
*)
}
val accountId : (t, string) GapiLens.t
val cloudStorageDownloadDetails : (t,
CloudStorageDownloadDetails.t)
GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val dimensions : (t, string) GapiLens.t
val downloadType : (t, string) GapiLens.t
val driveDownloadDetails : (t,
DriveDownloadDetails.t)
GapiLens.t
val end_date : (t, string) GapiLens.t
val filters : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val metrics : (t, string) GapiLens.t
val profileId : (t, string) GapiLens.t
val segment : (t, string) GapiLens.t
val selfLink : (t, string) GapiLens.t
val start_date : (t, string) GapiLens.t
val status : (t, string) GapiLens.t
val title : (t, string) GapiLens.t
val updated : (t, GapiDate.t) GapiLens.t
val webPropertyId : (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