Module Values_0.AudioQualityMetricsInfoSource

Contains information for score and potential quality issues for Audio

Sourcetype nonrec t = {
  1. qualityScore : AudioQualityScore.t option;
    (*

    Number measuring the estimated quality of the media connection.

    *)
  2. potentialQualityIssues : PotentialAudioQualityIssues.t option;
    (*

    List of potential issues causing degradation of quality on a media connection. If the service did not detect any potential quality issues the list is empty. Valid values: HighPacketLoss | HighRoundTripTime | HighJitterBuffer

    *)
}
Sourceval make : ?qualityScore:??? -> ?potentialQualityIssues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of AudioQualityScore.t | `List of [> `String of PotentialAudioQualityIssue.t ] list ]) 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