You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
phone_number: Optional[Annotated[str, Field(min_length=12, strict=True, max_length=12)]] =Field(default=None, description="Toll-free telephone number in E.164 format.", alias="phoneNumber")
33
33
error_code: Optional[StrictStr] =Field(default=None, description="An error code indicating what error was encountered. This code can be interpreted as an HTTP status code in regards to the error that was encountered.", alias="errorCode")
34
-
error_description: Optional[StrictStr] =Field(default=None, description="A description of the error that was encountered.", alias="errorDescription")
34
+
error_message: Optional[StrictStr] =Field(default=None, description="A description of the error that was encountered.", alias="errorMessage")
35
35
errors: Optional[List[StrictStr]] =Field(default=None, description="Details of the errors that were encountered when processing the request.")
36
36
internal_ticket_number: Optional[StrictStr] =Field(default=None, description="Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number.", alias="internalTicketNumber")
**phone_number** | **str** | Toll-free telephone number in E.164 format. | [optional]
10
10
**error_code** | **str** | An error code indicating what error was encountered. This code can be interpreted as an HTTP status code in regards to the error that was encountered. | [optional]
11
-
**error_description** | **str** | A description of the error that was encountered. | [optional]
11
+
**error_message** | **str** | A description of the error that was encountered. | [optional]
12
12
**errors** | **List[str]** | Details of the errors that were encountered when processing the request. | [optional]
13
13
**internal_ticket_number** | **str** | Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. | [optional]
0 commit comments