Module Values.PhonemeTranscriptionSource

How to pronounce the various components of the address or place.

Sourcetype nonrec t = {
  1. value : PhonemeTranscriptionValueString.t option;
    (*

    Value which indicates how to pronounce the value.

    *)
  2. language : LanguageTag.t option;
    (*

    A list of BCP 47 compliant language codes for the results to be rendered in. If there is no data for the result in the requested language, data will be returned in the default language for the entry.

    *)
  3. preferred : SensitiveBoolean.t option;
    (*

    Boolean which indicates if it the preferred pronunciation.

    *)
}
Sourceval make : ?value:??? -> ?language:??? -> ?preferred:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `String of PhonemeTranscriptionValueString.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