/** *
If the phone number action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.
*/ export interface _PhoneNumberError { /** *The phone number ID for which the action failed.
*/ PhoneNumberId?: string; /** *The error code.
*/ ErrorCode?: "Unauthorized" | "Forbidden" | "NotFound" | "BadRequest" | "Conflict" | "ServiceFailure" | "ServiceUnavailable" | "Unprocessable" | "Throttled" | "PreconditionFailed" | string; /** *The error message.
*/ ErrorMessage?: string; } export declare type _UnmarshalledPhoneNumberError = _PhoneNumberError;