/** * Bandwidth * Bandwidth\'s Communication APIs * * The version of the OpenAPI document: 1.0.0 * Contact: letstalk@bandwidth.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface FailureWebhook { /** * User\'s account ID. */ 'accountId'?: string; /** * Toll-free telephone number in E.164 format. */ 'phoneNumber'?: 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. */ 'errorCode'?: string; /** * A description of the error that was encountered. */ 'errorMessage'?: string; /** * Details of the errors that were encountered when processing the request. */ 'errors'?: Array; /** * Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. */ 'internalTicketNumber'?: string; }