/** * 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. */ import type { InboundCallbackMessage } from './inbound-callback-message'; import type { InboundCallbackTypeEnum } from './inbound-callback-type-enum'; /** * Represents an inbound callback. */ export interface InboundCallback { 'time': string; 'type': InboundCallbackTypeEnum; /** * The destination phone number the message was sent to. For inbound callbacks, this is the Bandwidth number or alphanumeric identifier that received the message. */ 'to': string; /** * A detailed description of the event described by the callback. */ 'description': string; 'message': InboundCallbackMessage; /** * The name of the Authorized Message Provider (AMP) that handled this message. In the US, this is the carrier that the message was sent to. This field is present only when this account feature has been enabled. */ 'carrierName'?: string; }