Module Values.PhoneNumberOrderSource

The details of a phone number order created for Amazon Chime.

Sourcetype nonrec t = {
  1. phoneNumberOrderId : GuidString.t option;
    (*

    The phone number order ID.

    *)
  2. productType : PhoneNumberProductType.t option;
    (*

    The phone number order product type.

    *)
  3. status : PhoneNumberOrderStatus.t option;
    (*

    The status of the phone number order.

    *)
  4. orderedPhoneNumbers : OrderedPhoneNumberList.t option;
    (*

    The ordered phone number details, such as the phone number in E.164 format and the phone number status.

    *)
  5. createdTimestamp : Iso8601Timestamp.t option;
    (*

    The phone number order creation time stamp, in ISO 8601 format.

    *)
  6. updatedTimestamp : Iso8601Timestamp.t option;
    (*

    The updated phone number order time stamp, in ISO 8601 format.

    *)
}
Sourceval make : ?phoneNumberOrderId:??? -> ?productType:??? -> ?status:??? -> ?orderedPhoneNumbers:??? -> ?createdTimestamp:??? -> ?updatedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of E164PhoneNumber.t ]) list ] list | `String of GuidString.t | `Timestamp of Iso8601Timestamp.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