Module Values.AddressComponentPhonemesSource

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

Sourcetype nonrec t = {
  1. country : PhonemeTranscriptionList.t option;
    (*

    The alpha-2 or alpha-3 character code for the country that the results will be present in.

    *)
  2. region : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the region or state results should be to be present in.

    *)
  3. subRegion : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the sub-region or county for which results should be present in.

    *)
  4. locality : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the city or locality results should be present in. Example: Vancouver.

    *)
  5. district : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the district or division of a city results should be present in.

    *)
  6. subDistrict : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the sub-district or division of a city results should be present in.

    *)
  7. block : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the name of the block.

    *)
  8. subBlock : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the name of the sub-block.

    *)
  9. street : PhonemeTranscriptionList.t option;
    (*

    How to pronounce the name of the street results should be present in.

    *)
}
Sourceval make : ?country:??? -> ?region:??? -> ?subRegion:??? -> ?locality:??? -> ?district:??? -> ?subDistrict:??? -> ?block:??? -> ?subBlock:??? -> ?street:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `String of PhonemeTranscriptionValueString.t ]) list ] 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