package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. accountId : string;
    (*

    Account ID to which this custom data source belongs.

    *)
  2. created : GapiDate.t;
    (*

    Time this custom data source was created.

    *)
  3. description : string;
    (*

    Description of custom data source.

    *)
  4. id : string;
    (*

    Custom data source ID.

    *)
  5. importBehavior : string;
  6. kind : string;
    (*

    Resource type for Analytics custom data source.

    *)
  7. name : string;
    (*

    Name of this custom data source.

    *)
  8. profilesLinked : string list;
    (*

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

    *)
  9. schema : string list;
    (*

    Collection of schema headers of the custom data source.

    *)
  10. _type : string;
    (*

    Type of the custom data source.

    *)
  11. updated : GapiDate.t;
    (*

    Time this custom data source was last modified.

    *)
  12. uploadType : string;
    (*

    Upload type of the custom data source.

    *)
  13. 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