Module Values.OrderedPhoneNumberSource

A phone number for which an order has been placed.

Sourcetype nonrec t = {
  1. e164PhoneNumber : E164PhoneNumber.t option;
    (*

    The phone number, in E.164 format.

    *)
  2. status : OrderedPhoneNumberStatus.t option;
    (*

    The phone number status.

    *)
}
Sourceval make : ?e164PhoneNumber:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of E164PhoneNumber.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