Module Values_0.AvailableNumberSummarySource

Information about available phone numbers.

Sourcetype nonrec t = {
  1. phoneNumber : PhoneNumber.t option;
    (*

    The phone number. Phone numbers are formatted [+] [country code] [subscriber number including area code].

    *)
  2. phoneNumberCountryCode : PhoneNumberCountryCode.t option;
    (*

    The ISO country code.

    *)
  3. phoneNumberType : PhoneNumberType.t option;
    (*

    The type of phone number.

    *)
}
Sourceval make : ?phoneNumber:??? -> ?phoneNumberCountryCode:??? -> ?phoneNumberType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PhoneNumber.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