Module Values.CallAnalyticsSkippedFeatureSource

Represents a skipped analytics feature during the analysis of a call analytics job. The Feature field indicates the type of analytics feature that was skipped. The Message field contains additional information or a message explaining why the analytics feature was skipped. The ReasonCode field provides a code indicating the reason why the analytics feature was skipped.

Sourcetype nonrec t = {
  1. feature : CallAnalyticsFeature.t option;
    (*

    Indicates the type of analytics feature that was skipped during the analysis of a call analytics job.

    *)
  2. reasonCode : CallAnalyticsSkippedReasonCode.t option;
    (*

    Provides a code indicating the reason why a specific analytics feature was skipped during the analysis of a call analytics job.

    *)
  3. message : String_.t option;
    (*

    Contains additional information or a message explaining why a specific analytics feature was skipped during the analysis of a call analytics job.

    *)
}
Sourceval make : ?feature:??? -> ?reasonCode:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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