/** *
The phone number ID and product type fields to update, used with the BatchUpdatePhoneNumber and UpdatePhoneNumber actions.
*/ export interface _UpdatePhoneNumberRequestItem { /** *The phone number ID to update.
*/ PhoneNumberId: string; /** *The product type to update.
*/ ProductType?: "BusinessCalling" | "VoiceConnector" | string; } export declare type _UnmarshalledUpdatePhoneNumberRequestItem = _UpdatePhoneNumberRequestItem;