Module GapiAnalyticsV3Model.CustomDataSource

type t = {
accountId : string;(*

Account ID to which this custom data source belongs.

*)
created : GapiDate.t;(*

Time this custom data source was created.

*)
description : string;(*

Description of custom data source.

*)
id : string;(*

Custom data source ID.

*)
importBehavior : string;
kind : string;(*

Resource type for Analytics custom data source.

*)
name : string;(*

Name of this custom data source.

*)
profilesLinked : string list;(*

IDs of views (profiles) linked to the custom data source.

*)
schema : string list;(*

Collection of schema headers of the custom data source.

*)
_type : string;(*

Type of the custom data source.

*)
updated : GapiDate.t;(*

Time this custom data source was last modified.

*)
uploadType : string;(*

Upload type of the custom data source.

*)
webPropertyId : string;(*

Web property ID of the form UA-XXXXX-YY to which this custom data source belongs.

*)
}
val accountId : ( t, string ) GapiLens.t
val created : ( t, GapiDate.t ) GapiLens.t
val description : ( t, string ) GapiLens.t
val id : ( t, string ) GapiLens.t
val importBehavior : ( t, string ) GapiLens.t
val kind : ( t, string ) GapiLens.t
val name : ( t, string ) GapiLens.t
val profilesLinked : ( t, string list ) GapiLens.t
val schema : ( t, string list ) GapiLens.t
val _type : ( t, string ) GapiLens.t
val updated : ( t, GapiDate.t ) GapiLens.t
val uploadType : ( t, string ) 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