module Filter:sig..end
module UppercaseDetails:sig..end
module SearchAndReplaceDetails:sig..end
module ParentLink:sig..end
module LowercaseDetails:sig..end
module AdvancedDetails:sig..end
type t = {
|
accountId : |
(* |
Account ID to which this filter belongs.
| *) |
|
advancedDetails : |
(* |
Details for the filter of the type ADVANCED.
| *) |
|
created : |
(* |
Time this filter was created.
| *) |
|
excludeDetails : |
(* |
Details for the filter of the type EXCLUDE.
| *) |
|
id : |
(* |
Filter ID.
| *) |
|
includeDetails : |
(* |
Details for the filter of the type INCLUDE.
| *) |
|
kind : |
(* |
Resource type for Analytics filter.
| *) |
|
lowercaseDetails : |
(* |
Details for the filter of the type LOWER.
| *) |
|
name : |
(* |
Name of this filter.
| *) |
|
parentLink : |
(* |
Parent link for this filter. Points to the account to which this filter belongs.
| *) |
|
searchAndReplaceDetails : |
(* |
Details for the filter of the type SEARCH_AND_REPLACE.
| *) |
|
selfLink : |
(* |
Link for this filter.
| *) |
|
_type : |
(* |
Type of this filter. Possible values are INCLUDE, EXCLUDE, LOWERCASE, UPPERCASE, SEARCH_AND_REPLACE and ADVANCED.
| *) |
|
updated : |
(* |
Time this filter was last modified.
| *) |
|
uppercaseDetails : |
(* |
Details for the filter of the type UPPER.
| *) |
val accountId : (t, string) GapiLens.t
val advancedDetails : (t,
AdvancedDetails.t)
GapiLens.t
val created : (t, GapiDate.t) GapiLens.t
val excludeDetails : (t, GapiAnalyticsV3Model.FilterExpression.t)
GapiLens.t
val id : (t, string) GapiLens.t
val includeDetails : (t, GapiAnalyticsV3Model.FilterExpression.t)
GapiLens.t
val kind : (t, string) GapiLens.t
val lowercaseDetails : (t,
LowercaseDetails.t)
GapiLens.t
val name : (t, string) GapiLens.t
val parentLink : (t, ParentLink.t)
GapiLens.t
val searchAndReplaceDetails : (t,
SearchAndReplaceDetails.t)
GapiLens.t
val selfLink : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val updated : (t, GapiDate.t) GapiLens.t
val uppercaseDetails : (t,
UppercaseDetails.t)
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