Module Values.RatingScaleItemValueSource

Defines the value for one rating in a custom metric rating scale.

Sourcetype nonrec t = {
  1. stringValue : RatingScaleItemValueStringValueString.t option;
    (*

    A string representing the value for a rating in a custom metric rating scale.

    *)
  2. floatValue : Float_.t option;
    (*

    A floating point number representing the value for a rating in a custom metric rating scale.

    *)
}
Sourceval make : ?stringValue:??? -> ?floatValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t | `String of RatingScaleItemValueStringValueString.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