Module Values.AnalyticsIntentNodeSummarySource

An object containing information about the requested path.

Sourcetype nonrec t = {
  1. intentName : Name.t option;
    (*

    The name of the intent at the end of the requested path.

    *)
  2. intentPath : AnalyticsPath.t option;
    (*

    The path.

    *)
  3. intentCount : AnalyticsNodeCount.t option;
    (*

    The total number of sessions that follow the given path to the given intent.

    *)
  4. intentLevel : AnalyticsNodeLevel.t option;
    (*

    The number of intents up to and including the requested path.

    *)
  5. nodeType : AnalyticsNodeType.t option;
    (*

    Specifies whether the node is the end of a path (Exit) or not (Inner).

    *)
}
Sourceval make : ?intentName:??? -> ?intentPath:??? -> ?intentCount:??? -> ?intentLevel:??? -> ?nodeType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of AnalyticsNodeCount.t | `String of Name.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t