Module Values.PostalCodeDetailsSource

Contains details about the postal code of the place or result.

Sourcetype nonrec t = {
  1. postalCode : PostalCodeDetailsPostalCodeString.t option;
    (*

    An alphanumeric string included in a postal address to facilitate mail sorting, such as post code, postcode, or ZIP code for which the result should possess.

    *)
  2. postalAuthority : PostalAuthority.t option;
    (*

    The postal authority or entity. This could be a governmental authority, a regulatory authority, or a designated postal operator.

    *)
  3. postalCodeType : PostalCodeType.t option;
    (*

    The postal code type.

    *)
  4. uspsZip : UspsZip.t option;
    (*

    The ZIP Classification Code, or in other words what type of postal code is it.

    *)
  5. uspsZipPlus4 : UspsZipPlus4.t option;
    (*

    The USPS ZIP+4 Record Type Code.

    *)
}
Sourceval make : ?postalCode:??? -> ?postalAuthority:??? -> ?postalCodeType:??? -> ?uspsZip:??? -> ?uspsZipPlus4:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PostalCodeDetailsPostalCodeString.t | `Structure of (string * [> `Enum of string ]) 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