/**
* @example
* {
* numbers: ["+18559491727"]
* }
*/
export interface BuyPhoneNumberParams {
/**
* List of phone numbers you want to purchase, each in international E.164 format.
*
* All specified numbers must be currently available and will be validated for availability before processing the purchase.
*
* If any number in the request is unavailable or invalid, no purchases will be made and the request will be voided.
*/
numbers: string[];
}