diff --git a/bandwidth.yml b/bandwidth.yml index 825be19..0376964 100644 --- a/bandwidth.yml +++ b/bandwidth.yml @@ -5424,7 +5424,7 @@ components: be interpreted as an HTTP status code in regards to the error that was encountered. example: '400' - errorDescription: + errorMessage: type: string description: A description of the error that was encountered. example: cannot process request. diff --git a/docs/FailureWebhook.md b/docs/FailureWebhook.md index b84f070..373a1ce 100644 --- a/docs/FailureWebhook.md +++ b/docs/FailureWebhook.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **accountId** | **string** | User\'s account ID. | [optional] [default to undefined] **phoneNumber** | **string** | Toll-free telephone number in E.164 format. | [optional] [default to undefined] **errorCode** | **string** | 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] [default to undefined] -**errorDescription** | **string** | A description of the error that was encountered. | [optional] [default to undefined] +**errorMessage** | **string** | A description of the error that was encountered. | [optional] [default to undefined] **errors** | **Array<string>** | Details of the errors that were encountered when processing the request. | [optional] [default to undefined] **internalTicketNumber** | **string** | Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. | [optional] [default to undefined] @@ -21,7 +21,7 @@ const instance: FailureWebhook = { accountId, phoneNumber, errorCode, - errorDescription, + errorMessage, errors, internalTicketNumber, }; diff --git a/models/failure-webhook.ts b/models/failure-webhook.ts index de0eaf7..93061ab 100644 --- a/models/failure-webhook.ts +++ b/models/failure-webhook.ts @@ -43,7 +43,7 @@ export interface FailureWebhook { * @type {string} * @memberof FailureWebhook */ - 'errorDescription'?: string; + 'errorMessage'?: string; /** * Details of the errors that were encountered when processing the request. * @type {Array}