Module Values.JurisdictionSource

The jurisdiction details of the TRN information of the customers. This doesn't contain full legal address, and contains only country code and state/region/province.

Sourcetype nonrec t = {
  1. countryCode : CountryCode.t option;
    (*

    The country code of the jurisdiction.

    *)
  2. stateOrRegion : State.t option;
    (*

    The state, region, or province associated with the country of the jurisdiction, if applicable.

    *)
}
Sourceval make : ?countryCode:??? -> ?stateOrRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CountryCode.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