Module Values.UpdatePhoneNumberRequestItemSource

The phone number ID, product type, or calling name fields to update, used with the BatchUpdatePhoneNumber and UpdatePhoneNumber actions.

Sourcetype nonrec t = {
  1. phoneNumberId : NonEmptyString.t;
    (*

    The phone number ID to update.

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

    The product type to update.

    *)
  3. callingName : CallingName.t option;
    (*

    The outbound calling name to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?productType:??? -> ?callingName:??? -> phoneNumberId:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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