Module GapiAnalyticsV3Model.Segment

type t = {
created : GapiDate.t;(*

Time the segment was created.

*)
definition : string;(*

Segment definition.

*)
id : string;(*

Segment ID.

*)
kind : string;(*

Resource type for Analytics segment.

*)
name : string;(*

Segment name.

*)
segmentId : string;(*

Segment ID. Can be used with the 'segment' parameter in Core Reporting API.

*)
_type : string;(*

Type for a segment. Possible values are "BUILT_IN" or "CUSTOM".

*)
updated : GapiDate.t;(*

Time the segment was last modified.

*)
}
val created : ( t, GapiDate.t ) GapiLens.t
val definition : ( t, string ) GapiLens.t
val id : ( t, string ) GapiLens.t
val kind : ( t, string ) GapiLens.t
val name : ( t, string ) GapiLens.t
val segmentId : ( t, string ) GapiLens.t
val _type : ( t, string ) GapiLens.t
val updated : ( t, GapiDate.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