QueueSendMessageResponse type

Contains the response data for the sendMessage operation.

type QueueSendMessageResponse = {
  expiresOn: Date
  insertedOn: Date
  messageId: string
  nextVisibleOn: Date
  popReceipt: string
} & MessagesEnqueueHeaders & {
    _response: HttpResponse & {
      bodyAsText: string
      parsedBody: EnqueuedMessage[]
      parsedHeaders: MessagesEnqueueHeaders
    }
  }