Module Values.PhoneNumberCountrySource

The phone number country.

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

    The phone number country code. Format: ISO 3166-1 alpha-2.

    *)
  2. supportedPhoneNumberTypes : PhoneNumberTypeList.t option;
    (*

    The supported phone number types.

    *)
}
Sourceval make : ?countryCode:??? -> ?supportedPhoneNumberTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Alpha2CountryCode.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